Skip to content

Commit

Permalink
chore: pin deps only to minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
unbekanntes-pferd committed Apr 12, 2024
1 parent 5cc8a4c commit 008cd5f
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,37 +14,37 @@ description = "Async API wrapper for DRACOON in Rust."


[dependencies]
reqwest = {version = "0.12.3", features = ["json", "stream"]}
reqwest-middleware = {version = "0.3.0", features = ["json"]}
reqwest-retry = "0.5.0"
reqwest = {version = "0.12", features = ["json", "stream"]}
reqwest-middleware = {version = "0.3", features = ["json"]}
reqwest-retry = "0.5"

# crypto
dco3_crypto = "0.6.0"
dco3_crypto = "0.6"

# async runtime and utils
tokio = { version = "1", features = ["full"] }
tokio-util = { version = "0.7.10", features = ["full"] }
async-trait = "0.1.78"
async-stream = "0.3.5"
futures-util = "0.3.30"
bytes = "1.5.0"
tokio-util = { version = "0.7", features = ["full"] }
async-trait = "0.1"
async-stream = "0.3"
futures-util = "0.3"
bytes = "1.6"

# parsing
serde = { version = "1", features = ["derive"] }
serde-xml-rs = "0.6.0"
serde-xml-rs = "0.6"
serde_json = "1"

# error handling
thiserror = "1"
retry-policies = "0.3.0"
retry-policies = "0.3"

# logging and tracing
tracing = "0.1.40"
tracing = "0.1"

# utils
url = "2.5.0"
base64 = "0.22.0"
chrono = {version = "0.4.35", features = ["serde"]}
url = "2"
base64 = "0.22"
chrono = {version = "0.4", features = ["serde"]}
dco3_derive = { path = "dco3_derive", version = "0.1.0"}


Expand Down

0 comments on commit 008cd5f

Please sign in to comment.