yourcloud/Cargo.toml

26 lines
448 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-06 09:59:05 -05:00
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" }
2024-08-06 09:59:05 -05:00
tokio = { version = "1.37.0", features = ["macros", "rt-multi-thread"] }
2024-08-05 19:52:50 -05:00
thiserror = "1.0.63"
tracing = "0.1.40"
2024-04-11 11:14:37 -05:00
2024-08-06 09:59:05 -05:00
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
2024-04-11 11:14:37 -05:00
opt-level = 3
2024-08-06 09:59:05 -05:00
[profile.release]
strip = true
opt-level = "z"
lto = true
codegen-units = 1
panic = "abort"