Skip to content

Commit

Permalink
Merge pull request #185
Browse files Browse the repository at this point in the history
bump version
  • Loading branch information
nguyenthdat authored Sep 1, 2024
2 parents 11438e9 + a0b4a06 commit 1dfd85e
Show file tree
Hide file tree
Showing 5 changed files with 244 additions and 5 deletions.
8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 14 additions & 0 deletions .idea/tradingview-rs.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

208 changes: 208 additions & 0 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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 1dfd85e

Please sign in to comment.