From 9bd708b9c04e1139eb85a06781cb54e7bce98287 Mon Sep 17 00:00:00 2001 From: TwoSquirrels Date: Fri, 17 Mar 2023 02:26:45 +0900 Subject: [PATCH] =?UTF-8?q?chore:=20=F0=9F=A4=96=20add=20line?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Cargo.toml | 2 +- line/Cargo.toml | 18 ++++++++++++++++++ line/main.rs | 0 3 files changed, 19 insertions(+), 1 deletion(-) create mode 100644 line/Cargo.toml create mode 100644 line/main.rs 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