2021-09-22 11:42:00 +03:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
|
|
|
version = 3
|
|
|
|
|
2021-10-08 22:33:10 +03:00
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
|
|
|
version = "1.0.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
|
|
|
|
|
2021-10-18 10:57:56 +03:00
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
|
|
|
version = "1.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
|
|
2021-09-23 13:43:43 +03:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
|
|
2021-09-22 11:42:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "cortex-a"
|
|
|
|
version = "6.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "509fc35485a2b4ddbacabe0bf2212cdfff88da93658608e5cc651afcb75b7733"
|
|
|
|
dependencies = [
|
|
|
|
"tock-registers",
|
|
|
|
]
|
|
|
|
|
2021-10-08 22:33:10 +03:00
|
|
|
[[package]]
|
|
|
|
name = "endian-type-rs"
|
|
|
|
version = "0.1.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b6419a5c75e40011b9fe0174db3fe24006ab122fbe1b7e9cc5974b338a755c76"
|
|
|
|
|
2021-11-21 12:26:11 +02:00
|
|
|
[[package]]
|
|
|
|
name = "enum-repr"
|
|
|
|
version = "0.2.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "bad30c9c0fa1aaf1ae5010dab11f1117b15d35faf62cda4bbbc53b9987950f18"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2021-10-08 22:33:10 +03:00
|
|
|
[[package]]
|
|
|
|
name = "fallible-iterator"
|
|
|
|
version = "0.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
|
|
|
|
|
2021-10-29 11:31:05 +03:00
|
|
|
[[package]]
|
|
|
|
name = "fat32"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2021-11-11 22:19:21 +02:00
|
|
|
"fs-macros",
|
|
|
|
"libsys",
|
2021-10-29 11:31:05 +03:00
|
|
|
"vfs",
|
|
|
|
]
|
|
|
|
|
2021-10-08 22:33:10 +03:00
|
|
|
[[package]]
|
|
|
|
name = "fdt-rs"
|
|
|
|
version = "0.4.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "99a40cabc11c8258822a593f5c51f2d9f4923e715ca9e2a0630cf77ae15f390b"
|
|
|
|
dependencies = [
|
|
|
|
"endian-type-rs",
|
|
|
|
"fallible-iterator",
|
|
|
|
"memoffset",
|
|
|
|
"num-derive",
|
|
|
|
"num-traits",
|
|
|
|
"rustc_version",
|
|
|
|
"static_assertions",
|
|
|
|
"unsafe_unwrap",
|
|
|
|
]
|
|
|
|
|
2021-11-11 22:08:55 +02:00
|
|
|
[[package]]
|
|
|
|
name = "fs-macros"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
2021-09-22 11:42:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "kernel"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2021-10-18 10:57:56 +03:00
|
|
|
"bitflags",
|
2021-09-23 13:43:43 +03:00
|
|
|
"cfg-if",
|
2021-09-22 11:42:00 +03:00
|
|
|
"cortex-a",
|
2021-10-08 22:33:10 +03:00
|
|
|
"fdt-rs",
|
2021-11-11 22:09:55 +02:00
|
|
|
"kernel-macros",
|
2021-11-11 20:45:54 +02:00
|
|
|
"libsys",
|
2021-10-25 16:41:30 +03:00
|
|
|
"memfs",
|
2021-09-24 10:31:10 +03:00
|
|
|
"tock-registers",
|
2021-10-25 16:41:30 +03:00
|
|
|
"vfs",
|
2021-09-22 11:42:00 +03:00
|
|
|
]
|
|
|
|
|
2021-11-11 20:45:54 +02:00
|
|
|
[[package]]
|
2021-11-11 22:09:55 +02:00
|
|
|
name = "kernel-macros"
|
2021-11-11 20:45:54 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2021-11-11 22:09:55 +02:00
|
|
|
"quote",
|
|
|
|
"syn",
|
2021-11-11 20:45:54 +02:00
|
|
|
]
|
|
|
|
|
2021-11-16 14:34:14 +02:00
|
|
|
[[package]]
|
|
|
|
name = "lazy_static"
|
|
|
|
version = "1.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
|
dependencies = [
|
|
|
|
"spin",
|
|
|
|
]
|
|
|
|
|
2021-10-21 12:16:24 +03:00
|
|
|
[[package]]
|
2021-11-11 22:09:55 +02:00
|
|
|
name = "libsys"
|
2021-10-21 12:16:24 +03:00
|
|
|
version = "0.1.0"
|
2021-11-02 16:14:53 +02:00
|
|
|
dependencies = [
|
2021-11-11 22:09:55 +02:00
|
|
|
"bitflags",
|
2021-11-21 12:26:11 +02:00
|
|
|
"enum-repr",
|
2021-11-02 16:14:53 +02:00
|
|
|
]
|
2021-10-21 12:16:24 +03:00
|
|
|
|
2021-11-11 21:15:12 +02:00
|
|
|
[[package]]
|
2021-11-11 22:09:55 +02:00
|
|
|
name = "libusr"
|
2021-11-11 21:15:12 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2021-11-16 14:34:14 +02:00
|
|
|
"lazy_static",
|
2021-11-11 22:09:55 +02:00
|
|
|
"libsys",
|
2021-11-11 21:15:12 +02:00
|
|
|
]
|
|
|
|
|
2021-10-25 16:41:30 +03:00
|
|
|
[[package]]
|
|
|
|
name = "memfs"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2021-11-11 22:19:21 +02:00
|
|
|
"fs-macros",
|
2021-11-11 20:45:54 +02:00
|
|
|
"libsys",
|
2021-10-25 16:41:30 +03:00
|
|
|
"vfs",
|
|
|
|
]
|
|
|
|
|
2021-10-08 22:33:10 +03:00
|
|
|
[[package]]
|
|
|
|
name = "memoffset"
|
|
|
|
version = "0.5.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "043175f069eda7b85febe4a74abbaeff828d9f8b448515d3151a14a3542811aa"
|
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "num-derive"
|
|
|
|
version = "0.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "num-traits"
|
|
|
|
version = "0.2.14"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
|
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
|
|
|
|
2021-09-22 11:42:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "osdev5"
|
|
|
|
version = "0.1.0"
|
|
|
|
|
2021-10-08 22:33:10 +03:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2021-11-11 21:15:12 +02:00
|
|
|
version = "1.0.32"
|
2021-10-08 22:33:10 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-11 21:15:12 +02:00
|
|
|
checksum = "ba508cc11742c0dc5c1659771673afbab7a0efab23aa17e854cbab0837ed0b43"
|
2021-10-08 22:33:10 +03:00
|
|
|
dependencies = [
|
|
|
|
"unicode-xid",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "quote"
|
|
|
|
version = "1.0.10"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rustc_version"
|
|
|
|
version = "0.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
|
|
|
|
dependencies = [
|
|
|
|
"semver",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "semver"
|
|
|
|
version = "0.9.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
|
|
|
|
dependencies = [
|
|
|
|
"semver-parser",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "semver-parser"
|
|
|
|
version = "0.7.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
|
|
|
|
|
2021-11-16 14:34:14 +02:00
|
|
|
[[package]]
|
|
|
|
name = "spin"
|
|
|
|
version = "0.5.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
|
|
|
|
2021-10-08 22:33:10 +03:00
|
|
|
[[package]]
|
|
|
|
name = "static_assertions"
|
|
|
|
version = "1.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2021-11-11 21:15:12 +02:00
|
|
|
version = "1.0.81"
|
2021-10-08 22:33:10 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-11 21:15:12 +02:00
|
|
|
checksum = "f2afee18b8beb5a596ecb4a2dce128c719b4ba399d34126b9e4396e3f9860966"
|
2021-10-08 22:33:10 +03:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"unicode-xid",
|
|
|
|
]
|
|
|
|
|
2021-09-22 11:42:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tock-registers"
|
|
|
|
version = "0.7.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4ee8fba06c1f4d0b396ef61a54530bb6b28f0dc61c38bc8bc5a5a48161e6282e"
|
2021-10-08 22:33:10 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-xid"
|
|
|
|
version = "0.2.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unsafe_unwrap"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1230ec65f13e0f9b28d789da20d2d419511893ea9dac2c1f4ef67b8b14e5da80"
|
2021-10-23 17:35:50 +03:00
|
|
|
|
2021-11-05 15:24:10 +02:00
|
|
|
[[package]]
|
|
|
|
name = "user"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2021-11-17 13:05:51 +02:00
|
|
|
"lazy_static",
|
2021-11-28 11:46:55 +02:00
|
|
|
"libsys",
|
2021-11-05 15:24:10 +02:00
|
|
|
"libusr",
|
|
|
|
]
|
|
|
|
|
2021-10-23 17:35:50 +03:00
|
|
|
[[package]]
|
|
|
|
name = "vfs"
|
|
|
|
version = "0.1.0"
|
|
|
|
dependencies = [
|
2021-11-11 22:08:55 +02:00
|
|
|
"fs-macros",
|
2021-11-11 20:45:54 +02:00
|
|
|
"libsys",
|
2021-10-23 17:35:50 +03:00
|
|
|
]
|