Skip to content

Commit

Permalink
org cargo toml.
Browse files Browse the repository at this point in the history
  • Loading branch information
roytang121 committed Feb 22, 2024
1 parent 2be4c8e commit 139a6ed
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,30 +12,34 @@ readme = "./README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
reqwest = { version = "0.11.22", features = ["json"] }
base64 = "0.13.0"
anyhow = { version = "1.0.75", features = ["backtrace"] }
thiserror = "1"
chrono = { version = "0.4", features = ["serde"] }
base64 = "0.13.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = {version = "1.0", features = ["arbitrary_precision"]}
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
serde_qs = "0.10.1"
rust_decimal = "1.32.0"
anyhow = { version = "1.0.75", features = ["backtrace"] }
log = "0.4.20"
tungstenite = { version = "0.20.1", features = ["native-tls"] }
tokio-tungstenite = { version = "0.20.1", features = ["native-tls"] }
url = "2.4.1"
async-trait = "0.1.73"
futures-util = "0.3.28"
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] }
sha2 = { version = "0.10", default-features = false }
digest = { version = "0.10", features = ["dev"] }
hmac = { version = "0.12.1", features = [] }
simd-json = { version = "0.13.4" , features = ["runtime-detection", "known-key"]}
crossbeam-channel = "0.5.8"
const_format = "0.2"

#[dev-dependencies]
# FIXME: to be removed
tokio-tungstenite = { version = "0.20.1", features = ["native-tls"] }
tokio = { version = "1.0.0", features = ["rt", "rt-multi-thread", "macros"] }
chrono = { version = "0.4", features = ["serde"] }
rust_decimal = "1.32.0"
crossbeam-channel = "0.5.8"
async-trait = "0.1.73"
futures-util = "0.3.28"

# FIXME: should be feature-gated
log = "0.4.20"
simd-json = { version = "0.13.4", features = ["runtime-detection", "known-key"] }
tungstenite = { version = "0.20.1", features = ["native-tls"] }
reqwest = { version = "0.11.22", features = ["json"] }

# FIXME: [dev-dependencies]
dotenv = "0.15.0"
env_logger = { version = "0.10.0", features = [] }

Expand Down

0 comments on commit 139a6ed

Please sign in to comment.