Skip to content

Commit

Permalink
chore: Upgrade all the tracing crates to the latest
Browse files Browse the repository at this point in the history
  • Loading branch information
rholshausen committed Dec 12, 2024
1 parent 2a99a11 commit 5fdfd02
Show file tree
Hide file tree
Showing 8 changed files with 49 additions and 55 deletions.
72 changes: 33 additions & 39 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ resolver = "2"
# Waiting on the next release of Onig crate
onig = { git = "https://github.com/rust-onig/rust-onig", default-features = false, rev = "76bc1d29651bd17c7d5ecea9266bd2e0e83cb2e0" }
# This needs to be the same version across all the libs (i.e. Pact FFI and plugin driver)
tracing = { git = "https://github.com/tokio-rs/tracing.git", tag = "tracing-subscriber-0.3.18" }
tracing-core = { git = "https://github.com/tokio-rs/tracing.git", tag = "tracing-subscriber-0.3.18" }
tracing-subscriber = { git = "https://github.com/tokio-rs/tracing.git", tag = "tracing-subscriber-0.3.18" }
tracing = { git = "https://github.com/tokio-rs/tracing.git", tag = "tracing-subscriber-0.3.19" }
tracing-core = { git = "https://github.com/tokio-rs/tracing.git", tag = "tracing-subscriber-0.3.19" }
tracing-subscriber = { git = "https://github.com/tokio-rs/tracing.git", tag = "tracing-subscriber-0.3.19" }
# FFI Inmemory sink uses the global static `LOG_BUFFER` in the pact_matching crate. This is required to be the same
# version across all crates (i.e. mock server crate).
pact_matching = { version = "~1.2.7", path = "./pact_matching" }
Expand Down
4 changes: 2 additions & 2 deletions rust/pact_consumer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ regex = "1.10.6"
serde_json = "1.0.127"
termsize = "0.1.9"
tokio = { version = "1.40.0", features = ["full"] }
tracing = "0.1.40"
tracing-core = "0.1.32"
tracing = "0.1.41"
tracing-core = "0.1.33"
url = "2.5.2"
uuid = { version = "1.10.0", features = ["v4"] }
yansi = { version = "1.0.1", optional = true }
Expand Down
6 changes: 3 additions & 3 deletions rust/pact_ffi/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ sxd-document = "0.3.2"
thiserror = "1.0.63"
tokio = { version = "1.40.0", features = ["full"] }
tokio-rustls = "0.24.1"
tracing = "0.1.40" # This needs to be the same version across all the libs (i.e. plugin driver)
tracing-core = "0.1.32" # This needs to be the same version across all the pact libs (i.e. plugin driver)
tracing = "0.1.41" # This needs to be the same version across all the libs (i.e. plugin driver)
tracing-core = "0.1.33" # This needs to be the same version across all the pact libs (i.e. plugin driver)
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "tracing-log"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "tracing-log"] }
uuid = { version = "1.10.0", features = ["v4"] }
zeroize = "1.8.1"

Expand Down
4 changes: 2 additions & 2 deletions rust/pact_matching/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ serde_json = "^1.0"
serde_urlencoded = "0.7.1"
sxd-document = { version = "0.3.2", optional = true }
tokio = { version = "1.37.0", features = ["full"] }
tracing = "0.1.40"
tracing-core = "0.1.32"
tracing = "0.1.41"
tracing-core = "0.1.33"
tree_magic_mini = "3.1.5"
uuid = { version = "1.8.0", features = ["v4"] }

Expand Down
2 changes: 1 addition & 1 deletion rust/pact_models/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ serde = { version = "1.0.215", features = ["derive"] }
serde_json = "1.0.132"
serde_urlencoded = { version = "0.7.1", optional = true }
sxd-document = { version = "0.3.2", optional = true }
tracing = "0.1.40" # This needs to be the same version across all the libs (i.e. Pact FFI and plugin driver)
tracing = "0.1.41" # This needs to be the same version across all the libs (i.e. Pact FFI and plugin driver)

[target.'cfg(not(target_family = "wasm"))'.dependencies]
fs2 = "0.4.3"
Expand Down
4 changes: 2 additions & 2 deletions rust/pact_verifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ serde_json = "1.0.115"
serde_with = { version = "3.7.0", features = ["json"] }
thiserror = "1.0.58"
tokio = { version = "1.37.0", features = ["full"] }
tracing = "0.1.40"
tracing-core = "0.1.32"
tracing = "0.1.41"
tracing-core = "0.1.33"
url = "2.5.0"
urlencoding = "2.1.3"

Expand Down
6 changes: 3 additions & 3 deletions rust/pact_verifier_cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ serde_json = "1.0.108"
strip-ansi-escapes = { version = "0.2.0", optional = true }
time = "0.3.31"
tokio = { version = "1.35.1", features = ["full"] }
tracing = "0.1.40"
tracing-core = "0.1.32"
tracing = "0.1.41"
tracing-core = "0.1.33"
tracing-log = "0.2.0"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "tracing-log"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "tracing-log"] }

[dev-dependencies]
expectest = "0.12.0"
Expand Down

0 comments on commit 5fdfd02

Please sign in to comment.