Skip to content

Commit

Permalink
use git patches rather than my own copies
Browse files Browse the repository at this point in the history
  • Loading branch information
lulf committed Mar 12, 2024
1 parent acfd799 commit 169aa72
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions examples/nrf-sdc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,25 @@ static_cell = "2"
debug = 2

[patch.crates-io]
# embassy-executor = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
# embassy-nrf = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
# embassy-sync = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
# embassy-futures = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
# embassy-time = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
# embassy-time-driver = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
# embassy-embedded-hal = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
#nrf-sdc = { git = "https://github.com/alexmoon/nrf-sdc.git", branch = "main" }
#nrf-mpsl = { git = "https://github.com/alexmoon/nrf-sdc.git", branch = "main" }
#bt-hci = { git = "https://github.com/alexmoon/bt-hci.git", branch = "main" }
embassy-executor = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
embassy-nrf = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
embassy-sync = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
embassy-futures = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
embassy-time = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
embassy-time-driver = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
embassy-embedded-hal = { git = "https://github.com/embassy-rs/embassy.git", branch = "main" }
nrf-sdc = { git = "https://github.com/alexmoon/nrf-sdc.git", branch = "main" }
nrf-mpsl = { git = "https://github.com/alexmoon/nrf-sdc.git", branch = "main" }
bt-hci = { git = "https://github.com/alexmoon/bt-hci.git", branch = "main" }

embassy-executor = {path = "../../../embassy/embassy-executor"}
embassy-nrf = {path = "../../../embassy/embassy-nrf"}
embassy-sync = {path = "../../../embassy/embassy-sync"}
embassy-futures = {path = "../../../embassy/embassy-futures"}
embassy-time = {path = "../../../embassy/embassy-time"}
embassy-time-driver = {path = "../../../embassy/embassy-time-driver"}
embassy-embedded-hal = {path = "../../../embassy/embassy-embedded-hal"}
embassy-hal-internal = {path = "../../../embassy/embassy-hal-internal"}
nrf-sdc = { path = "../../../nrf-sdc/nrf-sdc" }
nrf-mpsl = { path = "../../../nrf-sdc/nrf-mpsl" }
bt-hci = { path = "../../../bt-hci" }
#embassy-executor = {path = "../../../embassy/embassy-executor"}
#embassy-nrf = {path = "../../../embassy/embassy-nrf"}
#embassy-sync = {path = "../../../embassy/embassy-sync"}
#embassy-futures = {path = "../../../embassy/embassy-futures"}
#embassy-time = {path = "../../../embassy/embassy-time"}
#embassy-time-driver = {path = "../../../embassy/embassy-time-driver"}
#embassy-embedded-hal = {path = "../../../embassy/embassy-embedded-hal"}
#embassy-hal-internal = {path = "../../../embassy/embassy-hal-internal"}
#nrf-sdc = { path = "../../../nrf-sdc/nrf-sdc" }
#nrf-mpsl = { path = "../../../nrf-sdc/nrf-mpsl" }
#bt-hci = { path = "../../../bt-hci" }

0 comments on commit 169aa72

Please sign in to comment.