pounder_test/Cargo.lock

451 lines
20 KiB
Plaintext
Raw Normal View History

2019-03-18 19:56:26 +08:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
[[package]]
name = "aligned"
version = "0.3.1"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"as-slice 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "as-slice"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2019-07-16 00:00:55 +08:00
"generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)",
"stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
2019-03-18 19:56:26 +08:00
2019-10-22 21:45:56 +08:00
[[package]]
name = "autocfg"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-03-18 19:56:26 +08:00
[[package]]
name = "bare-metal"
2019-09-11 23:04:45 +08:00
version = "0.2.5"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "bitflags"
2019-10-22 21:45:56 +08:00
version = "1.2.1"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "byteorder"
2019-07-16 00:00:55 +08:00
version = "1.3.2"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "cfg-if"
2019-10-13 20:34:54 +08:00
version = "0.1.10"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "cortex-m"
version = "0.6.1"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"aligned 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
2019-09-11 23:04:45 +08:00
"bare-metal 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
"volatile-register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "cortex-m-log"
version = "0.6.1"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cortex-m 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
2019-09-11 23:04:45 +08:00
"cortex-m-semihosting 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
2019-07-29 16:32:49 +08:00
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "cortex-m-rt"
2019-07-29 16:32:49 +08:00
version = "0.6.10"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cortex-m-rt-macros 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)",
"r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "cortex-m-rt-macros"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
2019-07-16 00:00:55 +08:00
"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
"rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)",
2019-09-11 23:04:45 +08:00
"syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
]
2019-05-31 00:03:48 +08:00
[[package]]
name = "cortex-m-rtfm"
version = "0.5.0"
source = "git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0#6b0a2df41c024fa8e7da07f3b42a80f19840432e"
2019-05-31 00:03:48 +08:00
dependencies = [
2019-08-26 21:47:42 +08:00
"cortex-m 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
2019-07-29 16:32:49 +08:00
"cortex-m-rt 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-m-rtfm-macros 0.5.0 (git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0)",
"heapless 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
"rtfm-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
2019-05-31 00:03:48 +08:00
]
[[package]]
name = "cortex-m-rtfm-macros"
version = "0.5.0"
source = "git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0#6b0a2df41c024fa8e7da07f3b42a80f19840432e"
2019-05-31 00:03:48 +08:00
dependencies = [
2019-10-22 21:45:56 +08:00
"proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
2019-08-26 21:47:42 +08:00
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"rtfm-syntax 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)",
2019-08-26 21:47:42 +08:00
"syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
2019-05-31 00:03:48 +08:00
]
2019-03-18 19:56:26 +08:00
[[package]]
name = "cortex-m-semihosting"
2019-09-11 23:04:45 +08:00
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"cortex-m 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
2019-03-18 19:56:26 +08:00
[[package]]
2019-05-24 00:57:00 +08:00
name = "generic-array"
2019-07-16 00:00:55 +08:00
version = "0.12.3"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2019-09-11 23:04:45 +08:00
"typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
]
2019-05-31 00:03:48 +08:00
[[package]]
name = "generic-array"
2019-07-16 00:00:55 +08:00
version = "0.13.2"
2019-05-31 00:03:48 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2019-09-11 23:04:45 +08:00
"typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)",
2019-05-31 00:03:48 +08:00
]
2019-03-18 19:56:26 +08:00
[[package]]
2019-05-24 00:57:00 +08:00
name = "hash32"
version = "0.1.0"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2019-07-16 00:00:55 +08:00
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
]
2019-05-31 00:03:48 +08:00
[[package]]
name = "heapless"
version = "0.5.1"
2019-05-31 00:03:48 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"as-slice 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
2019-07-16 00:00:55 +08:00
"generic-array 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)",
2019-05-31 00:03:48 +08:00
"hash32 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
2019-08-26 21:47:42 +08:00
[[package]]
name = "indexmap"
2019-10-22 21:45:56 +08:00
version = "1.3.0"
2019-08-26 21:47:42 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-10-22 21:45:56 +08:00
dependencies = [
"autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)",
]
2019-08-26 21:47:42 +08:00
2019-03-18 19:56:26 +08:00
[[package]]
name = "log"
2019-07-29 16:32:49 +08:00
version = "0.4.8"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2019-10-13 20:34:54 +08:00
"cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "managed"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-10-22 21:43:49 +08:00
[[package]]
name = "panic-halt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-03-18 19:56:26 +08:00
[[package]]
name = "panic-semihosting"
version = "0.5.3"
2019-04-28 19:37:14 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-03-18 19:56:26 +08:00
dependencies = [
"cortex-m 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
2019-09-11 23:04:45 +08:00
"cortex-m-semihosting 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "proc-macro2"
version = "0.4.30"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
2019-08-26 21:47:42 +08:00
[[package]]
name = "proc-macro2"
2019-10-22 21:45:56 +08:00
version = "1.0.6"
2019-08-26 21:47:42 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
2019-03-18 19:56:26 +08:00
[[package]]
name = "quote"
2019-07-16 00:00:55 +08:00
version = "0.6.13"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
]
2019-08-26 21:47:42 +08:00
[[package]]
name = "quote"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2019-10-22 21:45:56 +08:00
"proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
2019-08-26 21:47:42 +08:00
]
2019-03-18 19:56:26 +08:00
[[package]]
name = "r0"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "rand"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "rand_core"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2019-09-11 23:04:45 +08:00
"rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "rand_core"
2019-09-11 23:04:45 +08:00
version = "0.4.2"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-08-26 21:47:42 +08:00
[[package]]
name = "rtfm-core"
version = "0.3.0"
2019-10-13 20:31:12 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-08-26 21:47:42 +08:00
[[package]]
name = "rtfm-syntax"
version = "0.4.0"
2019-10-13 20:31:12 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-08-26 21:47:42 +08:00
dependencies = [
2019-10-22 21:45:56 +08:00
"indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)",
"proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
2019-08-26 21:47:42 +08:00
"syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
]
2019-03-18 19:56:26 +08:00
[[package]]
name = "rustc_version"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "serde"
version = "1.0.102"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-05-24 00:57:00 +08:00
dependencies = [
2019-10-13 20:34:54 +08:00
"serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)",
2019-05-24 00:57:00 +08:00
]
2019-03-18 19:56:26 +08:00
[[package]]
2019-05-24 00:57:00 +08:00
name = "serde-json-core"
version = "0.0.1"
2019-11-14 23:11:47 +08:00
source = "git+https://github.com/quartiq/serde-json-core.git?rev=86d9abf#86d9abf904b668e4b4e7d4c7f2f137699f4d3802"
2019-05-24 00:57:00 +08:00
dependencies = [
"heapless 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
2019-05-24 00:57:00 +08:00
]
[[package]]
name = "serde_derive"
2019-10-13 20:34:54 +08:00
version = "1.0.101"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-05-24 00:57:00 +08:00
dependencies = [
2019-10-22 21:45:56 +08:00
"proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
2019-09-11 23:04:45 +08:00
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)",
2019-05-24 00:57:00 +08:00
]
2019-03-18 19:56:26 +08:00
[[package]]
name = "smoltcp"
version = "0.5.0"
2019-11-14 23:11:47 +08:00
source = "git+https://github.com/m-labs/smoltcp.git?rev=8eb01ac#8eb01aca364aefe5f823d68d552d62c76c9be4a3"
2019-03-18 19:56:26 +08:00
dependencies = [
2019-10-22 21:45:56 +08:00
"bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
2019-07-16 00:00:55 +08:00
"byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
"managed 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "stabilizer"
2019-05-28 19:22:17 +08:00
version = "0.2.0"
2019-03-18 19:56:26 +08:00
dependencies = [
"cortex-m 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-m-log 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
2019-07-29 16:32:49 +08:00
"cortex-m-rt 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-m-rtfm 0.5.0 (git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0)",
"heapless 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)",
2019-07-29 16:32:49 +08:00
"log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)",
2019-10-22 21:43:49 +08:00
"panic-halt 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
"panic-semihosting 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)",
"serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)",
2019-11-14 23:11:47 +08:00
"serde-json-core 0.0.1 (git+https://github.com/quartiq/serde-json-core.git?rev=86d9abf)",
"smoltcp 0.5.0 (git+https://github.com/m-labs/smoltcp.git?rev=8eb01ac)",
"stm32h7 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "stable_deref_trait"
version = "1.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-03-18 19:56:26 +08:00
[[package]]
name = "stm32h7"
version = "0.9.0"
2019-07-29 16:32:49 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-03-18 19:56:26 +08:00
dependencies = [
2019-09-11 23:04:45 +08:00
"bare-metal 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)",
"cortex-m 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)",
2019-07-29 16:32:49 +08:00
"cortex-m-rt 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)",
2019-09-11 23:04:45 +08:00
"vcell 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "syn"
2019-09-11 23:04:45 +08:00
version = "0.15.44"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
"proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)",
2019-07-16 00:00:55 +08:00
"quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
"unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
2019-08-26 21:47:42 +08:00
[[package]]
name = "syn"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2019-10-22 21:45:56 +08:00
"proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)",
2019-08-26 21:47:42 +08:00
"quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)",
"unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
[[package]]
name = "typenum"
2019-09-11 23:04:45 +08:00
version = "1.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-03-18 19:56:26 +08:00
[[package]]
name = "unicode-xid"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-08-26 21:47:42 +08:00
[[package]]
name = "unicode-xid"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2019-03-18 19:56:26 +08:00
[[package]]
name = "vcell"
2019-09-11 23:04:45 +08:00
version = "0.1.2"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
[[package]]
name = "volatile-register"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
dependencies = [
2019-09-11 23:04:45 +08:00
"vcell 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)",
2019-03-18 19:56:26 +08:00
]
[metadata]
"checksum aligned 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "d3a316c7ea8e1e9ece54862c992def5a7ac14de9f5832b69d71760680efeeefa"
"checksum as-slice 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "293dac66b274fab06f95e7efb05ec439a6b70136081ea522d270bc351ae5bb27"
2019-10-22 21:45:56 +08:00
"checksum autocfg 0.1.7 (registry+https://github.com/rust-lang/crates.io-index)" = "1d49d90015b3c36167a20fe2810c5cd875ad504b39cff3d4eae7977e6b7c1cb2"
2019-09-11 23:04:45 +08:00
"checksum bare-metal 0.2.5 (registry+https://github.com/rust-lang/crates.io-index)" = "5deb64efa5bd81e31fcd1938615a6d98c82eafcbcd787162b6f63b91d6bac5b3"
2019-10-22 21:45:56 +08:00
"checksum bitflags 1.2.1 (registry+https://github.com/rust-lang/crates.io-index)" = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2019-07-16 00:00:55 +08:00
"checksum byteorder 1.3.2 (registry+https://github.com/rust-lang/crates.io-index)" = "a7c3dd8985a7111efc5c80b44e23ecdd8c007de8ade3b96595387e812b957cf5"
2019-10-13 20:34:54 +08:00
"checksum cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)" = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
"checksum cortex-m 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "145da2fc379bbd378ed425e75e1748214add9bbd800d4d5b77abb54ca423dbca"
"checksum cortex-m-log 0.6.1 (registry+https://github.com/rust-lang/crates.io-index)" = "978caafe65d1023d38b00c76b83564788fc351d954a5005fb72cf992c0d61458"
2019-07-29 16:32:49 +08:00
"checksum cortex-m-rt 0.6.10 (registry+https://github.com/rust-lang/crates.io-index)" = "17805910e3ecf029bdbfcc42b7384d9e3d9e5626153fa810002c1ef9839338ac"
2019-03-18 19:56:26 +08:00
"checksum cortex-m-rt-macros 0.1.5 (registry+https://github.com/rust-lang/crates.io-index)" = "d7ae692573e0acccb1579fef1abf5a5bf1d2f3f0149a22b16870ec9309aee25f"
"checksum cortex-m-rtfm 0.5.0 (git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0)" = "<none>"
"checksum cortex-m-rtfm-macros 0.5.0 (git+https://github.com/rtfm-rs/cortex-m-rtfm?rev=v0.5.0)" = "<none>"
2019-09-11 23:04:45 +08:00
"checksum cortex-m-semihosting 0.3.5 (registry+https://github.com/rust-lang/crates.io-index)" = "113ef0ecffee2b62b58f9380f4469099b30e9f9cbee2804771b4203ba1762cfa"
2019-07-16 00:00:55 +08:00
"checksum generic-array 0.12.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
"checksum generic-array 0.13.2 (registry+https://github.com/rust-lang/crates.io-index)" = "0ed1e761351b56f54eb9dcd0cfaca9fd0daecf93918e1cfc01c8a3d26ee7adcd"
2019-05-24 00:57:00 +08:00
"checksum hash32 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "12d790435639c06a7b798af9e1e331ae245b7ef915b92f70a39b4cf8c00686af"
"checksum heapless 0.5.1 (registry+https://github.com/rust-lang/crates.io-index)" = "f339aa7d51777fc0af6aa7cbeb277dfc6e6c029cbdeda48d0fbb92c2337f0e69"
2019-10-22 21:45:56 +08:00
"checksum indexmap 1.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "712d7b3ea5827fcb9d4fda14bf4da5f136f0db2ae9c8f4bd4e2d1c6fde4e6db2"
2019-07-29 16:32:49 +08:00
"checksum log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)" = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
2019-03-18 19:56:26 +08:00
"checksum managed 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)" = "fdcec5e97041c7f0f1c5b7d93f12e57293c831c646f4cc7a5db59460c7ea8de6"
2019-10-22 21:43:49 +08:00
"checksum panic-halt 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "de96540e0ebde571dc55c73d60ef407c653844e6f9a1e2fdbd40c07b9252d812"
"checksum panic-semihosting 0.5.3 (registry+https://github.com/rust-lang/crates.io-index)" = "c03864ac862876c16a308f5286f4aa217f1a69ac45df87ad3cd2847f818a642c"
"checksum proc-macro2 0.4.30 (registry+https://github.com/rust-lang/crates.io-index)" = "cf3d2011ab5c909338f7887f4fc896d35932e29146c12c8d01da6b22a80ba759"
2019-10-22 21:45:56 +08:00
"checksum proc-macro2 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)" = "9c9e470a8dc4aeae2dee2f335e8f533e2d4b347e1434e5671afc49b054592f27"
2019-07-16 00:00:55 +08:00
"checksum quote 0.6.13 (registry+https://github.com/rust-lang/crates.io-index)" = "6ce23b6b870e8f94f81fb0a363d65d86675884b34a09043c81e5562f11c1f8e1"
2019-08-26 21:47:42 +08:00
"checksum quote 1.0.2 (registry+https://github.com/rust-lang/crates.io-index)" = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
2019-03-18 19:56:26 +08:00
"checksum r0 0.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f"
"checksum rand 0.5.6 (registry+https://github.com/rust-lang/crates.io-index)" = "c618c47cd3ebd209790115ab837de41425723956ad3ce2e6a7f09890947cacb9"
"checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b"
2019-09-11 23:04:45 +08:00
"checksum rand_core 0.4.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9c33a3c44ca05fa6f1807d8e6743f3824e8509beca625669633be0acbdf509dc"
"checksum rtfm-core 0.3.0 (registry+https://github.com/rust-lang/crates.io-index)" = "9ec893edb2aa5b70320b94896ffea22a7ebb1cf3f942bb67cd5b60a865a63493"
"checksum rtfm-syntax 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "4455e23c34df3d66454e7e218a4d76a7f83321d04a806be614463341cec4116e"
2019-03-18 19:56:26 +08:00
"checksum rustc_version 0.2.3 (registry+https://github.com/rust-lang/crates.io-index)" = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
"checksum semver 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
"checksum semver-parser 0.7.0 (registry+https://github.com/rust-lang/crates.io-index)" = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
"checksum serde 1.0.102 (registry+https://github.com/rust-lang/crates.io-index)" = "0c4b39bd9b0b087684013a792c59e3e07a46a01d2322518d8a1104641a0b1be0"
2019-11-14 23:11:47 +08:00
"checksum serde-json-core 0.0.1 (git+https://github.com/quartiq/serde-json-core.git?rev=86d9abf)" = "<none>"
2019-10-13 20:34:54 +08:00
"checksum serde_derive 1.0.101 (registry+https://github.com/rust-lang/crates.io-index)" = "4b133a43a1ecd55d4086bd5b4dc6c1751c68b1bfbeba7a5040442022c7e7c02e"
2019-11-14 23:11:47 +08:00
"checksum smoltcp 0.5.0 (git+https://github.com/m-labs/smoltcp.git?rev=8eb01ac)" = "<none>"
"checksum stable_deref_trait 1.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
"checksum stm32h7 0.9.0 (registry+https://github.com/rust-lang/crates.io-index)" = "6fd678579307324f1890552fe644331ce0a46607f2466aac8609f782d9b26524"
2019-09-11 23:04:45 +08:00
"checksum syn 0.15.44 (registry+https://github.com/rust-lang/crates.io-index)" = "9ca4b3b69a77cbe1ffc9e198781b7acb0c7365a883670e8f1c1bc66fba79a5c5"
2019-08-26 21:47:42 +08:00
"checksum syn 1.0.5 (registry+https://github.com/rust-lang/crates.io-index)" = "66850e97125af79138385e9b88339cbcd037e3f28ceab8c5ad98e64f0f1f80bf"
2019-09-11 23:04:45 +08:00
"checksum typenum 1.11.2 (registry+https://github.com/rust-lang/crates.io-index)" = "6d2783fe2d6b8c1101136184eb41be8b1ad379e4657050b8aaff0c79ee7575f9"
2019-03-18 19:56:26 +08:00
"checksum unicode-xid 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fc72304796d0818e357ead4e000d19c9c174ab23dc11093ac919054d20a6a7fc"
2019-08-26 21:47:42 +08:00
"checksum unicode-xid 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
2019-09-11 23:04:45 +08:00
"checksum vcell 0.1.2 (registry+https://github.com/rust-lang/crates.io-index)" = "876e32dcadfe563a4289e994f7cb391197f362b6315dc45e8ba4aa6f564a4b3c"
2019-03-18 19:56:26 +08:00
"checksum volatile-register 0.2.0 (registry+https://github.com/rust-lang/crates.io-index)" = "0d67cb4616d99b940db1d6bd28844ff97108b498a6ca850e5b6191a532063286"