Skip to content

Commit ce7a0eb

Browse files
committed
build: Remove unused "minimal" feature
1 parent 64b20d1 commit ce7a0eb

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.github/workflows/cont_integration.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,7 @@ jobs:
3636
run: cargo test -- --ignored test_local_timeout
3737
- run: cargo check --verbose --features=use-openssl
3838
- run: cargo check --verbose --no-default-features --features=proxy
39-
- run: cargo check --verbose --no-default-features --features=minimal
40-
- run: cargo check --verbose --no-default-features --features=minimal,debug-calls
39+
- run: cargo check --verbose --no-default-features --features=debug-calls
4140
- run: cargo check --verbose --no-default-features --features=proxy,use-openssl
4241
- run: cargo check --verbose --no-default-features --features=proxy,use-rustls
4342
- run: cargo check --verbose --no-default-features --features=proxy,use-rustls-ring

Cargo.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ winapi = { version="0.3.9", features=["winsock2"], optional = true }
3939

4040
[features]
4141
default = ["proxy", "rustls"]
42-
minimal = []
4342
debug-calls = []
4443
proxy = ["byteorder", "winapi", "libc"]
4544
rustls = ["webpki-roots", "dep:rustls", "rustls/default"]

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
//! plaintext connections over a socks proxy, useful for Onion servers. Using different features,
88
//! the SSL implementation can be removed or replaced with [`openssl`](https://docs.rs/openssl).
99
//!
10-
//! A `minimal` configuration is also provided, which only includes the plaintext TCP client.
10+
//! For a minimal configuration the library can be built with `--no-default-features`, which only includes the plaintext TCP client.
1111
//!
1212
//! # Example
1313
//!

0 commit comments

Comments
 (0)