diff --git a/Cargo.toml b/Cargo.toml index 47c8a15..10a4758 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,3 +1,3 @@ [workspace] -members = ["bot","lib","bench","py","node"] +members = ["bot","line","lib","bench","py","node"] resolver = "2" \ No newline at end of file diff --git a/line/Cargo.toml b/line/Cargo.toml new file mode 100644 index 0000000..2b06fba --- /dev/null +++ b/line/Cargo.toml @@ -0,0 +1,18 @@ +[package] +name = "artifacter" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +anyhow = "1.0.69" +dotenv = "0.15.0" +enkanetwork-rs = { git = "https://github.com/neodyland/enkanetwork-rs", version = "0.0.3" } +line-bot-sdk-rust = { version = "0.1", features = ["rocket_support"] } +rocket = "0.4" +serde_json = "1.0.94" +tokio = { version = "1.26.0", features = ["full"] } + +[dependencies.gen] +path = "../lib" \ No newline at end of file diff --git a/line/main.rs b/line/main.rs new file mode 100644 index 0000000..e69de29