|
@@ -2,6 +2,12 @@
|
|
|
# It is not intended for manual editing.
|
|
|
version = 3
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "autocfg"
|
|
|
+version = "1.3.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "critical-section"
|
|
|
version = "1.1.2"
|
|
@@ -14,12 +20,46 @@ version = "1.0.0"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "361a90feb7004eca4019fb28352a9465666b24f840f5c3cddf0ff13920590b89"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "lock_api"
|
|
|
+version = "0.4.12"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
|
|
|
+dependencies = [
|
|
|
+ "autocfg",
|
|
|
+ "scopeguard",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "log"
|
|
|
+version = "0.4.21"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "panic-halt"
|
|
|
version = "0.2.0"
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
checksum = "de96540e0ebde571dc55c73d60ef407c653844e6f9a1e2fdbd40c07b9252d812"
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "proc-macro2"
|
|
|
+version = "1.0.82"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "8ad3d49ab951a01fbaafe34f2ec74122942fe18a3f9814c3268f1bb72042131b"
|
|
|
+dependencies = [
|
|
|
+ "unicode-ident",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "quote"
|
|
|
+version = "1.0.36"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
|
|
|
+dependencies = [
|
|
|
+ "proc-macro2",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "riscv"
|
|
|
version = "0.11.1"
|
|
@@ -30,14 +70,81 @@ dependencies = [
|
|
|
"embedded-hal",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "rustsbi"
|
|
|
+version = "0.4.0-alpha.2"
|
|
|
+source = "git+https://github.com/rustsbi/rustsbi#2daec25b1bdcb8596ae01a25327eb9ce6fb4738f"
|
|
|
+dependencies = [
|
|
|
+ "riscv",
|
|
|
+ "rustsbi-macros",
|
|
|
+ "sbi-spec",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "rustsbi-macros"
|
|
|
+version = "0.0.1"
|
|
|
+source = "git+https://github.com/rustsbi/rustsbi#2daec25b1bdcb8596ae01a25327eb9ce6fb4738f"
|
|
|
+dependencies = [
|
|
|
+ "proc-macro2",
|
|
|
+ "quote",
|
|
|
+ "syn",
|
|
|
+]
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "rustsbi-prototyper"
|
|
|
version = "0.0.0"
|
|
|
dependencies = [
|
|
|
+ "log",
|
|
|
"panic-halt",
|
|
|
"riscv",
|
|
|
+ "rustsbi",
|
|
|
+ "spin",
|
|
|
+ "uart16550",
|
|
|
]
|
|
|
|
|
|
+[[package]]
|
|
|
+name = "sbi-spec"
|
|
|
+version = "0.0.7"
|
|
|
+source = "git+https://github.com/rustsbi/rustsbi#2daec25b1bdcb8596ae01a25327eb9ce6fb4738f"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "scopeguard"
|
|
|
+version = "1.2.0"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "spin"
|
|
|
+version = "0.9.8"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
|
|
+dependencies = [
|
|
|
+ "lock_api",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "syn"
|
|
|
+version = "2.0.61"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "c993ed8ccba56ae856363b1845da7266a7cb78e1d146c8a32d54b45a8b831fc9"
|
|
|
+dependencies = [
|
|
|
+ "proc-macro2",
|
|
|
+ "quote",
|
|
|
+ "unicode-ident",
|
|
|
+]
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "uart16550"
|
|
|
+version = "0.0.1"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "939f6f9ccad815fe3efca8fd06f2ec1620c0387fb1bca2b231b61ce710bffb9b"
|
|
|
+
|
|
|
+[[package]]
|
|
|
+name = "unicode-ident"
|
|
|
+version = "1.0.12"
|
|
|
+source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
+checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
|
|
+
|
|
|
[[package]]
|
|
|
name = "xtask"
|
|
|
version = "0.1.0"
|