summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Beyer <matthias.beyer@ifm.com>2022-07-27 10:32:23 +0200
committerMatthias Beyer <matthias.beyer@ifm.com>2022-07-27 10:32:25 +0200
commit5d84f2577dc27e721d3115555d588f7156dc792d (patch)
tree758e7a184484c329322b1b84b37db910726a591d
parent65fced0da8eb009b798b80fda87650173b38d199 (diff)
Remove rumqttlog
The crate is no longer in use, so remove it from our dependencies. Signed-off-by: Matthias Beyer <matthias.beyer@ifm.com>
-rw-r--r--Cargo.lock19
-rw-r--r--crates/tests/mqtt_tests/Cargo.toml1
2 files changed, 0 insertions, 20 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 97dfd398..dd521590 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1656,7 +1656,6 @@ dependencies = [
"once_cell",
"rumqttc",
"rumqttd",
- "rumqttlog",
"tokio",
]
@@ -2403,24 +2402,6 @@ dependencies = [
]
[[package]]
-name = "rumqttlog"
-version = "0.9.0"
-source = "registry+https://github.com/rust-lang/crates.io-index"
-checksum = "031d0d6fc69b8f36267870724b7a28e4a9396d0b3f722f84b5631c56c0840244"
-dependencies = [
- "byteorder",
- "bytes",
- "fnv",
- "jackiechan",
- "log",
- "memmap",
- "mqttbytes",
- "segments",
- "serde",
- "thiserror",
-]
-
-[[package]]
name = "rustc-demangle"
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
diff --git a/crates/tests/mqtt_tests/Cargo.toml b/crates/tests/mqtt_tests/Cargo.toml
index 4256e70c..ff0e505d 100644
--- a/crates/tests/mqtt_tests/Cargo.toml
+++ b/crates/tests/mqtt_tests/Cargo.toml
@@ -14,5 +14,4 @@ futures = "0.3"
once_cell = "1.8"
rumqttc = "0.10"
rumqttd = "0.11"
-rumqttlog = "0.9"
tokio = { version = "1.9", default_features = false, features = [] }