Skip to content
This repository has been archived by the owner on Sep 10, 2024. It is now read-only.

Commit

Permalink
Downgrade tracing to 0.1.37
Browse files Browse the repository at this point in the history
Version 0.1.38 and no new version was released

Signed-off-by: Kévin Commaille <[email protected]>
  • Loading branch information
zecakeh authored and sandhose committed May 11, 2023
1 parent 7aae66e commit 25f0451
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion crates/axum-utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ serde_json = "1.0.96"
thiserror = "1.0.40"
tokio = "1.28.0"
tower = { version = "0.4.13", features = ["util"] }
tracing = "0.1.38"
tracing = "0.1.37"
url = "2.3.1"
ulid = { version = "1.0.0", features = ["serde"] }

Expand Down
2 changes: 1 addition & 1 deletion crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ tower-http = { version = "0.4.0", features = ["fs", "compression-full"] }
url = "2.3.1"
watchman_client = "0.8.0"

tracing = "0.1.38"
tracing = "0.1.37"
tracing-appender = "0.2.2"
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
tracing-opentelemetry = "0.19.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "Apache-2.0"

[dependencies]
tokio = { version = "1.28.0", features = ["fs", "rt"] }
tracing = { version = "0.1.38" }
tracing = "0.1.37"
async-trait = "0.1.68"

thiserror = "1.0.40"
Expand Down
2 changes: 1 addition & 1 deletion crates/email/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "Apache-2.0"

[dependencies]
async-trait = "0.1.68"
tracing = "0.1.38"
tracing = "0.1.37"
thiserror = "1.0.40"
headers = "0.3.8"

Expand Down
2 changes: 1 addition & 1 deletion crates/graphql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ chrono = "0.4.24"
serde = { version = "1.0.160", features = ["derive"] }
thiserror = "1.0.40"
tokio = { version = "1.28.0", features = ["sync"] }
tracing = "0.1.38"
tracing = "0.1.37"
ulid = "1.0.0"
url = "2.3.1"

Expand Down
2 changes: 1 addition & 1 deletion crates/handlers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tokio = { version = "1.28.0", features = ["macros"] }
futures-util = "0.3.28"

# Logging and tracing
tracing = "0.1.38"
tracing = "0.1.37"

# Error management
thiserror = "1.0.40"
Expand Down
2 changes: 1 addition & 1 deletion crates/http/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ thiserror = "1.0.40"
tokio = { version = "1.28.0", features = ["sync", "parking_lot"], optional = true }
tower = { version = "0.4.13", features = [] }
tower-http = { version = "0.4.0", features = ["cors"] }
tracing = "0.1.38"
tracing = "0.1.37"
tracing-opentelemetry = "0.19.0"
webpki = { version = "0.22.0", optional = true }
webpki-roots = { version = "0.23.0", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion crates/iana-codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ futures-util = "0.3.28"
hyper = { version = "0.14.16", features = ["tcp", "client", "http1"] }
serde = { version = "1.0.160", features = ["derive"] }
tokio = { version = "1.28.0", features = ["macros", "rt-multi-thread", "fs", "io-util"] }
tracing = "0.1.38"
tracing = "0.1.37"
tracing-subscriber = "0.3.17"
2 changes: 1 addition & 1 deletion crates/jose/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ serde_with = { version = "2.3.2", features = ["base64"] }
sha2 = { version = "0.10.6", features = ["oid"] }
signature = "2.1.0"
thiserror = "1.0.40"
tracing = "0.1.38"
tracing = "0.1.37"
url = { version = "2.3.1", features = ["serde"] }

mas-iana = { path = "../iana" }
Expand Down
2 changes: 1 addition & 1 deletion crates/listener/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ tokio = { version = "1.28.0", features = ["net", "rt", "macros", "signal", "time
tokio-rustls = "0.24.0"
tower-http = { version = "0.4.0", features = ["add-extension"] }
tower-service = "0.3.2"
tracing = "0.1.38"
tracing = "0.1.37"
libc = "0.2.142"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/oidc-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ serde_with = "2.3.2"
thiserror = "1.0.40"
tokio = { version = "1.28.0", features = ["rt", "macros", "rt-multi-thread"] }
tower = { version = "0.4.13", features = ["full"] }
tracing = "0.1.38"
tracing = "0.1.37"
url = { version = "2.3.1", features = ["serde"] }

mas-http = { path = "../http" }
Expand Down
2 changes: 1 addition & 1 deletion crates/policy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
thiserror = "1.0.40"
tokio = { version = "1.28.0", features = ["io-util"] }
tracing = "0.1.38"
tracing = "0.1.37"
wasmtime = { version = "7.0.0", default-features = false, features = ["async", "cranelift"] }

mas-data-model = { path = "../data-model" }
Expand Down
2 changes: 1 addition & 1 deletion crates/storage-pg/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ chrono = { version = "0.4.24", features = ["serde"] }
serde = { version = "1.0.160", features = ["derive"] }
serde_json = "1.0.96"
thiserror = "1.0.40"
tracing = "0.1.38"
tracing = "0.1.37"
futures-util = "0.3.28"

rand = "0.8.5"
Expand Down
2 changes: 1 addition & 1 deletion crates/storage/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ opentelemetry = "0.19.0"
rand_core = "0.6.4"
serde = "1.0.160"
serde_json = "1.0.96"
tracing = "0.1.38"
tracing = "0.1.37"
tracing-opentelemetry = "0.19.0"
url = "2.3.1"
ulid = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/tasks/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rand_chacha = "0.3.1"
sqlx = { version = "0.6.3", features = ["runtime-tokio-rustls", "postgres"] }
thiserror = "1.0.40"
tower = "0.4.13"
tracing = "0.1.38"
tracing = "0.1.37"
tracing-opentelemetry = "0.19.0"
opentelemetry = "0.19.0"
ulid = "1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/templates/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"

[dependencies]
tracing = "0.1.38"
tracing = "0.1.37"
tokio = { version = "1.28.0", features = ["macros", "rt"] }

anyhow = "1.0.70"
Expand Down
2 changes: 1 addition & 1 deletion crates/tower/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "Apache-2.0"
[dependencies]
aws-smithy-http = { version = "0.55.1", optional = true }
http = "0.2.9"
tracing = "0.1.38"
tracing = "0.1.37"
tracing-opentelemetry = "0.19.0"
tower = "0.4.13"
tokio = { version = "1.28.0", features = ["time"] }
Expand Down

0 comments on commit 25f0451

Please sign in to comment.