Skip to content

Commit

Permalink
Bump env_logger from 0.9.0 to 0.10.0 in /src/rust/engine (pantsbuild#…
Browse files Browse the repository at this point in the history
…17688)

Bumps [env_logger](https://github.com/rust-cli/env_logger) from 0.9.0 to 0.10.0.
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.9.0...v0.10.0)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Mar 15, 2023
1 parent b3208a9 commit 5ce027b
Show file tree
Hide file tree
Showing 13 changed files with 65 additions and 17 deletions.
58 changes: 53 additions & 5 deletions src/rust/engine/Cargo.lock

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

2 changes: 1 addition & 1 deletion src/rust/engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ pe_nailgun = { path = "process_execution/pe_nailgun" }
[dev-dependencies]
testutil = { path = "./testutil" }
fs = { path = "./fs" }
env_logger = "0.9.0"
env_logger = "0.10.0"

[build-dependencies]
pyo3-build-config = "0.17"
2 changes: 1 addition & 1 deletion src/rust/engine/client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ name = "pants"
path = "src/main.rs"

[dependencies]
env_logger = "0.9.0"
env_logger = "0.10.0"
futures = "0.3"
libc = "0.2"
log = "0.4"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/fs/brfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
protos = { path = "../../protos" }
clap = "3"
dirs-next = "2"
env_logger = "0.9.0"
env_logger = "0.10.0"
errno = "0.2.8"
fuser = "0.11.1"
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/fs/fs_util/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
protos = { path = "../../protos" }
bytes = "1.2"
clap = "3"
env_logger = "0.9.0"
env_logger = "0.10.0"
grpc_util = { path = "../../grpc_util" }
fs = { path = ".." }
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ tokio = { version = "1.21", features = ["time", "parking_lot"] }

[dev-dependencies]
rand = "0.8"
env_logger = "0.9.0"
env_logger = "0.10.0"
tokio = { version = "1.21", features = ["macros", "rt-multi-thread", "time"] }
2 changes: 1 addition & 1 deletion src/rust/engine/process_execution/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ strum_macros = "0.24"
tryfuture = { path = "../tryfuture" }

[dev-dependencies]
env_logger = "0.9.0"
env_logger = "0.10.0"
maplit = "1.0.1"
mock = { path = "../testutil/mock" }
parking_lot = "0.12"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/process_execution/docker/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ hashing = { path = "../../hashing" }
bytes = "1.2"

[dev-dependencies]
env_logger = "0.9.0"
env_logger = "0.10.0"
maplit = "1.0.1"
mock = { path = "../../testutil/mock" }
parking_lot = "0.12"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/process_execution/pe_nailgun/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ hashing = { path = "../../hashing" }


[dev-dependencies]
env_logger = "0.9.0"
env_logger = "0.10.0"
maplit = "1.0.1"
mock = { path = "../../testutil/mock" }
parking_lot = "0.12"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/process_execution/remote/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ strum_macros = "0.24"
parking_lot = "0.12"

[dev-dependencies]
env_logger = "0.9.0"
env_logger = "0.10.0"
maplit = "1.0.1"
mock = { path = "../../testutil/mock" }
parking_lot = "0.12"
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/process_executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ publish = false
protos = { path = "../protos" }
clap = { version = "3", features = ["derive"] }
dirs-next = "2"
env_logger = "0.9.0"
env_logger = "0.10.0"
fs = { path = "../fs" }
futures = "0.3"
grpc_util = { path = "../grpc_util" }
Expand Down
2 changes: 1 addition & 1 deletion src/rust/engine/rule_graph/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ petgraph = "0.6"
smallvec = { version = "1", features=["union"] }

[dev-dependencies]
env_logger = "0.9.0"
env_logger = "0.10.0"
2 changes: 1 addition & 1 deletion src/rust/engine/testutil/local_cas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ publish = false
[dependencies]
mock = { path = "../mock" }
clap = "3"
env_logger = "0.9.0"
env_logger = "0.10.0"

0 comments on commit 5ce027b

Please sign in to comment.