Skip to content

Commit

Permalink
Downgrade env_logger requirements
Browse files Browse the repository at this point in the history
(and up log, but it was implicit from the later env_logger)
  • Loading branch information
palfrey committed Nov 2, 2024
1 parent a41fa22 commit f6435ab
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions serial_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,15 +16,15 @@ parking_lot = "^0.12"
serial_test_derive = { version = "~3.1.1", path = "../serial_test_derive" }
fslock = { version = "0.2", optional = true }
document-features = { version = "0.2", optional = true }
log = { version = "0.4", optional = true }
log = { version = ">=0.4.4", optional = true }
futures = { version = "^0.3", default_features = false, features = [
"executor",
], optional = true}
scc = { version = "2"}
env_logger = {version="0.10", optional=true}
env_logger = {version=">=0.6.1", optional=true}

[dev-dependencies]
itertools = "0.10"
itertools = ">=0.10"

[features]
default = ["logging", "async"]
Expand Down
2 changes: 1 addition & 1 deletion serial_test_derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ syn = { version="2", features=["full"] }
proc-macro2 = "1.0.60" # Because of https://github.com/dtolnay/proc-macro2/issues/356

[dev-dependencies]
env_logger = "0.10"
env_logger = ">=0.6.1"
prettyplease = "0.2"

[features]
Expand Down
4 changes: 2 additions & 2 deletions serial_test_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ rust-version = "1.68.2"
[dependencies]
serial_test = { path="../serial_test", default_features = false }
once_cell = "^1.19"
env_logger = "^0.10"
env_logger = ">=0.6.1"
parking_lot = "^0.12"
lock_api = "^0.4.7"
wasm-bindgen-test = {version="0.3.20", optional=true}
scoped-tls = {version="1", optional=true}
log = { version = "0.4" }
log = { version = ">=0.4.4" }

[dev-dependencies]
tokio = { version = "^1.27", features = ["macros", "rt"] }
Expand Down

0 comments on commit f6435ab

Please sign in to comment.