diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 21df08597..e39e86fc2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -188,6 +188,8 @@ jobs: - run: cargo check --workspace --release --no-default-features --features all-apis,use-libc,alloc -vv - run: cargo check --workspace --release --no-default-features --features time -vv - run: cargo check --workspace --release --no-default-features --features time,use-libc -vv + - run: cargo check --workspace --release --no-default-features --features net -vv + - run: cargo check --workspace --release --no-default-features --features net,use-libc -vv - run: rustup component add rust-src - run: cargo check --workspace --release --no-default-features --target=i686-unknown-linux-gnu -Zbuild-std -vv diff --git a/src/lib.rs b/src/lib.rs index 8109ca2bb..078c382a1 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -389,6 +389,7 @@ mod signal; #[cfg(any( feature = "fs", feature = "event", + feature = "net", feature = "process", feature = "runtime", feature = "thread",