-
Notifications
You must be signed in to change notification settings - Fork 220
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove unnecessary
rt
crate dependencies (#391)
* Remove unnecessary `rt` crate dependencies * Bump versions, update to latest released dependencies
- Loading branch information
Showing
173 changed files
with
261 additions
and
640 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "esp-hal-common" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
authors = [ | ||
"Jesse Braham <[email protected]>", | ||
"Björn Quentin <[email protected]>", | ||
|
@@ -24,7 +24,7 @@ fugit = "0.3.6" | |
lock_api = { version = "0.4.9", optional = true } | ||
nb = "1.0.0" | ||
paste = "1.0.11" | ||
procmacros = { version = "0.2.0", package = "esp-hal-procmacros", path = "../esp-hal-procmacros" } | ||
procmacros = { version = "0.3.0", package = "esp-hal-procmacros", path = "../esp-hal-procmacros" } | ||
strum = { version = "0.24.1", default-features = false, features = ["derive"] } | ||
void = { version = "1.0.2", default-features = false } | ||
usb-device = { version = "0.2.9", optional = true } | ||
|
@@ -40,8 +40,8 @@ esp-riscv-rt = { version = "0.1.0", optional = true } | |
riscv-atomic-emulation-trap = { version = "0.4.0", optional = true } | ||
|
||
# Xtensa | ||
xtensa-lx = { version = "0.7.0", optional = true } | ||
xtensa-lx-rt = { version = "0.14.0", optional = true } | ||
xtensa-lx = { version = "0.8.0", optional = true } | ||
xtensa-lx-rt = { version = "0.15.0", optional = true } | ||
|
||
# Smart-LED (e.g., WS2812/SK68XX) support | ||
smart-leds-trait = { version = "0.2.1", optional = true } | ||
|
@@ -53,18 +53,18 @@ ufmt-write = { version = "0.1.0", optional = true } | |
# Each supported device MUST have its PAC included below along with a | ||
# corresponding feature. We rename the PAC packages because we cannot | ||
# have dependencies and features with the same names. | ||
esp32 = { version = "0.19.0", features = ["critical-section"], optional = true } | ||
esp32c2 = { version = "0.7.0", features = ["critical-section"], optional = true } | ||
esp32c3 = { version = "0.10.0", features = ["critical-section"], optional = true } | ||
esp32s2 = { version = "0.10.0", features = ["critical-section"], optional = true } | ||
esp32s3 = { version = "0.13.0", features = ["critical-section"], optional = true } | ||
esp32 = { version = "0.21.0", features = ["critical-section"], optional = true } | ||
esp32c2 = { version = "0.8.0", features = ["critical-section"], optional = true } | ||
esp32c3 = { version = "0.11.0", features = ["critical-section"], optional = true } | ||
esp32s2 = { version = "0.12.0", features = ["critical-section"], optional = true } | ||
esp32s3 = { version = "0.15.0", features = ["critical-section"], optional = true } | ||
|
||
[features] | ||
esp32 = ["esp32/rt" , "xtensa", "xtensa-lx/esp32", "xtensa-lx-rt/esp32", "lock_api"] | ||
esp32c2 = ["esp32c2/rt", "riscv"] | ||
esp32c3 = ["esp32c3/rt", "riscv"] | ||
esp32s2 = ["esp32s2/rt", "xtensa", "xtensa-lx/esp32s2", "xtensa-lx-rt/esp32s2", "esp-synopsys-usb-otg", "usb-device"] | ||
esp32s3 = ["esp32s3/rt", "xtensa", "xtensa-lx/esp32s3", "xtensa-lx-rt/esp32s3", "lock_api", "esp-synopsys-usb-otg", "usb-device"] | ||
esp32 = ["esp32/rt" , "xtensa", "xtensa-lx/esp32", "xtensa-lx-rt/esp32", "lock_api", "procmacros/esp32"] | ||
esp32c2 = ["esp32c2/rt", "riscv", "procmacros/esp32c2"] | ||
esp32c3 = ["esp32c3/rt", "riscv", "procmacros/esp32c3"] | ||
esp32s2 = ["esp32s2/rt", "xtensa", "xtensa-lx/esp32s2", "xtensa-lx-rt/esp32s2", "esp-synopsys-usb-otg", "usb-device", "procmacros/esp32s2"] | ||
esp32s3 = ["esp32s3/rt", "xtensa", "xtensa-lx/esp32s3", "xtensa-lx-rt/esp32s3", "lock_api", "esp-synopsys-usb-otg", "usb-device", "procmacros/esp32s3"] | ||
|
||
esp32c2_40mhz = [] | ||
esp32c2_26mhz = [] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "esp-hal-procmacros" | ||
version = "0.2.0" | ||
version = "0.3.0" | ||
authors = [ | ||
"Jesse Braham <[email protected]>", | ||
"Björn Quentin <[email protected]>", | ||
|
@@ -20,9 +20,15 @@ proc-macro-error = "1.0.4" | |
proc-macro2 = "1.0.50" | ||
quote = "1.0.23" | ||
syn = {version = "1.0.107", features = ["extra-traits", "full"]} | ||
proc-macro-crate = "1.3.0" | ||
|
||
[features] | ||
interrupt = [] | ||
riscv = [] | ||
rtc_slow = [] | ||
xtensa = [] | ||
esp32 = [] | ||
esp32c2 = [] | ||
esp32c3 = [] | ||
esp32s2 = [] | ||
esp32s3 = [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "esp32-hal" | ||
version = "0.8.0" | ||
version = "0.9.0" | ||
authors = [ | ||
"Jesse Braham <[email protected]>", | ||
"Björn Quentin <[email protected]>", | ||
|
@@ -30,15 +30,13 @@ embedded-hal = { version = "0.2.7", features = ["unproven"] } | |
embedded-hal-1 = { version = "=1.0.0-alpha.9", optional = true, package = "embedded-hal" } | ||
embedded-hal-async = { version = "0.2.0-alpha.0", optional = true } | ||
embedded-hal-nb = { version = "=1.0.0-alpha.1", optional = true } | ||
esp-hal-common = { version = "0.5.0", features = ["esp32"], path = "../esp-hal-common" } | ||
xtensa-lx = { version = "0.7.0", features = ["esp32"] } | ||
xtensa-lx-rt = { version = "0.14.0", features = ["esp32"], optional = true } | ||
esp-hal-common = { version = "0.6.0", features = ["esp32"], path = "../esp-hal-common" } | ||
|
||
[dev-dependencies] | ||
critical-section = "1.1.1" | ||
embassy-executor = { package = "embassy-executor", git = "https://github.com/embassy-rs/embassy/", rev = "cd9a65b", features = ["nightly", "integrated-timers"] } | ||
embedded-graphics = "0.7.1" | ||
esp-backtrace = { version = "0.4.0", features = ["esp32", "panic-handler", "exception-handler", "print-uart"] } | ||
esp-backtrace = { version = "0.5.0", features = ["esp32", "panic-handler", "exception-handler", "print-uart"] } | ||
esp-println = { version = "0.3.1", features = ["esp32"] } | ||
sha2 = { version = "0.10.6", default-features = false} | ||
smart-leds = "0.3.0" | ||
|
@@ -50,7 +48,7 @@ aes = "0.8.2" | |
default = ["rt", "vectored"] | ||
bluetooth = [] | ||
eh1 = ["esp-hal-common/eh1", "dep:embedded-hal-1", "dep:embedded-hal-nb"] | ||
rt = ["xtensa-lx-rt/esp32"] | ||
rt = [] | ||
smartled = ["esp-hal-common/smartled"] | ||
ufmt = ["esp-hal-common/ufmt"] | ||
vectored = ["esp-hal-common/vectored"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,6 @@ use esp32_hal::{ | |
Rtc, | ||
}; | ||
use esp_backtrace as _; | ||
use xtensa_lx_rt::entry; | ||
|
||
#[entry] | ||
fn main() -> ! { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,7 +15,6 @@ use esp32_hal::{ | |
Rtc, | ||
}; | ||
use esp_backtrace as _; | ||
use xtensa_lx_rt::entry; | ||
|
||
#[entry] | ||
fn main() -> ! { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,6 @@ use esp32_hal::{ | |
Rtc, | ||
}; | ||
use esp_backtrace as _; | ||
use xtensa_lx_rt::entry; | ||
|
||
#[entry] | ||
fn main() -> ! { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.