diff --git a/.github/workflows/cont_integration.yml b/.github/workflows/cont_integration.yml index 2e53940..877bbcf 100644 --- a/.github/workflows/cont_integration.yml +++ b/.github/workflows/cont_integration.yml @@ -35,9 +35,9 @@ jobs: - name: Timeout test run: cargo test -- --ignored test_local_timeout - run: cargo check --verbose --features=use-openssl + - run: cargo check --verbose --no-default-features - run: cargo check --verbose --no-default-features --features=proxy - - run: cargo check --verbose --no-default-features --features=minimal - - run: cargo check --verbose --no-default-features --features=minimal,debug-calls + - run: cargo check --verbose --no-default-features --features=debug-calls - run: cargo check --verbose --no-default-features --features=proxy,use-openssl - run: cargo check --verbose --no-default-features --features=proxy,use-rustls - run: cargo check --verbose --no-default-features --features=proxy,use-rustls-ring diff --git a/Cargo.toml b/Cargo.toml index 9707156..ffebcb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -39,7 +39,6 @@ winapi = { version="0.3.9", features=["winsock2"], optional = true } [features] default = ["proxy", "use-rustls"] -minimal = [] debug-calls = [] proxy = ["byteorder", "winapi", "libc"] use-rustls = ["webpki-roots", "rustls/default"] diff --git a/src/lib.rs b/src/lib.rs index 491665a..8034c3a 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -7,7 +7,7 @@ //! plaintext connections over a socks proxy, useful for Onion servers. Using different features, //! the SSL implementation can be removed or replaced with [`openssl`](https://docs.rs/openssl). //! -//! A `minimal` configuration is also provided, which only includes the plaintext TCP client. +//! The library can also be used no features set (e.g --no-default-features), which only includes the plaintext TCP client. //! //! # Example //!