35 lines
786 B
TOML
35 lines
786 B
TOML
|
|
[workspace]
|
|
resolver = '2'
|
|
members = [
|
|
'apps/cli',
|
|
'libs/tool_tracing',
|
|
'libs/clickhouse_pool',
|
|
'libs/database',
|
|
'libs/bot',
|
|
'libs/config',
|
|
'libs/cron_scheduler',
|
|
'libs/api',
|
|
]
|
|
|
|
[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'] }
|
|
croner = { version = "*" }
|
|
|
|
[profile.release]
|
|
lto = true
|
|
|
|
[patch.crates-io]
|
|
serenity = { git = 'https://github.com/serenity-rs/serenity', branch = 'current' }
|