yourcloud/Cargo.toml

14 lines
330 B
TOML
Raw Normal View History

2024-08-05 16:48:12 -05:00
[workspace]
resolver = "2"
members = ["apps/yourcloud"]
2024-04-11 11:14:37 -05:00
2024-08-05 16:48:12 -05:00
[workspace.dependencies]
2024-08-05 19:52:50 -05:00
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }
2024-08-05 16:48:12 -05:00
http_client = { path = "libs/http_client" }
2024-08-05 19:52:50 -05:00
discord_bot = { path = "libs/discord_bot" }
thiserror = "1.0.63"
tracing = "0.1.40"
2024-04-11 11:14:37 -05:00
2024-08-05 16:48:12 -05:00
[profile.dev.package.backtrace]
2024-04-11 11:14:37 -05:00
opt-level = 3