Skip to content

Commit

Permalink
Point to github with patches
Browse files Browse the repository at this point in the history
  • Loading branch information
bugadani committed Dec 6, 2024
1 parent ecbcd66 commit d4d7c62
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
8 changes: 4 additions & 4 deletions esp-hal-embassy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ single-queue = []
unexpected_cfgs = "allow"

[patch.crates-io]
embassy-executor = { path = "C:/_Hobby/CardIo/embassy/embassy-executor" }
embassy-time = { path = "C:/_Hobby/CardIo/embassy/embassy-time" }
embassy-time-driver = { path = "C:/_Hobby/CardIo/embassy/embassy-time-driver" }
embassy-time-queue-driver = { path = "C:/_Hobby/CardIo/embassy/embassy-time-queue-driver" }
embassy-executor = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
embassy-time = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
embassy-time-driver = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
embassy-time-queue-driver = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
6 changes: 6 additions & 0 deletions examples/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,9 @@ incremental = false
opt-level = 3
lto = 'fat'
overflow-checks = false

[patch.crates-io]
embassy-executor = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
embassy-time = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
embassy-time-driver = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
embassy-time-queue-driver = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
6 changes: 6 additions & 0 deletions hil-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -316,3 +316,9 @@ incremental = false
opt-level = 3
lto = false # LTO (thin or fat) miscompiles some tests on RISC-V
overflow-checks = false

[patch.crates-io]
embassy-executor = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
embassy-time = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
embassy-time-driver = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
embassy-time-queue-driver = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
8 changes: 4 additions & 4 deletions qa-test/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ lto = "fat"
codegen-units = 1

[patch.crates-io]
embassy-executor = { path = "C:/_Hobby/CardIo/embassy/embassy-executor" }
embassy-time = { path = "C:/_Hobby/CardIo/embassy/embassy-time" }
embassy-time-driver = { path = "C:/_Hobby/CardIo/embassy/embassy-time-driver" }
embassy-time-queue-driver = { path = "C:/_Hobby/CardIo/embassy/embassy-time-queue-driver" }
embassy-executor = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
embassy-time = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
embassy-time-driver = { git = "https://github.com/bugadani/embassy", branch = "refactor" }
embassy-time-queue-driver = { git = "https://github.com/bugadani/embassy", branch = "refactor" }

0 comments on commit d4d7c62

Please sign in to comment.