diff --git a/melib/Cargo.toml b/melib/Cargo.toml index 44d6f99b..982736e5 100644 --- a/melib/Cargo.toml +++ b/melib/Cargo.toml @@ -20,7 +20,6 @@ name = "melib" path = "src/lib.rs" [dependencies] -log = { version = "0.4", features = ["std"]} async-stream = "^0.3" base64 = { version = "^0.13", optional = true } bincode = { version = "^1.3.0", default-features = false } @@ -36,6 +35,7 @@ isahc = { version = "^1.7.2", optional = true, default-features = false, feature libc = { version = "0.2.125", features = ["extra_traits",] } libloading = "^0.7" +log = { version = "0.4", features = ["std"] } native-tls = { version = "0.2.3", default-features = false, optional = true } nix = "^0.24" nom = { version = "7" } diff --git a/tools/Cargo.toml b/tools/Cargo.toml index 4c72161e..423bf953 100644 --- a/tools/Cargo.toml +++ b/tools/Cargo.toml @@ -25,14 +25,13 @@ path = "src/smtp_conn.rs" name = "embed" path = "src/embed.rs" - [dependencies] -melib = { path = "../melib", version = "*", features = ["debug-tracing", "unicode_algorithms"] } -meli = { path = "..", version = "*" } crossbeam = { version = "^0.8" } +meli = { path = "..", version = "*" } +melib = { path = "../melib", version = "*", features = ["debug-tracing", "unicode_algorithms"] } +nix = { version = "^0.24", default-features = false } signal-hook = { version = "^0.3", default-features = false } signal-hook-registry = { version = "1.2.0", default-features = false } -nix = { version = "^0.24", default-features = false } [features] default = ["debug-tracing"]