diff --git a/.cargo/config.toml b/.cargo/config.toml index 6fb1fb9..35049cb 100644 --- a/.cargo/config.toml +++ b/.cargo/config.toml @@ -1,6 +1,2 @@ [alias] xtask = "run --package xtask --" - -[build] -# note: if this doesn't apply, update your global rustflags in "~/.cargo/config.toml" -rustflags = ["--cfg", "tokio_unstable"] \ No newline at end of file diff --git a/Cargo.lock b/Cargo.lock index 4c40ca7..2ac90bf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -55,7 +55,6 @@ dependencies = [ "parking_lot", "tokio", "tracing", - "uuid", ] [[package]] @@ -75,7 +74,6 @@ dependencies = [ "thiserror", "tokio", "tracing", - "uuid", ] [[package]] diff --git a/amqp_messaging/Cargo.toml b/amqp_messaging/Cargo.toml index b5a5eba..e662ec9 100644 --- a/amqp_messaging/Cargo.toml +++ b/amqp_messaging/Cargo.toml @@ -10,4 +10,3 @@ amqp_core = { path = "../amqp_core" } parking_lot = "0.12.0" tracing = "0.1.31" tokio = { version = "1.17.0", features = ["full"] } -uuid = "0.8.2" \ No newline at end of file diff --git a/amqp_transport/Cargo.toml b/amqp_transport/Cargo.toml index 9fcae77..a842ee9 100644 --- a/amqp_transport/Cargo.toml +++ b/amqp_transport/Cargo.toml @@ -18,7 +18,6 @@ smallvec = { version = "1.8.0", features = ["union"] } thiserror = "1.0.30" tokio = { version = "1.16.1", features = ["full"] } tracing = "0.1.30" -uuid = "0.8.2" [features]