reset cargo.toml
Some checks are pending
Gitea Actions Demo / Explore-Gitea-Actions (push) Waiting to run

This commit is contained in:
2025-06-09 01:35:54 +09:00
parent a936d9c0ce
commit 3a24478c37

View File

@ -1,15 +1,22 @@
[package] [package]
name = "ai" name = "aibot"
authors = ["syui"] authors = ["syui"]
version = "0.1.0" version = "0.1.0"
edition = "2021" 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] [dependencies]
seahorse = "*" seahorse = "*"
reqwest = { version = "*", features = ["blocking", "json"] } reqwest = { version = "*", features = ["blocking", "json"] }
tokio = { version = "1", features = ["full"] } tokio = { version = "1", features = ["full"] }
shellexpand = "*"
config = "*" config = "*"
serde = "*" serde = "*"
serde_json = "*" serde_json = "*"
@ -19,3 +26,7 @@ rustc-serialize = "*"
toml = "*" toml = "*"
iso8601-timestamp = "*" iso8601-timestamp = "*"
sysinfo = "*" sysinfo = "*"
[dev-dependencies]
mockito = "1.2"
tokio-test = "0.4"