Skip to content

Commit

Permalink
chore: Update dependencies for improved stability and performance (#145)
Browse files Browse the repository at this point in the history
* chore: Update dependencies for improved stability and performance, Bump version to 1.8.4 for girolle and girolle_macro packages
  • Loading branch information
doubleailes authored Dec 20, 2024
1 parent ae01e1d commit f6e3aa5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 13 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ resolver = "2"
members = ["girolle", "girolle_macro", "examples"]

[workspace.dependencies]
serde_json = "1.0.127"
tokio = { version = "1.39.3", features = ["full"] }
serde = { version = "1.0.209", features = ["derive", "rc"] }
serde_json = "1.0.133"
tokio = { version = "1.42.0", features = ["full"] }
serde = { version = "1.0.216", features = ["derive", "rc"] }
14 changes: 7 additions & 7 deletions girolle/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "girolle"
version = "1.8.3"
version = "1.8.4"
edition = "2021"
authors = ["Philippe Llerena <[email protected]>"]
description = "A nameko like lib in rust"
Expand All @@ -14,26 +14,26 @@ bench = false

[dependencies]
lapin = "2.5.0"
futures = "0.3.30"
futures = "0.3.31"
girolle_macro = { path = "../girolle_macro", version = "1.8" }
tokio-executor-trait = "2.1.1"
tokio-executor-trait = "2.1.3"
tokio-reactor-trait = "1.1.0"
serde_yaml = "0.9.33"
regex = "1.10.6"
regex = "1.11.0"
serde = { workspace = true }
serde_json = { workspace = true }
tokio = { workspace = true }

[dependencies.tracing]
version = "0.1.40"
version = "0.1.41"
default-features = false

[dependencies.tracing-subscriber]
version = "0.3.18"
version = "0.3.19"
features = ["fmt"]

[dependencies.uuid]
version = "1.10.0"
version = "1.11.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
Expand Down
6 changes: 3 additions & 3 deletions girolle_macro/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "girolle_macro"
version = "1.8.3"
version = "1.8.4"
edition = "2021"
readme = "../README.md"
license-file = "../LICENSE"
Expand All @@ -12,9 +12,9 @@ description = "A nameko macro proc-macro to generate a Nameko Function"
proc-macro = true

[dependencies]
proc-macro2 = "1.0.86"
proc-macro2 = "1.0.92"
quote = "1.0.37"
syn = { version = "2.0.76", features = ["fold", "full"] }
syn = { version = "2.0.90", features = ["fold", "full"] }
serde_json = { workspace = true }

[dev-dependencies]

0 comments on commit f6e3aa5

Please sign in to comment.