Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nguyenthdat committed Sep 1, 2024
1 parent 11438e9 commit 1075baf
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down

0 comments on commit 1075baf

Please sign in to comment.