Home
last modified time | relevance | path

Searched refs:features (Results 1 – 6 of 6) sorted by relevance

/smoltcp-0.9.1/
DCargo.toml16 # ensure that the correct features are enabled.
20 managed = { version = "0.8", default-features = false, features = ["map"] }
21 byteorder = { version = "1.0", default-features = false }
22 log = { version = "0.4.4", default-features = false, optional = true }
24 bitflags = { version = "1.0", default-features = false }
35 [features]
68 "std", "log", # needed for `cargo test --no-default-features --features default` :/
77 # Private features
221 required-features = ["std"]
225 required-features = ["std", "phy-raw_socket", "proto-ipv4"]
[all …]
Dgen_config.py7 features = [] variable
21 features.append(
46 for f in features:
70 for f in features:
DREADME.md23 _smoltcp_ is missing many widely deployed features, usually because no one implemented them yet.
24 To set expectations right, both implemented and omitted features are listed.
143 You probably want to disable default features and configure them one by one:
147 smoltcp = { version = "0.8.0", default-features = false, features = ["log"] }
198 These features are enabled by default.
204 These features are enabled by default.
220 - Via Cargo features: enable a feature like `<name>-<value>`. `name` must be in lowercase and
225 Any value can be set, unlike with Cargo features.
227 Environment variables take precedence over Cargo features. If two Cargo features are enabled for th…
528 cargo run --example loopback --no-default-features --features="log proto-ipv4 socket-tcp alloc"
[all …]
DCHANGELOG.md160 - Fix build errors due to invalid combinations of features ([416](https://github.com/smoltcp-rs/smo…
170 ### New features
/smoltcp-0.9.1/.github/workflows/
Dtest.yml27 features:
28 # Test default features.
34 # Test features chosen to be as orthogonal as possible.
49 # Test features chosen to be as aggressive as possible.
55features: alloc medium-ethernet proto-ipv4 proto-ipv6 socket-raw socket-udp socket-tcp socket-icmp
61 run: cargo test --no-default-features --features "${{ matrix.features }}"
75 features:
89 run: cargo check --no-default-features --features "${{ matrix.features }}"
/smoltcp-0.9.1/fuzz/
DCargo.toml13 arbitrary = { version = "1", features = ["derive"] }
15 smoltcp = { path = "..", features = [ "medium-ethernet" ] }