diff --git a/Cargo.lock b/Cargo.lock index 5b0cfd0..ae026c8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -573,7 +573,7 @@ dependencies = [ [[package]] name = "distore" -version = "0.2.1" +version = "0.3.0" dependencies = [ "anyhow", "clap", @@ -1466,7 +1466,7 @@ checksum = "d8adc4bb1803a324070e64a98ae98f38934d91957a99cfb3a43dcbc01bc56439" [[package]] name = "libdistore" -version = "0.2.1" +version = "0.3.0" dependencies = [ "anyhow", "async-std", diff --git a/Cargo.toml b/Cargo.toml index 20101df..bce9abf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "distore" -version = "0.2.1" +version = "0.3.0" description = "Utility to use Discord as cloud storage" authors = ["Deniz Demir "] license = "GPL-3.0-or-later" @@ -12,7 +12,7 @@ categories = ["command-line-utilities"] edition = "2021" [dependencies] -libdistore = { path = "./libdistore", version = "0.2.1" } +libdistore = { path = "./libdistore", version = "0.3.0" } clap = { version = "4.5.16", features = ["derive"] } tokio = { version = "1.39.3", features = ["rt-multi-thread"] } anyhow = "1.0.86" diff --git a/libdistore/Cargo.toml b/libdistore/Cargo.toml index be86e40..498b9d7 100644 --- a/libdistore/Cargo.toml +++ b/libdistore/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libdistore" -version = "0.2.1" +version = "0.3.0" description = "Library for Distore" authors = ["Deniz Demir "] license = "GPL-3.0-or-later" @@ -19,7 +19,12 @@ 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"] } +serenity = { version = "0.12.2", default-features = false, features = [ + "client", + "gateway", + "rustls_backend", + "model", +] } thiserror = "1.0.63" semver = "1.0.23" reqwest = { version = "0.12.7", features = ["json"] }