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