Skip to content

Commit 01a918b

Browse files
committed
Prepare release (esp-rs#343)
* Prepare first release * Always enable `async` for `bleps` * Remove obsolete patch
1 parent a29853e commit 01a918b

File tree

2 files changed

+23
-2
lines changed

2 files changed

+23
-2
lines changed

esp-wifi/Cargo.toml

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,25 @@
22
name = "esp-wifi"
33
version = "0.1.0"
44
edition = "2021"
5+
authors = [
6+
"The ESP-RS team",
7+
]
8+
description = "A WiFi, Bluetooth and ESP-NOW driver for use with Espressif chips and bare-metal Rust"
9+
repository = "https://github.com/esp-rs/esp-wifi"
510
license = "MIT OR Apache-2.0"
611

12+
keywords = [
13+
"wifi",
14+
"bluetooth",
15+
"esp",
16+
"no-std",
17+
]
18+
categories = [
19+
"embedded",
20+
"hardware-support",
21+
"no-std",
22+
]
23+
724
[dependencies]
825
defmt = { workspace = true, optional = true }
926
esp32c3-hal = { workspace = true, optional = true }
@@ -44,7 +61,7 @@ embedded-svc.workspace = true
4461
embassy-executor.workspace = true
4562
embassy-time.workspace = true
4663
futures-util.workspace = true
47-
bleps.workspace = true
64+
bleps = { workspace = true, features = ["async"] }
4865
embedded-hal-async.workspace = true
4966
log.workspace = true
5067
smoltcp.workspace = true
@@ -78,7 +95,6 @@ async = [
7895
"esp32-hal?/async",
7996
"esp32s2-hal?/async",
8097
"esp32s3-hal?/async",
81-
"bleps/async"
8298
]
8399

84100
embassy-net = ["dep:embassy-net", "async"]
@@ -126,6 +142,10 @@ log = [
126142
"esp32s3-hal?/log",
127143
]
128144

145+
[package.metadata.docs.rs]
146+
features = ["esp32c3", "wifi", "ble", "async", "embassy-net", "esp32c3-hal/embassy-time-systick", "esp32c3-hal/default"]
147+
default-target = "riscv32imc-unknown-none-elf"
148+
129149
# These examples are used in test automation
130150
[[example]]
131151
name = "test_esp_now"

esp-wifi/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
#![cfg_attr(feature = "async", feature(async_fn_in_trait))]
66
#![cfg_attr(feature = "async", allow(incomplete_features))]
77
#![doc = include_str!("../../README.md")]
8+
#![doc(html_logo_url = "https://avatars.githubusercontent.com/u/46717278")]
89

910
// MUST be the first module
1011
mod fmt;

0 commit comments

Comments
 (0)