Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions examples/rt685s/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ repository = "https://github.com/OpenDevicePartnership/ec-slimloader"
warnings = "deny"

[workspace.dependencies]
embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt.git", default-features = false }
embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt.git", tag = "v0.1.0", default-features = false }
Comment thread
jerrysxie marked this conversation as resolved.

partition-manager = { git = "https://github.com/OpenDevicePartnership/embedded-services.git", default-features = false }
partition-manager = { git = "https://github.com/OpenDevicePartnership/embedded-services.git", tag = "v0.1.0", default-features = false }
Comment thread
jerrysxie marked this conversation as resolved.
embassy-sync = "0.8.0"
embassy-executor = "0.9.1"

Expand Down
4 changes: 2 additions & 2 deletions libs/ec-slimloader-imxrt/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ ec-slimloader-state = { path = "../ec-slimloader-state", default-features = fals
imxrt-rom = { path = "../imxrt-rom", features = ["rt"] }

cortex-m = { workspace = true }
embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt.git", default-features = false, features = [
embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt.git", tag = "v0.1.0", default-features = false, features = [
"unstable-pac",
] }
Comment thread
jerrysxie marked this conversation as resolved.

Expand All @@ -74,7 +74,7 @@ log = { workspace = true, optional = true }
embassy-embedded-hal = "0.5.0"

embassy-sync = { workspace = true }
partition-manager = { git = "https://github.com/OpenDevicePartnership/embedded-services.git", features = [
partition-manager = { git = "https://github.com/OpenDevicePartnership/embedded-services.git", tag = "v0.1.0", features = [
Comment thread
jerrysxie marked this conversation as resolved.
"esa",
"macros",
], default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion libs/imxrt-rom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ defmt-or-log = { workspace = true }
log = { workspace = true, optional = true }

cortex-m = { workspace = true }
embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt.git", default-features = false, features = [
embassy-imxrt = { git = "https://github.com/OpenDevicePartnership/embassy-imxrt.git", tag = "v0.1.0", default-features = false, features = [
Comment thread
jerrysxie marked this conversation as resolved.
"unstable-pac",
] }

Expand Down
Loading