Make cargo manifests consistent and bump dependencies

This commit is contained in:
Jesse Braham 2022-05-05 11:56:43 +02:00
parent e745e84869
commit 67bd5837cd
6 changed files with 36 additions and 39 deletions

View File

@ -19,14 +19,12 @@ procmacros = { path = "../esp-hal-procmacros", package = "esp-hal-procmacros"
void = { version = "1.0", default-features = false }
# RISC-V
riscv = { version = "0.8.0", optional = true }
riscv = { version = "0.8", optional = true }
riscv-atomic-emulation-trap = { version = "0.1", optional = true }
# Xtensa
xtensa-lx = { version = "0.7.0", optional = true }
# Xtensa Runtime
xtensa-lx-rt = { version = "0.11.0", optional = true }
xtensa-lx = { version = "0.7", optional = true }
xtensa-lx-rt = { version = "0.11", optional = true }
# Part of `ufmt` containing only `uWrite` trait
ufmt-write = { version = "0.1", optional = true }

View File

@ -16,7 +16,7 @@ proc-macro = true
[dependencies]
quote = "1.0"
proc-macro2 = "1.0"
darling = "0.10"
darling = "0.14"
syn = {version = "1.0", features = ["extra-traits", "full"]}
proc-macro-error = "1.0.4"

View File

@ -28,17 +28,17 @@ bare-metal = "1.0"
embedded-hal = { version = "0.2", features = ["unproven"] }
nb = "1.0"
void = { version = "1.0", default-features = false }
xtensa-lx = { version = "0.7.0", features = ["esp32"] }
xtensa-lx-rt = { version = "0.11.0", features = ["esp32"], optional = true }
xtensa-lx = { version = "0.7", features = ["esp32"] }
xtensa-lx-rt = { version = "0.11", features = ["esp32"], optional = true }
[dependencies.esp-hal-common]
path = "../esp-hal-common"
features = ["esp32"]
[dev-dependencies]
embedded-graphics = "0.7"
panic-halt = "0.2"
ssd1306 = "0.7.0"
embedded-graphics = "0.7.1"
ssd1306 = "0.7"
[features]
default = ["rt"]

View File

@ -27,20 +27,19 @@ categories = [
bare-metal = "1.0"
embedded-hal = { version = "0.2", features = ["unproven"] }
nb = "1.0"
riscv = "0.8.0"
riscv-rt = { version = "0.8.1", optional = true }
void = { version = "1.0", default-features = false }
r0 = "1.0.0"
riscv-atomic-emulation-trap = "0.1.0"
riscv = "0.8.0"
riscv-rt = { version = "0.8", optional = true }
void = { version = "1.0", default-features = false }
[dependencies.esp-hal-common]
path = "../esp-hal-common"
features = ["esp32c3"]
[dev-dependencies]
embedded-graphics = "0.7"
panic-halt = "0.2"
ssd1306 = "0.7.0"
embedded-graphics = "0.7.1"
ssd1306 = "0.7"
[features]
default = ["rt"]

View File

@ -28,17 +28,17 @@ bare-metal = "1.0"
embedded-hal = { version = "0.2", features = ["unproven"] }
nb = "1.0"
void = { version = "1.0", default-features = false }
xtensa-lx = { version = "0.7.0", features = ["esp32s2"] }
xtensa-lx-rt = { version = "0.11.0", features = ["esp32s2"], optional = true }
xtensa-lx = { version = "0.7", features = ["esp32s2"] }
xtensa-lx-rt = { version = "0.11", features = ["esp32s2"], optional = true }
[dependencies.esp-hal-common]
path = "../esp-hal-common"
features = ["esp32s2"]
[dev-dependencies]
embedded-graphics = "0.7"
panic-halt = "0.2"
ssd1306 = "0.7.0"
embedded-graphics = "0.7.1"
ssd1306 = "0.7"
[features]
default = ["rt"]

View File

@ -28,17 +28,17 @@ bare-metal = "1.0"
embedded-hal = { version = "0.2", features = ["unproven"] }
nb = "1.0"
void = { version = "1.0", default-features = false }
xtensa-lx = { version = "0.7.0", features = ["esp32s3"] }
xtensa-lx-rt = { version = "0.11.0", features = ["esp32s3"], optional = true }
xtensa-lx = { version = "0.7", features = ["esp32s3"] }
xtensa-lx-rt = { version = "0.11", features = ["esp32s3"], optional = true }
[dependencies.esp-hal-common]
path = "../esp-hal-common"
features = ["esp32s3"]
[dev-dependencies]
embedded-graphics = "0.7"
panic-halt = "0.2"
ssd1306 = "0.7.0"
embedded-graphics = "0.7.1"
ssd1306 = "0.7"
[features]
default = ["rt"]