aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRomán Cárdenas Rodríguez <rcardenas.rod@gmail.com>2024-04-17 11:12:16 +0200
committerGitHub <noreply@github.com>2024-04-17 09:12:16 +0000
commitacb9f446425a3bf6b00e542770bdbfd3c0bfe53e (patch)
tree63940d15279a4be63f3eeb6c8e1ad9244229d455
parenta3f40f2f9371c6209d26554bf439bb305b00a4b7 (diff)
Use riscv-slic form crates.io (#919)
* use riscv-slic form crates.io * address comments
-rw-r--r--examples/hifive1/Cargo.lock10
-rw-r--r--rtic/CHANGELOG.md1
-rw-r--r--rtic/Cargo.toml2
3 files changed, 8 insertions, 5 deletions
diff --git a/examples/hifive1/Cargo.lock b/examples/hifive1/Cargo.lock
index 7cd694c..6fcc786 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 bca258f..853c3ab 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 e58acb1..d4b5656 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 }