diff --git a/Cargo.toml b/Cargo.toml index a17feba..62e28f2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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"] } \ No newline at end of file +serde_json = "1.0.133" +tokio = { version = "1.42.0", features = ["full"] } +serde = { version = "1.0.216", features = ["derive", "rc"] } diff --git a/girolle/Cargo.toml b/girolle/Cargo.toml index fac13f3..87e8064 100644 --- a/girolle/Cargo.toml +++ b/girolle/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "girolle" -version = "1.8.3" +version = "1.8.4" edition = "2021" authors = ["Philippe Llerena "] description = "A nameko like lib in rust" @@ -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 diff --git a/girolle_macro/Cargo.toml b/girolle_macro/Cargo.toml index e6053d9..e8e5c2d 100644 --- a/girolle_macro/Cargo.toml +++ b/girolle_macro/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "girolle_macro" -version = "1.8.3" +version = "1.8.4" edition = "2021" readme = "../README.md" license-file = "../LICENSE" @@ -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]