Skip to content

Commit

Permalink
Minor cleanup of parking_lot feature, now in full (#3119)
Browse files Browse the repository at this point in the history
## 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.
  • Loading branch information
dekellum committed Nov 10, 2020
1 parent e1256d8 commit d869e16
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -53,11 +53,6 @@ jobs:
run: cargo test --features full
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.
- name: test all --all-features
run: cargo test --workspace --all-features
Expand Down
2 changes: 1 addition & 1 deletion tokio/Cargo.toml
Expand Up @@ -100,7 +100,7 @@ lazy_static = { version = "1.0.2", optional = true }
memchr = { version = "2.2", optional = true }
mio = { version = "0.7.5", 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 }
tracing = { version = "0.1.21", default-features = false, features = ["std"], optional = true } # Not in full

Expand Down

0 comments on commit d869e16

Please sign in to comment.