mirror of
https://github.com/tokio-rs/tokio.git
synced 2026-09-07 00:00:08 +02:00
Minor cleanup of parking_lot feature, now in full (#3119)
## Motivation Some small cleanup items are apparent after merge of #2951 ## Solution Delete a now incorrect comment in Cargo.toml, and remove a now redundant CI test step.
This commit is contained in:
@@ -53,11 +53,6 @@ jobs:
|
|||||||
run: cargo test --features full
|
run: cargo test --features full
|
||||||
working-directory: tokio
|
working-directory: tokio
|
||||||
|
|
||||||
# Check `tokio` with `full + parking_lot` to make sure it compiles.
|
|
||||||
- name: check tokio full,parking_lot
|
|
||||||
run: cargo check --features full,parking_lot
|
|
||||||
working-directory: tokio
|
|
||||||
|
|
||||||
# Test **all** crates in the workspace with all features.
|
# Test **all** crates in the workspace with all features.
|
||||||
- name: test all --all-features
|
- name: test all --all-features
|
||||||
run: cargo test --workspace --all-features
|
run: cargo test --workspace --all-features
|
||||||
|
|||||||
+1
-1
@@ -100,7 +100,7 @@ lazy_static = { version = "1.0.2", optional = true }
|
|||||||
memchr = { version = "2.2", optional = true }
|
memchr = { version = "2.2", optional = true }
|
||||||
mio = { version = "0.7.5", optional = true }
|
mio = { version = "0.7.5", optional = true }
|
||||||
num_cpus = { version = "1.8.0", optional = true }
|
num_cpus = { version = "1.8.0", optional = true }
|
||||||
parking_lot = { version = "0.11.0", optional = true } # Not in full
|
parking_lot = { version = "0.11.0", optional = true }
|
||||||
slab = { version = "0.4.1", optional = true }
|
slab = { version = "0.4.1", optional = true }
|
||||||
tracing = { version = "0.1.21", default-features = false, features = ["std"], optional = true } # Not in full
|
tracing = { version = "0.1.21", default-features = false, features = ["std"], optional = true } # Not in full
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user