From 3a24478c37f34171f490d3924e2adc234c51a01d Mon Sep 17 00:00:00 2001 From: syui <syui@syui.ai> Date: Mon, 9 Jun 2025 01:35:54 +0900 Subject: [PATCH] reset cargo.toml --- Cargo.toml | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8f34ec0..7adb975 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,15 +1,22 @@ [package] -name = "ai" +name = "aibot" authors = ["syui"] version = "0.1.0" edition = "2021" -description = "latest@2024-08-18" +description = "ai.bot - Bluesky AT Protocol Bot" + +[[bin]] +name = "aibot" +path = "src/main.rs" + +[[bin]] +name = "ai" +path = "src/alias.rs" [dependencies] seahorse = "*" reqwest = { version = "*", features = ["blocking", "json"] } tokio = { version = "1", features = ["full"] } -shellexpand = "*" config = "*" serde = "*" serde_json = "*" @@ -19,3 +26,7 @@ rustc-serialize = "*" toml = "*" iso8601-timestamp = "*" sysinfo = "*" + +[dev-dependencies] +mockito = "1.2" +tokio-test = "0.4"