esp-wifi: Remove log feature from default features (#2253)

* esp-wifi: Remove log feature from default features

* changelog
This commit is contained in:
Juraj Sadel 2024-09-30 13:10:58 +02:00 committed by GitHub
parent fa66a43949
commit 11c73caf89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 1 deletions

View File

@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Removed the `clocks` parameter from `esp_wifi::initialize` (#1999)
- `cfg_toml` configuration system has been removed in favour of [esp-config](https://docs.rs/esp-config) (#2156)
- Removed the `embedded-svc` traits and feature (#2235)
- Removed the `log` feature from default features (#2253)
## 0.9.1 - 2024-09-03

View File

@ -59,7 +59,7 @@ esp-config = { version = "0.1.0", path = "../esp-config", features = ["build"]
esp-metadata = { version = "0.3.0", path = "../esp-metadata" }
[features]
default = ["log", "esp-alloc"]
default = ["esp-alloc"]
## Use `esp-alloc` for dynamic allocations.
##