Skip to content

Commit

Permalink
Merge pull request #119 from palfrey/fix-default-features
Browse files Browse the repository at this point in the history
default_features -> default-features
  • Loading branch information
palfrey authored Nov 2, 2024
2 parents 6229fac + c280409 commit 3c50af8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion serial_test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ 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.4", optional = true }
futures = { version = "^0.3", default_features = false, features = [
futures = { version = "^0.3", default-features = false, features = [
"executor",
], optional = true}
scc = { version = "2"}
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 @@ -8,7 +8,7 @@ edition = "2018"
rust-version = "1.68.2"

[dependencies]
serial_test = { path="../serial_test", default_features = false }
serial_test = { path="../serial_test", default-features = false }
once_cell = "^1.19"
env_logger = ">=0.6.1"
parking_lot = "^0.12"
Expand All @@ -20,7 +20,7 @@ log = { version = ">=0.4.4" }
[dev-dependencies]
tokio = { version = "^1.27", features = ["macros", "rt"] }
actix-rt = { version = "^2.8", features = ["macros"] }
futures-util = {version = "^0.3", default_features = false }
futures-util = {version = "^0.3", default-features = false }

[features]
default = ["serial_test/logging", "async", "serial_test/test_logging"]
Expand Down

0 comments on commit 3c50af8

Please sign in to comment.