From 1075baf702d6ceaf28995e8ba8ab285bedffa114 Mon Sep 17 00:00:00 2001 From: Nguyen Thanh Dat Date: Sun, 1 Sep 2024 19:13:45 +0700 Subject: [PATCH] bump version --- Cargo.toml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 6d48a31..0992cd5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,24 +24,27 @@ async-trait = "0.1" # Remove this when Rust 1.75 async trait is stable tokio = { version = "1", default-features = false, features = ["rt", "macros"] } serde = { version = "1", features = ["derive"] } serde_json = { version = "1" } -reqwest = { version = "0.12", features = ["rustls-tls", "json", "cookies"] } +reqwest = { version = "0.12", default-features = false ,features = ["rustls-tls", "json", "cookies"] } lazy_static = "1.4" url = "2" urlencoding = "2" rand = "^0.8" regex = "1" -tokio-tungstenite = { version = "0.21", features = ["rustls-tls-webpki-roots"] } +tokio-tungstenite = { version = "0.23", features = [ + "rustls-tls-webpki-roots", + "url", +] } tracing = "0.1" thiserror = "1" futures-util = { version = "0.3", default-features = false, features = [ "sink", "std", ] } -iso_currency = { version = "0.4", features = ["with-serde"] } -zip = "2.1" +iso_currency = { version = "0.5", features = ["with-serde"] } +zip = "2.2" base64 = "0.22" google-authenticator = { version = "0.4", optional = true } -prost = { version = "0.12", optional = true } +prost = { version = "0.13", optional = true } [dev-dependencies] tokio = { version = "1", features = ["full"] }