1[package]
2name = "embassy-net-driver"
3version = "0.2.0"
4edition = "2021"
5license = "MIT OR Apache-2.0"
6description = "Driver trait for the `embassy-net` async TCP/IP network stack."
7repository = "https://github.com/embassy-rs/embassy"
8categories = [
9 "embedded",
10 "no-std",
11 "asynchronous",
12]
13
14[package.metadata.embassy_docs]
15src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-driver-v$VERSION/embassy-net-driver/src/"
16src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-driver/src/"
17features = ["defmt"]
18target = "thumbv7em-none-eabi"
19
20[package.metadata.docs.rs]
21features = ["defmt"]
22
23[dependencies]
24defmt = { version = "0.3", optional = true }
25