aboutsummaryrefslogtreecommitdiff
path: root/embassy-net-driver-channel/Cargo.toml
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-06-29 19:51:16 +0200
committerDario Nieuwenhuis <[email protected]>2023-06-29 19:55:32 +0200
commit6eac49186d5a5da4c310027e59adcd0bf44ae514 (patch)
tree3cbd9c15c68c7ee3859a17ec6d6fc7150e569686 /embassy-net-driver-channel/Cargo.toml
parent4feabb13bfbda46de74be09566118adc1ba49d5d (diff)
Release embassy-net v0.1
Diffstat (limited to 'embassy-net-driver-channel/Cargo.toml')
-rw-r--r--embassy-net-driver-channel/Cargo.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/embassy-net-driver-channel/Cargo.toml b/embassy-net-driver-channel/Cargo.toml
index e475551e1..bee2e3021 100644
--- a/embassy-net-driver-channel/Cargo.toml
+++ b/embassy-net-driver-channel/Cargo.toml
@@ -2,6 +2,14 @@
2name = "embassy-net-driver-channel" 2name = "embassy-net-driver-channel"
3version = "0.1.0" 3version = "0.1.0"
4edition = "2021" 4edition = "2021"
5license = "MIT OR Apache-2.0"
6description = "High-level channel-based driver 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]
5 13
6[package.metadata.embassy_docs] 14[package.metadata.embassy_docs]
7src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-driver-channel-v$VERSION/embassy-net-driver-channel/src/" 15src_base = "https://github.com/embassy-rs/embassy/blob/embassy-net-driver-channel-v$VERSION/embassy-net-driver-channel/src/"
@@ -9,6 +17,9 @@ src_base_git = "https://github.com/embassy-rs/embassy/blob/$COMMIT/embassy-net-d
9features = ["defmt"] 17features = ["defmt"]
10target = "thumbv7em-none-eabi" 18target = "thumbv7em-none-eabi"
11 19
20[package.metadata.docs.rs]
21features = ["defmt"]
22
12[dependencies] 23[dependencies]
13defmt = { version = "0.3", optional = true } 24defmt = { version = "0.3", optional = true }
14log = { version = "0.4.14", optional = true } 25log = { version = "0.4.14", optional = true }