30 lines
689 B
TOML
30 lines
689 B
TOML
|
|
[workspace]
|
|
resolver = '2'
|
|
members = [
|
|
'apps/bot',
|
|
'libs/tool_tracing',
|
|
'libs/clickhouse_pool',
|
|
'libs/database',
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
poise = { git = "https://github.com/serenity-rs/poise", branch = "current" }
|
|
tokio = { version = '1.45.0', features = [
|
|
'macros',
|
|
'rt-multi-thread',
|
|
'io-std',
|
|
] }
|
|
serde = '1.0'
|
|
tracing = '0.1'
|
|
serde_json = '1.0'
|
|
clickhouse = { version = '0.13', features = ['native-tls', 'uuid', 'chrono'] }
|
|
uuid = { version = "1.16", features = ["serde", "v4"] }
|
|
chrono = { version = "0.4.41", features = ["serde"] }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
|
|
[patch.crates-io]
|
|
serenity = { git = "https://github.com/serenity-rs/serenity", branch = "current" }
|