Skip to content

Commit 6229fac

Browse files
authored
Merge pull request #118 from palfrey/proc-macro-update
CI step with fully updated dependencies
2 parents 7919b91 + f6435ab commit 6229fac

File tree

4 files changed

+23
-7
lines changed

4 files changed

+23
-7
lines changed

.github/workflows/ci.yml

+17-1
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,20 @@ jobs:
8080
toolchain: nightly
8181
- name: Remove lock
8282
run: rm Cargo.lock
83-
- run: cargo build -Z minimal-versions
83+
- run: cargo build -Z minimal-versions
84+
85+
dependency-updates:
86+
name: dependency updates
87+
runs-on: ubuntu-latest
88+
steps:
89+
- uses: actions/[email protected]
90+
- uses: dtolnay/rust-toolchain@stable
91+
with:
92+
toolchain: stable
93+
- name: Update packages
94+
run: cargo update
95+
- name: Build and test
96+
run: cargo test --all-features -- --nocapture
97+
env:
98+
RUST_TEST_THREADS: 3 # So the parallel tests have enough threads
99+
RUST_LOG: debug

serial_test/Cargo.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@ parking_lot = "^0.12"
1616
serial_test_derive = { version = "~3.1.1", path = "../serial_test_derive" }
1717
fslock = { version = "0.2", optional = true }
1818
document-features = { version = "0.2", optional = true }
19-
log = { version = "0.4", optional = true }
19+
log = { version = ">=0.4.4", optional = true }
2020
futures = { version = "^0.3", default_features = false, features = [
2121
"executor",
2222
], optional = true}
2323
scc = { version = "2"}
24-
env_logger = {version="0.10", optional=true}
24+
env_logger = {version=">=0.6.1", optional=true}
2525

2626
[dev-dependencies]
27-
itertools = "0.10"
27+
itertools = ">=0.10"
2828

2929
[features]
3030
default = ["logging", "async"]

serial_test_derive/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ syn = { version="2", features=["full"] }
1818
proc-macro2 = "1.0.60" # Because of https://github.com/dtolnay/proc-macro2/issues/356
1919

2020
[dev-dependencies]
21-
env_logger = "0.10"
21+
env_logger = ">=0.6.1"
2222
prettyplease = "0.2"
2323

2424
[features]

serial_test_test/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ rust-version = "1.68.2"
1010
[dependencies]
1111
serial_test = { path="../serial_test", default_features = false }
1212
once_cell = "^1.19"
13-
env_logger = "^0.10"
13+
env_logger = ">=0.6.1"
1414
parking_lot = "^0.12"
1515
lock_api = "^0.4.7"
1616
wasm-bindgen-test = {version="0.3.20", optional=true}
1717
scoped-tls = {version="1", optional=true}
18-
log = { version = "0.4" }
18+
log = { version = ">=0.4.4" }
1919

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

0 commit comments

Comments
 (0)