Skip to content

Commit

Permalink
chore: updated deps
Browse files Browse the repository at this point in the history
  • Loading branch information
Ghamza-Jd committed Nov 7, 2024
1 parent 32a34e1 commit 0676f5b
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 13 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
1 change: 0 additions & 1 deletion e2e/tests/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion jarust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion jarust_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
6 changes: 3 additions & 3 deletions jarust_interface/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
2 changes: 1 addition & 1 deletion jarust_plugins/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }

0 comments on commit 0676f5b

Please sign in to comment.