Skip to content

Commit

Permalink
chore(ci): check unused dependencies (hyperium#3334)
Browse files Browse the repository at this point in the history
And move itoa to http1 feature

Signed-off-by: Sven Pfennig <[email protected]>
  • Loading branch information
tottoto authored and 0xE282B0 committed Jan 16, 2024
1 parent e5f09cd commit 2241380
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 2 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
- ffi-header
- doc
- check-external-types
- udeps
steps:
- run: exit 0

Expand Down Expand Up @@ -232,3 +233,22 @@ jobs:

- name: check-external-types
run: cargo check-external-types --config .github/workflows/external-types.toml

udeps:
needs: [style]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Install Rust
uses: dtolnay/rust-toolchain@nightly

- name: Install cargo-udeps
uses: taiki-e/install-action@cargo-udeps

- name: Check unused dependencies on default features
run: cargo udeps

- name: Check unused dependencies on full features
run: cargo udeps --features full
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ http-body = "=1.0.0-rc.2"
http-body-util = { version = "=0.1.0-rc.3", optional = true }
httparse = "1.8"
h2_wasi = { version = "0.3.9", optional = true }
itoa = "1"
pin-project-lite = "0.2.4"
tokio_wasi = { version = "1", features = ["sync"] }

# Optional

httpdate = { version = "1.0", optional = true }
itoa = { version = "1", optional = true }
libc = { version = "0.2", optional = true }
wasmedge_wasi_socket = {version = "0.4.2", optional = true }
tracing = { version = "0.1", default-features = false, features = ["std"], optional = true }
Expand Down Expand Up @@ -78,7 +78,7 @@ full = [
]

# HTTP versions
http1 = []
http1 = ["dep:itoa"]
http2 = ["dep:h2_wasi"]

# Client/Server
Expand Down

0 comments on commit 2241380

Please sign in to comment.