diff --git a/Cargo.lock b/Cargo.lock index 91feebe6..401bf659 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1116,9 +1116,9 @@ dependencies = [ [[package]] name = "crossbeam-channel" -version = "0.5.9" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "14c3242926edf34aec4ac3a77108ad4854bffaa2e4ddc1824124ce59231302d5" +checksum = "82a9b73a36529d9c47029b9fb3a6f0ea3cc916a261195352ba19e770fc1748b2" dependencies = [ "cfg-if", "crossbeam-utils", @@ -1159,9 +1159,9 @@ dependencies = [ [[package]] name = "crossbeam-utils" -version = "0.8.17" +version = "0.8.18" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c06d96137f14f244c37f989d9fff8f95e6c18b918e71f36638f8c49112e4c78f" +checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c" dependencies = [ "cfg-if", ] diff --git a/Cargo.toml b/Cargo.toml index c8ba09da..e9a47b75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ quote = { version = "=1.0.33" } proc-macro2 = { version = "=1.0.69" } tokio = { version = "1.35.1", features = ["macros", "full"] } arbiter-core = { path = "./arbiter-core" } -crossbeam-channel = { version = "=0.5.9" } +crossbeam-channel = { version = "=0.5.10" } futures-util = { version = "=0.3.29" } async-trait = { version = "0.1.75" } tracing = "0.1.40" diff --git a/arbiter-core/Cargo.toml b/arbiter-core/Cargo.toml index dc6925ea..1d9ef1e4 100644 --- a/arbiter-core/Cargo.toml +++ b/arbiter-core/Cargo.toml @@ -23,7 +23,7 @@ serde_json.workspace = true # Concurrency/async tokio.workspace = true async-trait.workspace = true -crossbeam-channel = { version = "=0.5.9" } +crossbeam-channel = { version = "=0.5.10" } futures-timer = { version = "=3.0.2" } futures-locks = { version = "=0.7.1" }