From b49b2335a11417797d6dddeade20a9b0784552cf Mon Sep 17 00:00:00 2001 From: Alan Somers Date: Tue, 4 Jun 2024 18:06:29 -0600 Subject: [PATCH] Use newly released capsicum and capsicum-net crates --- Cargo.toml | 4 ---- crates/unftp-sbe-fs/Cargo.toml | 4 ++-- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index e54f2b22..af6f0df9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -70,9 +70,5 @@ pretty_assertions = "1.4.0" tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] } unftp-sbe-fs = { path = "../libunftp/crates/unftp-sbe-fs" } -[patch.crates-io] -capsicum = { git = "https://github.com/asomers/capsicum-rs", rev = "24330ee" } -casper-sys = { git = "https://github.com/asomers/capsicum-rs", rev = "24330ee" } - [lints] workspace = true diff --git a/crates/unftp-sbe-fs/Cargo.toml b/crates/unftp-sbe-fs/Cargo.toml index 6e1e283a..d1a30fec 100644 --- a/crates/unftp-sbe-fs/Cargo.toml +++ b/crates/unftp-sbe-fs/Cargo.toml @@ -50,8 +50,8 @@ tracing-subscriber = "0.3.18" getrandom = "0.2.15" [target.'cfg(target_os = "freebsd")'.dev-dependencies] -capsicum = { version = "0.3.0", features = ["casper"] } -capsicum-net = { version = "0.1.0", features = ["tokio"], git = "https://github.com/asomers/capsicum-net", rev = "c6fc574" } +capsicum = { version = "0.4.0", features = ["casper"] } +capsicum-net = { version = "0.1.0", features = ["tokio"] } [lints] workspace = true