Skip to content

Commit

Permalink
build: upgrade rust deps
Browse files Browse the repository at this point in the history
Signed-off-by: Tiago Castro <[email protected]>
  • Loading branch information
tiagolobocastro committed Oct 2, 2023
1 parent 35c2bd3 commit 0d978be
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion composer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
tokio = { version = "1.30.0", features = [ "full" ] }
tokio = { version = "1.32.0", features = [ "full" ] }
futures = "0.3.28"
tracing = "0.1.37"
once_cell = "1.18.0"
Expand Down
2 changes: 1 addition & 1 deletion devinfo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2018"

[dependencies]
snafu = "0.7.5"
url = "2.4.0"
url = "2.4.1"
uuid = { version = "1.4.1", features = ["v4"] }
[build-dependencies]
bindgen = "0.64.0"
Expand Down
4 changes: 2 additions & 2 deletions event-publisher/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"

[dependencies]
tracing-subscriber = { version = "0.3.17", features = [ "env-filter" ] }
tokio = { version = "1.30.0"}
tokio = { version = "1.32.0"}
tracing = "0.1.37"
serde_json = "1.0.104"
serde_json = "1.0.107"
events-api = { path = "../events-api" }
12 changes: 6 additions & 6 deletions events-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@ tonic-build = "0.8.4"

[dependencies]
async-nats = "0.31.0"
bytes = "1.4.0"
serde = "1.0.183"
serde_json = "1.0.104"
tokio = "1.30.0"
bytes = "1.5.0"
serde = "1.0.188"
serde_json = "1.0.107"
tokio = "1.32.0"
tracing = "0.1.37"
uuid = { version = "1.4.1", features = ["v4"] }
async-trait = "0.1.72"
async-trait = "0.1.73"
futures = "0.3.28"
snafu = "0.7.5"
tonic = "0.8.3"
prost = "0.11.9"
prost-wkt-types = "0.4.2"
chrono = "0.4.26"
chrono = "0.4.31"
once_cell = "1.18.0"
6 changes: 3 additions & 3 deletions nvmeadm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ derive_builder = "0.12.0"
enum-primitive-derive = "0.2.2"
glob = "0.3.1"
ioctl-gen = "0.1.1"
libc = "0.2.147"
nix = { version = "0.26.2", default-features = false, features = [ "ioctl" ] }
libc = "0.2.148"
nix = { version = "0.26.4", default-features = false, features = [ "ioctl" ] }
num-traits = "0.2.16"
once_cell = "1.18.0"
snafu = "0.7.5"
uuid = { version = "1.4.1", features = ["v4"] }
url = "2.4.0"
url = "2.4.1"

0 comments on commit 0d978be

Please sign in to comment.