Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 11m53s
33 lines
590 B
TOML
33 lines
590 B
TOML
[package]
|
|
name = "aibot"
|
|
authors = ["syui"]
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
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"] }
|
|
config = "*"
|
|
serde = "*"
|
|
serde_json = "*"
|
|
serde_derive = "*"
|
|
url = { version = "2.0", features = ["serde"] }
|
|
rustc-serialize = "*"
|
|
toml = "*"
|
|
iso8601-timestamp = "*"
|
|
sysinfo = "*"
|
|
|
|
[dev-dependencies]
|
|
mockito = "1.2"
|
|
tokio-test = "0.4"
|