25 lines
646 B
TOML
25 lines
646 B
TOML
[package]
|
|
name = "bot"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
|
|
[dependencies]
|
|
poise = { workspace = true }
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
tracing = { workspace = true }
|
|
database = { path = "../../libs/database" }
|
|
tool_tracing = { path = "../../libs/tool_tracing" }
|
|
toml = "0.8"
|
|
clickhouse_pool = { path = "../../libs/clickhouse_pool" }
|
|
clickhouse = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
tokio-cron-scheduler = { version = "0.14", features = [
|
|
"tracing-subscriber",
|
|
"signal",
|
|
] }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|