diff --git a/Cargo.lock b/Cargo.lock index 5abc420..fae7195 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -469,18 +469,6 @@ version = "0.15.7" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b" -[[package]] -name = "duct" -version = "0.13.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "37ae3fc31835f74c2a7ceda3aeede378b0ae2e74c8f1c36559fcc9ae2a4e7d3e" -dependencies = [ - "libc", - "once_cell", - "os_pipe", - "shared_child", -] - [[package]] name = "env_logger" version = "0.9.3" @@ -995,16 +983,6 @@ dependencies = [ "vcpkg", ] -[[package]] -name = "os_pipe" -version = "1.1.4" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0ae859aa07428ca9a929b936690f8b12dc5f11dd8c6992a18ca93919f28bc177" -dependencies = [ - "libc", - "windows-sys", -] - [[package]] name = "parking_lot" version = "0.12.1" @@ -1205,9 +1183,7 @@ dependencies = [ "libc", "libz-sys", "num_enum", - "openssl-sys", "pkg-config", - "sasl2-sys", ] [[package]] @@ -1362,18 +1338,6 @@ dependencies = [ "winapi-util", ] -[[package]] -name = "sasl2-sys" -version = "0.1.20+2.1.28" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9e645bd98535fc8fd251c43ba7c7c1f9be1e0369c99b6a5ea719052a773e655c" -dependencies = [ - "cc", - "duct", - "libc", - "pkg-config", -] - [[package]] name = "scopeguard" version = "1.2.0" @@ -1465,16 +1429,6 @@ dependencies = [ "digest", ] -[[package]] -name = "shared_child" -version = "1.0.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b0d94659ad3c2137fef23ae75b03d5241d633f8acded53d672decfa0e6e0caef" -dependencies = [ - "libc", - "winapi", -] - [[package]] name = "signal-hook-registry" version = "1.4.1" diff --git a/Cargo.toml b/Cargo.toml index b2142ae..6fbd59f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ resolver="2" members = [ # chronos binary - # "chronos_bin", + "chronos_bin", # examples "examples/*", # migrations binary diff --git a/chronos_bin/Cargo.toml b/chronos_bin/Cargo.toml index 6ac00e1..17ab623 100644 --- a/chronos_bin/Cargo.toml +++ b/chronos_bin/Cargo.toml @@ -29,7 +29,7 @@ serde = { version = "1.0.152", features = ["derive"] } serde_json = "1.0.93" #kafka -rdkafka = { version = "0.34.0", features = ["sasl"] } +rdkafka = { version = "0.34.0" } #exception-handling thiserror = "1.0.31"