diff --git a/Cargo.lock b/Cargo.lock index 7b04879..8c3e942 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -393,21 +393,11 @@ dependencies = [ [[package]] name = "distore" -version = "0.1.0" +version = "0.1.1" dependencies = [ "anyhow", "clap", - "colog", - "colored", - "dirs", - "indicatif", - "indicatif-log-bridge", - "lazy_static", "libdistore", - "log", - "rust-ini", - "serenity", - "thiserror", "tokio", ] @@ -815,7 +805,6 @@ name = "libdistore" version = "0.1.0" dependencies = [ "anyhow", - "clap", "colog", "colored", "dirs", @@ -826,7 +815,6 @@ dependencies = [ "rust-ini", "serenity", "thiserror", - "tokio", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index cd8e01a..54d25f1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,16 +13,6 @@ edition = "2021" [dependencies] libdistore = { path = "./libdistore" } -anyhow = "1.0.86" clap = { version = "4.5.16", features = ["derive"] } -colog = "1.3.0" -colored = "2.1.0" -dirs = "5.0.1" -indicatif = "0.17.8" -indicatif-log-bridge = "0.2.3" -lazy_static = "1.5.0" -log = "0.4.22" -rust-ini = "0.21.1" -serenity = { version = "0.12.2", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] } -thiserror = "1.0.63" tokio = { version = "1.39.3", features = ["rt-multi-thread"] } +anyhow = "1.0.86" diff --git a/libdistore/Cargo.toml b/libdistore/Cargo.toml index 6299c38..700928a 100644 --- a/libdistore/Cargo.toml +++ b/libdistore/Cargo.toml @@ -5,7 +5,6 @@ edition = "2021" [dependencies] anyhow = "1.0.86" -clap = { version = "4.5.16", features = ["derive"] } colog = "1.3.0" colored = "2.1.0" dirs = "5.0.1" @@ -16,4 +15,3 @@ log = "0.4.22" rust-ini = "0.21.1" serenity = { version = "0.12.2", default-features = false, features = ["client", "gateway", "rustls_backend", "model"] } thiserror = "1.0.63" -tokio = { version = "1.39.3", features = ["rt-multi-thread"] }