mirror of
https://github.com/rtic-rs/rtic.git
synced 2024-11-23 20:22:51 +01:00
Use riscv-slic form crates.io (#919)
* use riscv-slic form crates.io * address comments
This commit is contained in:
parent
a3f40f2f93
commit
acb9f44642
3 changed files with 8 additions and 5 deletions
10
examples/hifive1/Cargo.lock
generated
10
examples/hifive1/Cargo.lock
generated
|
@ -243,8 +243,9 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "riscv-slic"
|
name = "riscv-slic"
|
||||||
version = "0.1.0"
|
version = "0.1.1"
|
||||||
source = "git+https://github.com/romancardenas/riscv-slic.git?rev=2a91edb#2a91edbff50bcc73169549923d278ff953d0986e"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "c6e12f8155a8ba8ed8dae9d68c36becb651308416592e7b45a4769d5d545385b"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"critical-section",
|
"critical-section",
|
||||||
"heapless",
|
"heapless",
|
||||||
|
@ -255,7 +256,8 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "riscv-slic-macros"
|
name = "riscv-slic-macros"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
source = "git+https://github.com/romancardenas/riscv-slic.git?rev=2a91edb#2a91edbff50bcc73169549923d278ff953d0986e"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "d246759b5f1486fffb3153b5d74c964a53e88d2176dbc57c3c00aba5587a81a6"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"proc-macro2",
|
"proc-macro2",
|
||||||
"quote",
|
"quote",
|
||||||
|
@ -264,7 +266,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rtic"
|
name = "rtic"
|
||||||
version = "2.1.0"
|
version = "2.1.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"atomic-polyfill",
|
"atomic-polyfill",
|
||||||
"bare-metal",
|
"bare-metal",
|
||||||
|
|
|
@ -9,6 +9,7 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top!
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|
||||||
|
- Use `riscv-slic` from `crates.io`
|
||||||
- Remove unused dependency `rtic-monotonics`
|
- Remove unused dependency `rtic-monotonics`
|
||||||
|
|
||||||
## [v2.1.1] - 2024-03-13
|
## [v2.1.1] - 2024-03-13
|
||||||
|
|
|
@ -25,7 +25,7 @@ features = ["rtic-macros/test-template"]
|
||||||
name = "rtic"
|
name = "rtic"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
riscv-slic = { git = "https://github.com/romancardenas/riscv-slic.git", rev = "2a91edb", optional = true }
|
riscv-slic = { version = "0.1.1", optional = true }
|
||||||
esp32c3 = { version = "0.21.0", optional = true }
|
esp32c3 = { version = "0.21.0", optional = true }
|
||||||
riscv = { version = "0.11.0", optional = true }
|
riscv = { version = "0.11.0", optional = true }
|
||||||
cortex-m = { version = "0.7.0", optional = true }
|
cortex-m = { version = "0.7.0", optional = true }
|
||||||
|
|
Loading…
Reference in a new issue