-
-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #154 from HaoboGu/fix/windows_link_err
Fix link error on Windows
- Loading branch information
Showing
10 changed files
with
33 additions
and
16 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
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 = "rmk-config" | ||
version = "0.2.2" | ||
version = "0.2.3" | ||
edition = "2021" | ||
authors = ["Haobo Gu <[email protected]>"] | ||
description = "Config crate of RMK" | ||
|
@@ -17,7 +17,7 @@ embassy-nrf = { version = "0.2.0", features = [ | |
"unstable-pac", | ||
"time", | ||
], optional = true } | ||
embassy-time = { version = "0.3", features = ["defmt"] } | ||
embassy-time = { version = "0.3" } | ||
|
||
[features] | ||
default = [] | ||
|
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
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 = "rmk-macro" | ||
version = "0.3.2" | ||
version = "0.3.3" | ||
edition = "2021" | ||
authors = ["Haobo Gu <[email protected]>"] | ||
description = "Proc-macro crate of RMK" | ||
|
@@ -10,7 +10,7 @@ license = "MIT OR Apache-2.0" | |
resolver = "2" | ||
|
||
[dependencies] | ||
rmk-config = { version = "0.2.2", path = "../rmk-config", features = ["toml"] } | ||
rmk-config = { version = "0.2.3", path = "../rmk-config", features = ["toml"] } | ||
toml = "0.8" | ||
serde = "1.0" | ||
serde_derive = "1.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
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 = "rmk" | ||
version = "0.4.3" | ||
version = "0.4.4" | ||
authors = ["Haobo Gu <[email protected]>"] | ||
description = "Keyboard firmware written in Rust" | ||
homepage = "https://github.com/haobogu/rmk" | ||
|
@@ -11,8 +11,8 @@ license = "MIT OR Apache-2.0" | |
resolver = "2" | ||
|
||
[dependencies] | ||
rmk-config = { version = "0.2.2", path = "../rmk-config" } | ||
rmk-macro = { version = "0.3.2", path = "../rmk-macro" } | ||
rmk-config = { version = "0.2.3", path = "../rmk-config" } | ||
rmk-macro = { version = "0.3.3", path = "../rmk-macro" } | ||
embedded-hal = { version = "1.0.0", features = ["defmt-03"] } | ||
embedded-hal-async = { version = "1.0.0", features = [ | ||
"defmt-03", | ||
|