Skip to content

Commit

Permalink
add async deps
Browse files Browse the repository at this point in the history
  • Loading branch information
JR-1991 committed Jul 18, 2024
1 parent a692a2e commit 5e3defb
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 4 deletions.
49 changes: 48 additions & 1 deletion Cargo.lock

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

10 changes: 7 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "dataverse"
version = "0.1.0"
version = "0.1.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -11,7 +11,7 @@ colored = "2.1.0"
exitcode = "1.1.2"
futures-io = "0.3.30"
regress = "0.9.1"
reqwest = { version = "0.12.4", features = ["blocking", "json", "multipart"] }
reqwest = { version = "0.12.4", features = ["blocking", "json", "multipart", "stream"] }
serde = { version = "1.0.201", features = ["derive"] }
serde_json = "1.0.117"
serde_with = "3.8.1"
Expand All @@ -24,10 +24,14 @@ keyring = "2.3.3"
toml = "0.8.13"
indicatif = "0.17.8"
jwalk = "0.8.1"
tokio = { version = "1.37.0", features = ["full"] }
tokio-util = "0.7.11"
bytes = "1.6.0"
futures = "0.3.30"

[[bin]]
name = "dvcli"
path = "src/main.rs"
path = "src/bin/cli.rs"

[dev-dependencies]
httpmock = "0.7.0"
Expand Down

0 comments on commit 5e3defb

Please sign in to comment.