-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e1b3773
commit 353824b
Showing
5 changed files
with
10 additions
and
8 deletions.
There are no files selected for viewing
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
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,6 +1,6 @@ | ||
[package] | ||
name = "device-driver-cli" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["Dion Dokter <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -13,6 +13,6 @@ readme = "README.md" | |
|
||
[dependencies] | ||
clap = { version = "4.5.20", features = ["derive"] } | ||
device-driver-generation = { version = "1.0.0", path = "../generation" } | ||
device-driver-generation = { version = "=1.0.1", path = "../generation" } | ||
prettyplease = { version = "0.2.22", features = ["verbatim"] } | ||
syn = { version = "2.0" } |
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,6 +1,6 @@ | ||
[package] | ||
name = "device-driver" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["Dion Dokter <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -12,7 +12,7 @@ description = "A toolkit to write better device drivers, faster" | |
readme = "README.md" | ||
|
||
[dependencies] | ||
device-driver-macros = { version = "=1.0.0", path = "../macros", default-features = false, optional = true } | ||
device-driver-macros = { version = "=1.0.1", path = "../macros", default-features = false, optional = true } | ||
|
||
bitvec = { version = "1.0.1", default-features = false } | ||
embedded-io = "0.6.1" | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "device-driver-generation" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["Dion Dokter <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -14,7 +14,7 @@ readme = "README.md" | |
[dependencies] | ||
anyhow = "1.0.86" | ||
convert_case = "0.6.0" | ||
itertools = "0.13.0" | ||
itertools = "0.14.0" | ||
proc-macro2 = "1.0.70" | ||
quote = "1.0.33" | ||
syn = { version = "2.0", features = ["extra-traits"] } | ||
|
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,6 +1,6 @@ | ||
[package] | ||
name = "device-driver-macros" | ||
version = "1.0.0" | ||
version = "1.0.1" | ||
authors = ["Dion Dokter <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Apache-2.0" | ||
|
@@ -16,7 +16,7 @@ readme = "README.md" | |
proc-macro = true | ||
|
||
[dependencies] | ||
device-driver-generation = { version = "1.0.0", path = "../generation", default-features = false } | ||
device-driver-generation = { version = "=1.0.1", path = "../generation", default-features = false } | ||
syn = { version = "2.0" } | ||
proc-macro2 = "1.0" | ||
|
||
|