Update each package's Cargo manifest
This commit is contained in:
parent
ed2214a9fc
commit
34ca298698
@ -1,12 +1,19 @@
|
||||
[package]
|
||||
name = "esp-hal-common"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = [
|
||||
"Jesse Braham <jesse@beta7.io>",
|
||||
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
||||
]
|
||||
edition = "2021"
|
||||
description = "HAL implementations for peripherals common among Espressif devices; should not be used directly"
|
||||
repository = "https://github.com/esp-rs/esp-hal"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
[dependencies]
|
||||
paste = "1.0.6"
|
||||
embedded-hal = { version = "0.2", features = ["unproven"] }
|
||||
nb = "1.0"
|
||||
paste = "1.0"
|
||||
riscv = { version = "0.7", optional = true }
|
||||
void = { version = "1.0", default-features = false }
|
||||
xtensa-lx = { version = "0.4", optional = true }
|
||||
|
||||
@ -1,7 +1,27 @@
|
||||
[package]
|
||||
name = "esp32-hal"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = [
|
||||
"Jesse Braham <jesse@beta7.io>",
|
||||
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
||||
]
|
||||
edition = "2021"
|
||||
description = "HAL for ESP32 microcontrollers"
|
||||
repository = "https://github.com/esp-rs/esp-hal"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
keywords = [
|
||||
"embedded",
|
||||
"embedded-hal",
|
||||
"esp",
|
||||
"esp32",
|
||||
"no-std",
|
||||
]
|
||||
categories = [
|
||||
"embedded",
|
||||
"hardware-support",
|
||||
"no-std",
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
bare-metal = "1.0"
|
||||
|
||||
@ -1,7 +1,30 @@
|
||||
[package]
|
||||
name = "esp32c3-hal"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = [
|
||||
"Jesse Braham <jesse@beta7.io>",
|
||||
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
||||
]
|
||||
edition = "2021"
|
||||
description = "HAL for ESP32-C3 microcontrollers"
|
||||
repository = "https://github.com/esp-rs/esp-hal"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
keywords = [
|
||||
"embedded",
|
||||
"embedded-hal",
|
||||
"esp",
|
||||
"esp32c3",
|
||||
"no-std",
|
||||
]
|
||||
categories = [
|
||||
"embedded",
|
||||
"hardware-support",
|
||||
"no-std",
|
||||
]
|
||||
|
||||
[package.metadata.espflash]
|
||||
format = "direct-boot"
|
||||
|
||||
[dependencies]
|
||||
bare-metal = "1.0"
|
||||
@ -25,6 +48,3 @@ panic-halt = "0.2"
|
||||
[features]
|
||||
default = ["rt"]
|
||||
rt = ["riscv-rt"]
|
||||
|
||||
[package.metadata.espflash]
|
||||
format = "direct-boot"
|
||||
|
||||
@ -1,7 +1,27 @@
|
||||
[package]
|
||||
name = "esp32s2-hal"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = [
|
||||
"Jesse Braham <jesse@beta7.io>",
|
||||
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
||||
]
|
||||
edition = "2021"
|
||||
description = "HAL for ESP32-S2 microcontrollers"
|
||||
repository = "https://github.com/esp-rs/esp-hal"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
keywords = [
|
||||
"embedded",
|
||||
"embedded-hal",
|
||||
"esp",
|
||||
"esp32s2",
|
||||
"no-std",
|
||||
]
|
||||
categories = [
|
||||
"embedded",
|
||||
"hardware-support",
|
||||
"no-std",
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
bare-metal = "1.0"
|
||||
@ -14,7 +34,7 @@ xtensa-lx = { version = "0.4", features = ["lx6"] } # FIXME
|
||||
path = "../esp-hal-common"
|
||||
features = ["esp32s2"]
|
||||
|
||||
[dependencies.xtensa-lx-rt]
|
||||
[dependencies.xtensa-lx-rt] # FIXME
|
||||
git = "https://github.com/esp-rs/xtensa-lx-rt/"
|
||||
branch = "unify-xtensa-asm"
|
||||
features = ["lx6"]
|
||||
|
||||
@ -1,7 +1,27 @@
|
||||
[package]
|
||||
name = "esp32s3-hal"
|
||||
version = "0.1.0"
|
||||
edition = "2018"
|
||||
authors = [
|
||||
"Jesse Braham <jesse@beta7.io>",
|
||||
"Björn Quentin <bjoern.quentin@mobile-j.de>",
|
||||
]
|
||||
edition = "2021"
|
||||
description = "HAL for ESP32-S3 microcontrollers"
|
||||
repository = "https://github.com/esp-rs/esp-hal"
|
||||
license = "MIT OR Apache-2.0"
|
||||
|
||||
keywords = [
|
||||
"embedded",
|
||||
"embedded-hal",
|
||||
"esp",
|
||||
"esp32s3",
|
||||
"no-std",
|
||||
]
|
||||
categories = [
|
||||
"embedded",
|
||||
"hardware-support",
|
||||
"no-std",
|
||||
]
|
||||
|
||||
[dependencies]
|
||||
bare-metal = "1.0"
|
||||
@ -14,7 +34,7 @@ xtensa-lx = { version = "0.4", features = ["lx6"] } # FIXME
|
||||
path = "../esp-hal-common"
|
||||
features = ["esp32s3"]
|
||||
|
||||
[dependencies.xtensa-lx-rt]
|
||||
[dependencies.xtensa-lx-rt] # FIXME
|
||||
git = "https://github.com/esp-rs/xtensa-lx-rt/"
|
||||
branch = "unify-xtensa-asm"
|
||||
features = ["lx6"]
|
||||
|
||||
Loading…
Reference in New Issue
Block a user