diff --git a/examples/hifive1/Cargo.lock b/examples/hifive1/Cargo.lock index 7cd694c719..6fcc78644c 100644 --- a/examples/hifive1/Cargo.lock +++ b/examples/hifive1/Cargo.lock @@ -243,8 +243,9 @@ dependencies = [ [[package]] name = "riscv-slic" -version = "0.1.0" -source = "git+https://github.com/romancardenas/riscv-slic.git?rev=2a91edb#2a91edbff50bcc73169549923d278ff953d0986e" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c6e12f8155a8ba8ed8dae9d68c36becb651308416592e7b45a4769d5d545385b" dependencies = [ "critical-section", "heapless", @@ -255,7 +256,8 @@ dependencies = [ [[package]] name = "riscv-slic-macros" 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 = [ "proc-macro2", "quote", @@ -264,7 +266,7 @@ dependencies = [ [[package]] name = "rtic" -version = "2.1.0" +version = "2.1.1" dependencies = [ "atomic-polyfill", "bare-metal", diff --git a/rtic/CHANGELOG.md b/rtic/CHANGELOG.md index bca258f185..853c3ab335 100644 --- a/rtic/CHANGELOG.md +++ b/rtic/CHANGELOG.md @@ -9,6 +9,7 @@ For each category, *Added*, *Changed*, *Fixed* add new entries at the top! ### Changed +- Use `riscv-slic` from `crates.io` - Remove unused dependency `rtic-monotonics` ## [v2.1.1] - 2024-03-13 diff --git a/rtic/Cargo.toml b/rtic/Cargo.toml index e58acb1305..d4b56568d0 100644 --- a/rtic/Cargo.toml +++ b/rtic/Cargo.toml @@ -25,7 +25,7 @@ features = ["rtic-macros/test-template"] name = "rtic" [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 } riscv = { version = "0.11.0", optional = true } cortex-m = { version = "0.7.0", optional = true }