Skip to content

Commit

Permalink
Updated crate dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
danwilliams committed Nov 12, 2024
1 parent 2361ce2 commit a6f88eb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion crates/rubedo-macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ proc-macro = true
quote = "1.0.37"

[dev-dependencies]
trybuild = "1.0.99"
trybuild = "1.0.101"

#=================================[ LINTS ]===================================

Expand Down
16 changes: 8 additions & 8 deletions crates/rubedo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,27 +31,27 @@ sugar = [ "dep:rubedo-macros"]
#==============================[ DEPENDENCIES ]===============================

[dependencies]
axum = { optional = true, version = "0.7.5" }
axum = { optional = true, version = "0.7.7" }
base64 = { optional = true, version = "0.22.1" }
bytes = { optional = true, version = "1.7.1" }
bytes = { optional = true, version = "1.8.0" }
chrono = { optional = true, version = "0.4.38", features = ["alloc", "clock", "std"] }
digest = { optional = true, version = "0.10.7", features = ["rand_core"] }
ed25519-dalek = { optional = true, version = "2.1.1", features = ["rand_core"] }
futures = { optional = true, version = "0.3.30" }
futures-util = { optional = true, version = "0.3.30" }
futures = { optional = true, version = "0.3.31" }
futures-util = { optional = true, version = "0.3.31" }
generic-array = { optional = true, version = "0.14.7" } # Cannot move to 1.0.0 until the digest crate does
hex = { optional = true, version = "0.4.3" }
http = { optional = true, version = "1.1.0" }
http-body-util = { optional = true, version = "0.1.2" }
hyper = { optional = true, version = "1.4.1" }
hyper = { optional = true, version = "1.5.0" }
rand_core = { optional = true, version = "0.6.4" }
rubedo-macros = { optional = true, version = "0.6.2", path = "../rubedo-macros" }
rust_decimal = { optional = true, version = "1.36.0" }
serde = { optional = true, version = "1.0.209", features = ["derive"] }
serde_json = { optional = true, version = "1.0.128", features = ["preserve_order"] }
serde = { optional = true, version = "1.0.215", features = ["derive"] }
serde_json = { optional = true, version = "1.0.132", features = ["preserve_order"] }
sha2 = { optional = true, version = "0.10.8" }
thiserror = { optional = true, version = "2.0.3" }
tokio = { optional = true, version = "1.40.0", features = ["fs", "io-std", "io-util", "macros"] }
tokio = { optional = true, version = "1.41.1", features = ["fs", "io-std", "io-util", "macros"] }

[dev-dependencies]
assert-json-diff = "2.0.2"
Expand Down

0 comments on commit a6f88eb

Please sign in to comment.