pounder_test/Cargo.lock

566 lines
14 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.
2020-06-09 00:20:10 +08:00
[[package]]
name = "ad9959"
version = "0.1.0"
dependencies = [
"bit_field",
"embedded-hal",
]
2019-03-18 19:56:26 +08:00
[[package]]
name = "aligned"
2019-12-10 21:12:01 +08:00
version = "0.3.2"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "eb1ce8b3382016136ab1d31a1b5ce807144f8b7eb2d5f16b2108f0f07edceb94"
dependencies = [
2020-06-08 15:36:28 +08:00
"as-slice",
]
[[package]]
name = "as-slice"
2020-03-12 21:53:57 +08:00
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "37dfb65bc03b2bc85ee827004f14a6817e04160e3b1a28931986a666a9290e70"
dependencies = [
2020-06-08 15:36:28 +08:00
"generic-array 0.12.3",
"generic-array 0.13.2",
"stable_deref_trait",
]
2019-03-18 19:56:26 +08:00
[[package]]
name = "asm-delay"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8b7c70ec6ea4def14d530d75900bbf8909ed49dafeb1448c3ee7122543964f6"
dependencies = [
2020-06-08 15:36:28 +08:00
"bitrate",
"cortex-m",
"embedded-hal",
]
2019-10-22 21:45:56 +08:00
[[package]]
name = "autocfg"
2020-01-21 19:41:38 +08:00
version = "1.0.0"
2019-10-22 21:45:56 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "f8aac770f1885fd7e387acedd76065302551364496e46b3dd00860b2f8359b9d"
2019-10-22 21:45:56 +08:00
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"
2020-06-08 15:36:28 +08:00
checksum = "5deb64efa5bd81e31fcd1938615a6d98c82eafcbcd787162b6f63b91d6bac5b3"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"rustc_version",
2019-03-18 19:56:26 +08:00
]
2020-06-09 00:20:10 +08:00
[[package]]
name = "bit_field"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a165d606cf084741d4ac3a28fb6e9b1eb0bd31f6cd999098cfddb0b2ab381dc0"
2019-03-18 19:56:26 +08:00
[[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"
2020-06-08 15:36:28 +08:00
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
2019-03-18 19:56:26 +08:00
[[package]]
name = "bitrate"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "c147d86912d04bef727828fda769a76ca81629a46d8ba311a8d58a26aa91473d"
2019-03-18 19:56:26 +08:00
[[package]]
name = "byteorder"
2020-03-12 21:53:57 +08:00
version = "1.3.4"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
2019-03-18 19:56:26 +08:00
2020-04-19 19:37:03 +08:00
[[package]]
name = "cast"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "4b9434b9a5aa1450faa3f9cb14ea0e8c53bb5d2b3c1bfd1ab4fc03e9f33fbfb0"
2020-04-19 19:37:03 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"rustc_version",
2020-04-19 19:37:03 +08:00
]
2019-03-18 19:56:26 +08:00
[[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"
2020-06-08 15:36:28 +08:00
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2019-03-18 19:56:26 +08:00
[[package]]
name = "cortex-m"
2020-01-21 19:41:38 +08:00
version = "0.6.2"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "2954942fbbdd49996704e6f048ce57567c3e1a4e2dc59b41ae9fde06a01fc763"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"aligned",
"bare-metal",
"volatile-register",
2019-03-18 19:56:26 +08:00
]
[[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"
2020-06-08 15:36:28 +08:00
checksum = "978caafe65d1023d38b00c76b83564788fc351d954a5005fb72cf992c0d61458"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"cortex-m",
"cortex-m-semihosting",
"log",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "cortex-m-rt"
version = "0.6.12"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "00d518da72bba39496024b62607c1d8e37bcece44b2536664f1132a73a499a28"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"cortex-m-rt-macros",
"r0",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "cortex-m-rt-macros"
version = "0.1.8"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "4717562afbba06e760d34451919f5c3bf3ac15c7bb897e8b04862a7428378647"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"proc-macro2",
"quote",
"syn",
2019-03-18 19:56:26 +08:00
]
2019-05-31 00:03:48 +08:00
[[package]]
2020-06-17 18:20:45 +08:00
name = "cortex-m-rtic"
version = "0.5.3"
2019-11-19 19:26:08 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-17 18:20:45 +08:00
checksum = "04cd388b154c7e7d212c5af7541ee1f174f29ccb0c22e9117f8d13a5aad233b6"
2019-05-31 00:03:48 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"cortex-m",
"cortex-m-rt",
2020-06-17 18:20:45 +08:00
"cortex-m-rtic-macros",
2020-06-08 15:36:28 +08:00
"heapless",
2020-06-17 18:20:45 +08:00
"rtic-core",
"version_check",
2019-05-31 00:03:48 +08:00
]
[[package]]
2020-06-17 18:20:45 +08:00
name = "cortex-m-rtic-macros"
version = "0.5.0"
2019-11-19 19:26:08 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-17 18:20:45 +08:00
checksum = "29e29e01b3ec80d59bfd96aaf94d04008bebfde3ab7016e12bfbd6c0b466d22a"
2019-05-31 00:03:48 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"proc-macro2",
"quote",
2020-06-17 18:20:45 +08:00
"rtic-syntax",
2020-06-08 15:36:28 +08:00
"syn",
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"
2020-06-08 15:36:28 +08:00
checksum = "113ef0ecffee2b62b58f9380f4469099b30e9f9cbee2804771b4203ba1762cfa"
dependencies = [
2020-06-08 15:36:28 +08:00
"cortex-m",
]
2020-04-19 19:37:03 +08:00
[[package]]
name = "embedded-hal"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "ee4908a155094da7723c2d60d617b820061e3b4efcc3d9e293d206a5a76c170b"
2020-04-19 19:37:03 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"nb",
"void",
2020-04-19 19:37:03 +08:00
]
2020-06-03 23:36:43 +08:00
[[package]]
name = "enum-iterator"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "c79a6321a1197d7730510c7e3f6cb80432dfefecb32426de8cea0aa19b4bb8d7"
2020-06-03 23:36:43 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"enum-iterator-derive",
2020-06-03 23:36:43 +08:00
]
[[package]]
name = "enum-iterator-derive"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "1e94aa31f7c0dc764f57896dc615ddd76fc13b0d5dca7eb6cc5e018a5a09ec06"
2020-06-03 23:36:43 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"proc-macro2",
"quote",
"syn",
2020-06-03 23:36:43 +08:00
]
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"
2020-06-08 15:36:28 +08:00
checksum = "c68f0274ae0e023facc3c97b2e00f076be70e254bc851d972503b328db79b2ec"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"typenum",
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"
2020-06-08 15:36:28 +08:00
checksum = "0ed1e761351b56f54eb9dcd0cfaca9fd0daecf93918e1cfc01c8a3d26ee7adcd"
2019-05-31 00:03:48 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"typenum",
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.1"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "d4041af86e63ac4298ce40e5cca669066e75b6f1aa3390fe2561ffa5e1d9f4cc"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"byteorder",
2019-03-18 19:56:26 +08:00
]
2019-05-31 00:03:48 +08:00
[[package]]
name = "heapless"
version = "0.5.5"
2019-05-31 00:03:48 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "73a8a2391a3bc70b31f60e7a90daa5755a360559c0b6b9c5cfc0fee482362dc0"
2019-05-31 00:03:48 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"as-slice",
"generic-array 0.13.2",
"hash32",
2020-06-09 01:13:55 +08:00
"serde",
2020-06-08 15:36:28 +08:00
"stable_deref_trait",
2019-05-31 00:03:48 +08:00
]
2019-08-26 21:47:42 +08:00
[[package]]
name = "indexmap"
version = "1.4.0"
2019-08-26 21:47:42 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "c398b2b113b55809ceb9ee3e753fcbac793f1956663f3c36549c1346015c2afe"
2019-10-22 21:45:56 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"autocfg",
2019-10-22 21:45:56 +08:00
]
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"
2020-06-08 15:36:28 +08:00
checksum = "14b6052be84e6b71ab17edffc2eeabf5c2c3ae1fdb464aae35ac50c67a44e1f7"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"cfg-if",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "managed"
version = "0.7.2"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c75de51135344a4f8ed3cfe2720dc27736f7711989703a0b43aadf3753c55577"
2019-03-18 19:56:26 +08:00
[[package]]
name = "mcp23017"
version = "0.1.1"
2020-06-03 16:36:35 +08:00
source = "git+https://github.com/mrd0ll4r/mcp23017.git#a3d072754abca60a92ece820f7cfb767a0c11669"
dependencies = [
2020-06-08 15:36:28 +08:00
"embedded-hal",
]
2020-04-19 19:37:03 +08:00
[[package]]
name = "nb"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "b1411551beb3c11dedfb0a90a0fa256b47d28b9ec2cdff34c25a2fa59e45dbdc"
2020-04-19 19:37:03 +08:00
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"
2020-06-08 15:36:28 +08:00
checksum = "de96540e0ebde571dc55c73d60ef407c653844e6f9a1e2fdbd40c07b9252d812"
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"
2020-06-08 15:36:28 +08:00
checksum = "c03864ac862876c16a308f5286f4aa217f1a69ac45df87ad3cd2847f818a642c"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"cortex-m",
"cortex-m-semihosting",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "paste"
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "026c63fe245362be0322bfec5a9656d458d13f9cfb1785d1b38458b9968e8080"
dependencies = [
2020-06-08 15:36:28 +08:00
"paste-impl",
"proc-macro-hack",
]
[[package]]
name = "paste-impl"
version = "0.1.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b9281a268ec213237dcd2aa3c3d0f46681b04ced37c1616fd36567a9e6954b0"
dependencies = [
2020-06-08 15:36:28 +08:00
"proc-macro-hack",
]
[[package]]
name = "proc-macro-hack"
version = "0.5.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "7e0456befd48169b9f13ef0f0ad46d492cf9d2dbb918bcf38e01eed4ce3ec5e4"
2019-08-26 21:47:42 +08:00
[[package]]
name = "proc-macro2"
version = "1.0.18"
2019-08-26 21:47:42 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "beae6331a816b1f65d04c45b078fd8e6c93e8071771f41b8163255bbd8d7c8fa"
2019-08-26 21:47:42 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"unicode-xid",
2019-08-26 21:47:42 +08:00
]
[[package]]
name = "quote"
2020-06-08 15:36:28 +08:00
version = "1.0.7"
2019-08-26 21:47:42 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
2019-08-26 21:47:42 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"proc-macro2",
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"
2020-06-08 15:36:28 +08:00
checksum = "e2a38df5b15c8d5c7e8654189744d8e396bddc18ad48041a500ce52d6948941f"
2019-03-18 19:56:26 +08:00
2019-08-26 21:47:42 +08:00
[[package]]
2020-06-17 18:20:45 +08:00
name = "rtic-core"
version = "0.3.0"
2019-10-13 20:31:12 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-17 18:20:45 +08:00
checksum = "ab51fe832317e805f869b3d859f91aadf855c2c3da51f9b84bc645c201597158"
2019-08-26 21:47:42 +08:00
[[package]]
2020-06-17 18:20:45 +08:00
name = "rtic-syntax"
version = "0.4.0"
2019-10-13 20:31:12 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-17 18:20:45 +08:00
checksum = "8152fcaa845720d61e6cc570548b89144c2c307f18a480bbd97e55e9f6eeff04"
2019-08-26 21:47:42 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"indexmap",
"proc-macro2",
"syn",
2019-08-26 21:47:42 +08:00
]
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"
2020-06-08 15:36:28 +08:00
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"semver",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"semver-parser",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
2019-03-18 19:56:26 +08:00
[[package]]
name = "serde"
version = "1.0.112"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "736aac72d1eafe8e5962d1d1c3d99b0df526015ba40915cb3c49d042e92ec243"
2019-05-24 00:57:00 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"serde_derive",
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.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "cbf406405ada9ef326ca78677324ac66994ff348fc48a16030be08caeed29825"
2019-05-24 00:57:00 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"heapless",
"serde",
2019-05-24 00:57:00 +08:00
]
[[package]]
name = "serde_derive"
version = "1.0.112"
2019-03-18 19:56:26 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bf0343ce212ac0d3d6afd9391ac8e9c9efe06b533c8d33f660f6390cc4093f57"
2019-05-24 00:57:00 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"proc-macro2",
"quote",
"syn",
2019-05-24 00:57:00 +08:00
]
2019-03-18 19:56:26 +08:00
[[package]]
name = "smoltcp"
2020-01-21 19:36:47 +08:00
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "0fe46639fd2ec79eadf8fe719f237a7a0bd4dac5d957f1ca5bbdbc1c3c39e53a"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"bitflags",
"byteorder",
"log",
"managed",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "stabilizer"
2020-01-21 19:48:39 +08:00
version = "0.3.0"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-09 00:20:10 +08:00
"ad9959",
2020-06-08 15:36:28 +08:00
"asm-delay",
"cortex-m",
"cortex-m-log",
"cortex-m-rt",
2020-06-17 18:20:45 +08:00
"cortex-m-rtic",
2020-06-08 15:36:28 +08:00
"embedded-hal",
"enum-iterator",
"heapless",
"log",
"mcp23017",
"nb",
"panic-halt",
"panic-semihosting",
"serde",
"serde-json-core",
"smoltcp",
"stm32h7-ethernet",
"stm32h7xx-hal 0.5.0 (git+https://github.com/quartiq/stm32h7xx-hal.git?branch=feature/pounder-support)",
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"
2020-06-08 15:36:28 +08:00
checksum = "dba1a27d3efae4351c8051072d619e3ade2820635c3958d826bfea39d59b54c8"
2019-03-18 19:56:26 +08:00
[[package]]
name = "stm32h7"
version = "0.11.0"
2019-07-29 16:32:49 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "e9beb5e2a223c82f263c3051bba4614aebc6e98bd40217df3cd8817c83ac7bd8"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"bare-metal",
"cortex-m",
"cortex-m-rt",
"vcell",
2019-03-18 19:56:26 +08:00
]
[[package]]
name = "stm32h7-ethernet"
version = "0.1.1"
source = "git+https://github.com/quartiq/stm32h7-ethernet.git#cf9b8bb2e1b440d8ada6ac6048f48dc4ed9c269a"
dependencies = [
2020-06-08 15:36:28 +08:00
"cortex-m",
"log",
"smoltcp",
"stm32h7xx-hal 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)",
]
2020-04-19 19:37:03 +08:00
[[package]]
name = "stm32h7xx-hal"
version = "0.5.0"
source = "git+https://github.com/quartiq/stm32h7xx-hal.git?branch=feature/pounder-support#ff00e938f2b226211c178f26c092f36462c44404"
2020-04-19 19:37:03 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"bare-metal",
"cast",
"cortex-m",
"cortex-m-rt",
"embedded-hal",
"nb",
"paste",
"stm32h7",
"void",
2020-04-19 19:37:03 +08:00
]
[[package]]
name = "stm32h7xx-hal"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "987c66628f30012ed9a41cc738421c5caece03292c0cc8fd1e99956f122735bd"
dependencies = [
2020-06-08 15:36:28 +08:00
"bare-metal",
"cast",
"cortex-m",
"cortex-m-rt",
"embedded-hal",
"nb",
"paste",
"stm32h7",
"void",
]
2019-08-26 21:47:42 +08:00
[[package]]
name = "syn"
version = "1.0.31"
2019-08-26 21:47:42 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5304cfdf27365b7585c25d4af91b35016ed21ef88f17ced89c7093b43dba8b6"
2019-08-26 21:47:42 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"proc-macro2",
"quote",
"unicode-xid",
2019-08-26 21:47:42 +08:00
]
[[package]]
name = "typenum"
2020-04-19 19:37:03 +08:00
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "373c8a200f9e67a0c95e62a4f52fbf80c23b4381c05a17845531982fa99e6b33"
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"
2020-06-08 15:36:28 +08:00
checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
2019-08-26 21:47:42 +08:00
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"
2020-06-08 15:36:28 +08:00
checksum = "876e32dcadfe563a4289e994f7cb391197f362b6315dc45e8ba4aa6f564a4b3c"
2019-03-18 19:56:26 +08:00
2020-06-17 18:20:45 +08:00
[[package]]
name = "version_check"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5a972e5669d67ba988ce3dc826706fb0a8b01471c088cb0b6110b805cc36aed"
2020-04-19 19:37:03 +08:00
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
2020-04-19 19:37:03 +08:00
2019-03-18 19:56:26 +08:00
[[package]]
name = "volatile-register"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-08 15:36:28 +08:00
checksum = "0d67cb4616d99b940db1d6bd28844ff97108b498a6ca850e5b6191a532063286"
2019-03-18 19:56:26 +08:00
dependencies = [
2020-06-08 15:36:28 +08:00
"vcell",
]