diff --git a/Cargo.toml b/Cargo.toml index 424221b9..ac06cec7 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -55,7 +55,7 @@ critical-section = "1.1" defmt = "0.3" embassy-futures = "0.1.2" embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt" } -embassy-sync = "0.7.2" +embassy-sync = "0.8" embassy-time = "0.5.0" embassy-time-driver = "0.2.1" embedded-batteries-async = "0.3" @@ -77,6 +77,6 @@ serde = { version = "1.0.*", default-features = false } static_cell = "2.1.0" toml = { version = "0.8", default-features = false } syn = "2.0" -tps6699x = { git = "https://github.com/OpenDevicePartnership/tps6699x" } +tps6699x = { git = "https://github.com/bramsdell-ms/tps6699x", branch = "embassy-sync-0.8" } tokio = { version = "1.42.0" } uuid = { version = "=1.17.0", default-features = false } diff --git a/examples/rt633/Cargo.toml b/examples/rt633/Cargo.toml index 9da4f452..007d2179 100644 --- a/examples/rt633/Cargo.toml +++ b/examples/rt633/Cargo.toml @@ -32,9 +32,9 @@ embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt" "unstable-pac", ] } -embassy-sync = { version = "0.7.2", features = ["defmt"] } -embassy-executor = { version = "0.9.1", features = [ - "arch-cortex-m", +embassy-sync = { version = "0.8", features = ["defmt"] } +embassy-executor = { version = "0.10", features = [ + "platform-cortex-m", "executor-thread", "executor-interrupt", "defmt", diff --git a/examples/rt685s-evk/Cargo.toml b/examples/rt685s-evk/Cargo.toml index 53263b1c..68ffa6a2 100644 --- a/examples/rt685s-evk/Cargo.toml +++ b/examples/rt685s-evk/Cargo.toml @@ -34,9 +34,9 @@ embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt" embassy-embedded-hal = { version = "0.5.0", features = ["defmt"] } -embassy-sync = { version = "0.7.2", features = ["defmt"] } -embassy-executor = { version = "0.9.1", features = [ - "arch-cortex-m", +embassy-sync = { version = "0.8", features = ["defmt"] } +embassy-executor = { version = "0.10", features = [ + "platform-cortex-m", "executor-thread", "executor-interrupt", "defmt", diff --git a/examples/std/Cargo.toml b/examples/std/Cargo.toml index 9867a606..7fb2c79f 100644 --- a/examples/std/Cargo.toml +++ b/examples/std/Cargo.toml @@ -15,10 +15,10 @@ ignored = ["critical-section"] workspace = true [dependencies] -embassy-sync = { version = "0.7.2", features = ["log", "std"] } +embassy-sync = { version = "0.8", features = ["log", "std"] } embassy-time = { version = "0.5.0", features = ["log", "std"] } -embassy-executor = { version = "0.9.1", features = [ - "arch-std", +embassy-executor = { version = "0.10", features = [ + "platform-std", "executor-thread", "log", ] }