18 lines
493 B
TOML
18 lines
493 B
TOML
[package]
|
|
name = "cli"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
|
|
[dependencies]
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
database = { path = "../../libs/database" }
|
|
tool_tracing = { path = "../../libs/tool_tracing" }
|
|
config = { path = "../../libs/config" }
|
|
bot = { path = "../../libs/bot" }
|
|
cron_scheduler = { path = "../../libs/cron_scheduler" }
|
|
api = { path = "../../libs/api" }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|