summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml19
1 files changed, 15 insertions, 4 deletions
diff --git a/Cargo.toml b/Cargo.toml
index bab9a35..f622a7f 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,11 +1,22 @@
[package]
name = "koofr"
-version = "1.1.0"
+version = "1.2.0"
edition = "2024"
[dependencies]
anyhow = "1.0.98"
-clap = { version = "4.5.38", default-features = false, features = ["derive", "std"] }
+clap = { version = "4.5.38", default-features = false, features = [
+ "derive",
+ "std",
+] }
ctrlc = "3.4.7"
-reqwest = { version = "0.12.15", default-features = false, features = ["rustls-tls", "http2", "system-proxy", "charset"] }
-tokio = { version = "1.45.0", default-features = false, features = ["macros", "rt-multi-thread"] }
+reqwest = { version = "0.12.15", default-features = false, features = [
+ "rustls-tls",
+ "http2",
+ "system-proxy",
+ "charset",
+] }
+tokio = { version = "1.45.0", default-features = false, features = [
+ "macros",
+ "rt-multi-thread",
+] }