Skip to content

Commit

Permalink
build(deps): bump tracing-subscriber from 0.3.2 to 0.3.3
Browse files Browse the repository at this point in the history
Bumps [tracing-subscriber](https://github.com/tokio-rs/tracing) from 0.3.2 to 0.3.3.
- [Release notes](https://github.com/tokio-rs/tracing/releases)
- [Commits](tokio-rs/tracing@tracing-subscriber-0.3.2...tracing-subscriber-0.3.3)

---
updated-dependencies:
- dependency-name: tracing-subscriber
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
  • Loading branch information
dependabot[bot] authored Dec 6, 2021
1 parent 58be6ce commit 39f1408
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 29 deletions.
29 changes: 10 additions & 19 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions src/dataflowd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ edition = "2021"
publish = false

[dependencies]
anyhow = "1.0.50"
anyhow = "1.0.51"
async-trait = "0.1.51"
dataflow-types = { path = "../dataflow-types" }
dataflow = { path = "../dataflow" }
log = "0.4.13"
ore = { path = "../ore" }
structopt = "0.3.25"
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", default-features = false, features = ["bincode"] }
tracing-subscriber = "0.3.2"
tracing-subscriber = "0.3.3"
tokio = { version = "1.13.0", features = ["macros", "rt-multi-thread"] }
tokio-serde = { version = "0.8.0", features = ["bincode"] }
tokio-util = { version = "0.6.9", features = ["codec"] }
Expand Down
8 changes: 4 additions & 4 deletions src/materialized/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@ conflicts = "materialized"
name = "materialized-unstable"

[dependencies]
anyhow = "1.0.50"
anyhow = "1.0.51"
askama = { version = "0.10.5", features = ["serde-json"] }
async-trait = "0.1.51"
atty = "0.2.14"
backtrace = "0.3.63"
build-info = { path = "../build-info" }
cfg-if = "1.0.0"
chrono = { version = "0.4.0", default-features = false, features = ["std"] }
clap = { version = "2.33.0", features = ["wrap_help"] }
clap = { version = "2.34.0", features = ["wrap_help"] }
compile-time-run = "0.2.12"
coord = { path = "../coord" }
crossbeam-channel = "0.5.1"
Expand Down Expand Up @@ -84,7 +84,7 @@ tokio = { version = "1.13.0", features = ["sync"] }
tokio-openssl = "0.6.3"
tokio-stream = { version = "0.1.8", features = ["net"] }
tracing = "0.1.29"
tracing-subscriber = "0.3.2"
tracing-subscriber = "0.3.3"
url = "2.2.2"
uuid = "0.8.2"

Expand Down Expand Up @@ -119,7 +119,7 @@ serde_json = "1.0.72"
tokio-postgres = { git = "https://github.com/MaterializeInc/rust-postgres", branch = "mz-0.7.2", features = ["with-chrono-0_4"] }

[build-dependencies]
anyhow = "1.0.50"
anyhow = "1.0.51"
askama_shared = { version = "0.11.1", features = ["config"] }
cc = "1.0.72"
flate2 = "1.0.22"
Expand Down
4 changes: 2 additions & 2 deletions src/ore/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ test = ["anyhow", "ctor", "tracing-subscriber"]
# dependencies and is widely considered to be basically part of the stdlib.
[dependencies]
async-trait = { version = "0.1.51", optional = true }
anyhow = { version = "1.0.50", optional = true }
anyhow = { version = "1.0.51", optional = true }
bytes = { version = "1.1.0", optional = true }
chrono = { version = "0.4.0", default-features = false, features = ["std"], optional = true }
ctor = { version = "0.1.21", optional = true }
Expand All @@ -39,7 +39,7 @@ stacker = { version = "0.1.14", optional = true }
structopt = { version = "0.3.25", optional = true }
tokio = { version = "1.13.0", features = ["io-util", "net", "rt-multi-thread", "time"], optional = true }
tokio-openssl = { version = "0.6.3", optional = true }
tracing-subscriber = { version = "0.3.2", default-features = false, features = ["env-filter", "fmt", "tracing-log"], optional = true }
tracing-subscriber = { version = "0.3.3", default-features = false, features = ["env-filter", "fmt", "tracing-log"], optional = true }

[dev-dependencies]
crossbeam-utils = "0.8.5"
Expand Down
4 changes: 2 additions & 2 deletions test/performance/s3-datagen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
publish = false

[dependencies]
anyhow = "1.0.50"
anyhow = "1.0.51"
aws-sdk-s3 = { version = "0.0.26-alpha", default-features = false }
bytefmt = "0.1.7"
futures = "0.3.18"
Expand All @@ -16,4 +16,4 @@ ore = { path = "../../../src/ore" }
structopt = "0.3.25"
tokio = { version = "1.13.0", features = ["macros", "net", "rt", "time"] }
tracing = "0.1.29"
tracing-subscriber = { version = "0.3.2", default-features = false, features = ["env-filter", "fmt"] }
tracing-subscriber = { version = "0.3.3", default-features = false, features = ["env-filter", "fmt"] }

0 comments on commit 39f1408

Please sign in to comment.