diff --git a/Cargo.toml b/Cargo.toml index 76fe77f..c9cf901 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,10 +22,10 @@ repository = "https://github.com/Ghamza-Jd/jarust" [workspace.dependencies] async-trait = "0.1.83" -bytes = "1.7.2" -futures-util = "0.3.30" -serde = { version = "1.0.210", features = ["derive"] } -serde_json = "1.0.128" -thiserror = "1.0.64" -tokio = "1.40.0" +bytes = "1.8.0" +futures-util = "0.3.31" +serde = { version = "1.0.214", features = ["derive"] } +serde_json = "1.0.132" +thiserror = "2.0.0" +tokio = "1.41.0" tracing = "0.1.40" diff --git a/e2e/tests/core.rs b/e2e/tests/core.rs index a1700c6..445d9b7 100644 --- a/e2e/tests/core.rs +++ b/e2e/tests/core.rs @@ -11,7 +11,6 @@ use std::time::Duration; #[allow(unused_labels)] #[tokio::test] async fn it_websocket_core_tests() { - e2e::init_tracing_subscriber(); let config = JaConfig { url: "ws://localhost:8188/ws".to_string(), apisecret: None, diff --git a/jarust/Cargo.toml b/jarust/Cargo.toml index f600332..bbb3364 100644 --- a/jarust/Cargo.toml +++ b/jarust/Cargo.toml @@ -33,7 +33,7 @@ use-native-tls = ["jarust_interface/use-native-tls"] use-rustls = ["jarust_interface/use-rustls"] [dev-dependencies] -anyhow = "1.0.89" +anyhow = "1.0.93" async-trait.workspace = true serde_json.workspace = true serde.workspace = true diff --git a/jarust_core/Cargo.toml b/jarust_core/Cargo.toml index 9cc8278..b95e148 100644 --- a/jarust_core/Cargo.toml +++ b/jarust_core/Cargo.toml @@ -23,6 +23,6 @@ tokio = { workspace = true, features = ["sync", "time"] } tracing.workspace = true [dev-dependencies] -anyhow = "1.0.89" +anyhow = "1.0.93" tokio = { workspace = true, features = ["macros", "rt-multi-thread"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } diff --git a/jarust_interface/Cargo.toml b/jarust_interface/Cargo.toml index 7c07fc2..fc18be8 100644 --- a/jarust_interface/Cargo.toml +++ b/jarust_interface/Cargo.toml @@ -17,16 +17,16 @@ doctest = false async-trait.workspace = true bytes.workspace = true futures-util.workspace = true -indexmap = "2.5.0" +indexmap = "2.6.0" jarust_rt = { version = "0.7.0", path = "../jarust_rt" } rand = "0.8.5" -reqwest = { version = "0.12.7", features = ["json"] } +reqwest = { version = "0.12.9", features = ["json"] } serde_json.workspace = true serde.workspace = true thiserror.workspace = true tokio = { workspace = true, features = ["sync", "time", "rt"] } tracing.workspace = true -uuid = { version = "1.10.0", features = ["fast-rng", "v4"] } +uuid = { version = "1.11.0", features = ["fast-rng", "v4"] } [dev-dependencies] tokio = { workspace = true, features = ["macros"] } diff --git a/jarust_plugins/Cargo.toml b/jarust_plugins/Cargo.toml index 1cbdbe2..89d5d42 100644 --- a/jarust_plugins/Cargo.toml +++ b/jarust_plugins/Cargo.toml @@ -33,6 +33,6 @@ streaming = [] __experimental = [] [dev-dependencies] -anyhow = "1.0.89" +anyhow = "1.0.93" tokio = { workspace = true, features = ["time", "macros", "rt-multi-thread"] } tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }