mirror of
https://github.com/Noratrieb/haesli.git
synced 2026-01-14 11:45:02 +01:00
22 lines
No EOL
649 B
TOML
22 lines
No EOL
649 B
TOML
[workspace]
|
|
members = [".", "amqp_core", "amqp_dashboard", "amqp_messaging", "amqp_transport","xtask"]
|
|
|
|
[package]
|
|
name = "amqp"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.53"
|
|
amqp_core = { path = "./amqp_core" }
|
|
amqp_dashboard = { path = "./amqp_dashboard" }
|
|
amqp_transport = { path = "./amqp_transport" }
|
|
clap = { version = "3.1.5", features = ["derive"] }
|
|
tokio = { version = "1.16.1", features = ["full"] }
|
|
tracing = "0.1.30"
|
|
tracing-subscriber = { version = "0.3.8", features = ["env-filter"] }
|
|
|
|
[profile.release]
|
|
lto = "fat" |