-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upse top level workspace in sub-crates
Signed-off-by: Arthur Heymans <[email protected]>
- Loading branch information
1 parent
39d7b7e
commit 4a8ff80
Showing
8 changed files
with
130 additions
and
111 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,11 @@ | ||
[workspace] | ||
members = [ | ||
".", | ||
"picoprog", | ||
"serprog" | ||
] | ||
resolver = "2" | ||
|
||
[package] | ||
name = "picoprog" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
authors = ["Marvin Drees <[email protected]>"] | ||
|
||
[dependencies] | ||
[workspace.dependencies] | ||
assign-resources = "0.4.1" | ||
cortex-m = { version = "0.7.7", features = ["inline-asm", "critical-section"] } | ||
cortex-m-rt = "0.7.5" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[package] | ||
name = "picoprog" | ||
version = "0.1.0" | ||
edition = "2021" | ||
license = "Apache-2.0" | ||
authors = ["Marvin Drees <[email protected]>"] | ||
|
||
[dependencies] | ||
assign-resources = "0.4.1" | ||
cortex-m = { workspace = true, features = ["inline-asm", "critical-section"] } | ||
cortex-m-rt = { workspace = true } | ||
embassy-executor = { workspace = true, features = ["arch-cortex-m", "executor-thread", "executor-interrupt", "nightly"] } | ||
embassy-futures = "0.1.1" | ||
embedded-hal = { workspace = true } | ||
embedded-hal-async = { workspace = true } | ||
serprog = { path = "../serprog" } | ||
embassy-rp = { workspace = true, features = ["unstable-pac", "time-driver", "critical-section-impl", "rom-func-cache", "rom-v2-intrinsics", "rp2040"] } | ||
embassy-sync = { workspace = true } | ||
embassy-time = { workspace = true } | ||
embassy-usb = { workspace = true, features = ["max-handler-count-6", "max-interface-count-6"] } | ||
embassy-usb-logger = { workspace = true } | ||
futures = { version = "0.3.30", default-features = false, features = ["async-await", "cfg-target-has-atomic", "unstable"] } | ||
heapless = { workspace = true, features = ["portable-atomic-critical-section", "ufmt"] } | ||
log = { workspace = true } | ||
portable-atomic = { workspace = true, features = ["critical-section"] } | ||
static_cell = { workspace = true } | ||
ufmt = "0.2.0" | ||
zerocopy = { workspace = true, features = ["derive"] } | ||
tock-registers = { workspace = true } | ||
num_enum = { workspace = true, default-features = false } |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters