artiq-zynq/src/Cargo.lock

490 lines
12 KiB
Plaintext
Raw Normal View History

2020-04-11 20:19:39 +08:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2020-06-07 21:30:33 +08:00
[[package]]
name = "async-recursion"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e5444eec77a9ec2bfe4524139e09195862e981400c4358d3b760cae634e4c4ee"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-04-12 17:44:32 +08:00
[[package]]
name = "autocfg"
version = "1.0.1"
2020-04-12 17:44:32 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
2020-04-12 17:44:32 +08:00
2020-04-11 20:19:39 +08:00
[[package]]
name = "bit_field"
version = "0.10.1"
2020-04-11 20:19:39 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcb6dd1c2376d2e096796e234a70e17e94cc2d5d54ff8ce42b28cef1d0d359a4"
2020-04-11 20:19:39 +08:00
[[package]]
name = "bitflags"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
[[package]]
name = "byteorder"
version = "1.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08c48aae112d48ed9f069b33538ea9e3e90aa263cfa3d1c24309612b1f7472de"
[[package]]
name = "cc"
version = "1.0.61"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed67cbde08356238e75fc4656be4749481eeffb09e19f320a25237d5221c985d"
2020-04-21 18:28:22 +08:00
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2020-04-11 20:19:39 +08:00
[[package]]
name = "compiler_builtins"
version = "0.1.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3fcd8aba10d17504c87ef12d4f62ef404c6a4703d16682a9eb5543e6cf24455"
[[package]]
name = "core_io"
version = "0.1.20200410"
2020-11-06 12:20:48 +08:00
source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#d623913535906739c31dc9838cdf1db4b975fb46"
dependencies = [
"memchr",
]
2020-04-11 20:19:39 +08:00
2020-04-12 20:15:01 +08:00
[[package]]
name = "cslice"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f8cb7306107e4b10e64994de6d3274bd08996a7c1322a27b86482392f96be0a"
[[package]]
name = "dwarf"
version = "0.0.0"
dependencies = [
"cfg-if",
"compiler_builtins",
"libc",
"unwind",
]
[[package]]
name = "dyld"
2020-04-12 18:45:43 +08:00
version = "0.1.0"
2020-04-30 04:01:12 +08:00
dependencies = [
"libcortex_a9",
2020-04-30 04:01:12 +08:00
"log",
]
2020-04-25 12:52:46 +08:00
[[package]]
name = "embedded-hal"
2020-06-19 00:33:32 +08:00
version = "0.2.4"
2020-04-25 12:52:46 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-19 00:33:32 +08:00
checksum = "fa998ce59ec9765d15216393af37a58961ddcefb14c753b4816ba2191d865fcb"
2020-04-25 12:52:46 +08:00
dependencies = [
"nb 0.1.3",
2020-04-25 12:52:46 +08:00
"void",
]
2020-06-11 17:36:23 +08:00
[[package]]
name = "fatfs"
2020-07-23 05:51:09 +08:00
version = "0.3.4"
2020-06-11 17:36:23 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-07-23 05:51:09 +08:00
checksum = "93079df23039e52059e1f03b4c29fb0c72da2c792aad91bb2236c9fb81d3592e"
2020-06-11 17:36:23 +08:00
dependencies = [
"bitflags",
"byteorder",
"core_io",
"log",
]
2020-04-25 20:31:38 +08:00
[[package]]
name = "futures"
2020-11-06 12:20:48 +08:00
version = "0.3.7"
2020-04-25 20:31:38 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "95314d38584ffbfda215621d723e0a3906f032e03ae5551e650058dac83d4797"
2020-04-25 20:31:38 +08:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2020-11-06 12:20:48 +08:00
version = "0.3.7"
2020-04-25 20:31:38 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "0448174b01148032eed37ac4aed28963aaaa8cfa93569a08e5b479bbc6c2c151"
2020-04-25 20:31:38 +08:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2020-11-06 12:20:48 +08:00
version = "0.3.7"
2020-04-25 20:31:38 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "18eaa56102984bed2c88ea39026cff3ce3b4c7f508ca970cedf2450ea10d4e46"
2020-04-25 20:31:38 +08:00
[[package]]
name = "futures-io"
2020-11-06 12:20:48 +08:00
version = "0.3.7"
2020-04-25 20:31:38 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "6e1798854a4727ff944a7b12aa999f58ce7aa81db80d2dfaaf2ba06f065ddd2b"
2020-04-25 20:31:38 +08:00
[[package]]
name = "futures-macro"
2020-11-06 12:20:48 +08:00
version = "0.3.7"
2020-04-25 20:31:38 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "e36fccf3fc58563b4a14d265027c627c3b665d7fed489427e88e7cc929559efe"
2020-04-25 20:31:38 +08:00
dependencies = [
"proc-macro-hack",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2020-11-06 12:20:48 +08:00
version = "0.3.7"
2020-04-25 20:31:38 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "0e3ca3f17d6e8804ae5d3df7a7d35b2b3a6fe89dac84b31872720fc3060a0b11"
2020-04-25 20:31:38 +08:00
[[package]]
name = "futures-task"
2020-11-06 12:20:48 +08:00
version = "0.3.7"
2020-04-25 20:31:38 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "96d502af37186c4fef99453df03e374683f8a1eec9dcc1e66b3b82dc8278ce3c"
2020-04-25 20:31:38 +08:00
[[package]]
name = "futures-util"
2020-11-06 12:20:48 +08:00
version = "0.3.7"
2020-04-25 20:31:38 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "abcb44342f62e6f3e8ac427b8aa815f724fd705dfad060b18ac7866c15bb8e34"
2020-04-25 20:31:38 +08:00
dependencies = [
"futures-core",
"futures-macro",
"futures-sink",
"futures-task",
2020-05-09 13:48:19 +08:00
"pin-project",
2020-04-25 20:31:38 +08:00
"pin-utils",
"proc-macro-hack",
"proc-macro-nested",
]
2020-04-11 22:24:23 +08:00
[[package]]
name = "libasync"
version = "0.0.0"
2020-11-06 12:20:48 +08:00
source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#d623913535906739c31dc9838cdf1db4b975fb46"
2020-04-11 22:24:23 +08:00
dependencies = [
2020-04-25 12:52:46 +08:00
"embedded-hal",
2020-04-11 22:24:23 +08:00
"libcortex_a9",
2020-10-13 19:12:55 +08:00
"nb 1.0.0",
2020-04-11 22:24:23 +08:00
"pin-utils",
"smoltcp",
]
2020-04-11 20:19:39 +08:00
[[package]]
name = "libboard_zynq"
version = "0.0.0"
2020-11-06 12:20:48 +08:00
source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#d623913535906739c31dc9838cdf1db4b975fb46"
2020-04-11 20:19:39 +08:00
dependencies = [
"bit_field",
2020-04-25 12:52:46 +08:00
"embedded-hal",
2020-04-11 20:19:39 +08:00
"libcortex_a9",
"libregister",
2020-05-01 08:18:36 +08:00
"log",
"nb 0.1.3",
2020-04-11 20:19:39 +08:00
"smoltcp",
2020-04-25 12:52:46 +08:00
"void",
2020-04-11 20:19:39 +08:00
"volatile-register",
]
[[package]]
name = "libc"
version = "0.1.0"
dependencies = [
"cc",
"libboard_zynq",
]
2020-09-01 14:43:16 +08:00
[[package]]
name = "libconfig"
version = "0.1.0"
2020-11-06 12:20:48 +08:00
source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#d623913535906739c31dc9838cdf1db4b975fb46"
2020-09-01 14:43:16 +08:00
dependencies = [
"core_io",
"fatfs",
"libboard_zynq",
"log",
]
2020-04-11 20:19:39 +08:00
[[package]]
name = "libcortex_a9"
version = "0.0.0"
2020-11-06 12:20:48 +08:00
source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#d623913535906739c31dc9838cdf1db4b975fb46"
2020-04-11 20:19:39 +08:00
dependencies = [
"bit_field",
"libregister",
"volatile-register",
2020-04-11 20:19:39 +08:00
]
2020-07-21 13:50:33 +08:00
[[package]]
name = "libm"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a"
2020-04-11 20:19:39 +08:00
[[package]]
name = "libregister"
version = "0.0.0"
2020-11-06 12:20:48 +08:00
source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#d623913535906739c31dc9838cdf1db4b975fb46"
2020-04-11 20:19:39 +08:00
dependencies = [
"bit_field",
"vcell",
"volatile-register",
]
[[package]]
name = "libsupport_zynq"
version = "0.0.0"
2020-11-06 12:20:48 +08:00
source = "git+https://git.m-labs.hk/M-Labs/zynq-rs.git#d623913535906739c31dc9838cdf1db4b975fb46"
2020-04-11 20:19:39 +08:00
dependencies = [
"compiler_builtins",
"libboard_zynq",
"libcortex_a9",
"libregister",
"linked_list_allocator",
"r0",
]
[[package]]
name = "linked_list_allocator"
2020-10-13 19:12:55 +08:00
version = "0.8.6"
2020-04-11 20:19:39 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-10-13 19:12:55 +08:00
checksum = "84565678e403453d1a27a0886882b3b271701e65146d972d9d7d9a4c4a0ff498"
2020-04-11 20:19:39 +08:00
2020-04-21 18:28:22 +08:00
[[package]]
name = "log"
version = "0.4.11"
2020-04-21 18:28:22 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fabed175da42fed1fa0746b0ea71f412aa9d35e76e95e59b192c64b9dc2bf8b"
2020-04-21 18:28:22 +08:00
dependencies = [
"cfg-if",
]
2020-07-13 15:00:53 +08:00
[[package]]
name = "log_buffer"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f033173c9486b7fe97a79c895c0a3483ae395ab6744c985d10078950e2492419"
2020-04-11 20:19:39 +08:00
[[package]]
name = "managed"
2020-06-11 17:36:23 +08:00
version = "0.7.2"
2020-04-11 20:19:39 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 17:36:23 +08:00
checksum = "c75de51135344a4f8ed3cfe2720dc27736f7711989703a0b43aadf3753c55577"
2020-04-11 20:19:39 +08:00
2020-04-28 19:07:49 +08:00
[[package]]
name = "memchr"
2020-11-06 12:20:48 +08:00
version = "2.3.4"
2020-04-28 19:07:49 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "0ee1c47aaa256ecabcaea351eae4a9b01ef39ed810004e298d2511ed284b1525"
2020-04-28 19:07:49 +08:00
2020-04-25 12:52:46 +08:00
[[package]]
name = "nb"
version = "0.1.3"
2020-04-25 12:52:46 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "801d31da0513b6ec5214e9bf433a77966320625a37860f910be265be6e18d06f"
dependencies = [
"nb 1.0.0",
]
[[package]]
name = "nb"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "546c37ac5d9e56f55e73b677106873d9d9f5190605e41a856503623648488cae"
2020-04-25 12:52:46 +08:00
2020-04-12 17:44:32 +08:00
[[package]]
name = "num-derive"
2020-11-06 12:20:48 +08:00
version = "0.3.3"
2020-04-12 17:44:32 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "876a53fff98e03a936a674b29568b0e605f06b29372c2489ff4de23f1949743d"
2020-04-12 17:44:32 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "num-traits"
2020-11-06 12:20:48 +08:00
version = "0.2.14"
2020-04-12 17:44:32 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
2020-04-12 17:44:32 +08:00
dependencies = [
"autocfg",
]
2020-05-09 13:48:19 +08:00
[[package]]
name = "pin-project"
2020-11-06 12:20:48 +08:00
version = "1.0.1"
2020-05-09 13:48:19 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "ee41d838744f60d959d7074e3afb6b35c7456d0f61cad38a24e35e6553f73841"
2020-05-09 13:48:19 +08:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2020-11-06 12:20:48 +08:00
version = "1.0.1"
2020-05-09 13:48:19 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "81a4ffa594b66bff340084d4081df649a7dc049ac8d7fc458d8e628bfbbb2f86"
2020-05-09 13:48:19 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-04-11 22:24:23 +08:00
[[package]]
name = "pin-utils"
2020-04-24 12:46:55 +08:00
version = "0.1.0"
2020-04-11 22:24:23 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-24 12:46:55 +08:00
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2020-04-11 22:24:23 +08:00
2020-04-25 20:31:38 +08:00
[[package]]
name = "proc-macro-hack"
2020-11-06 12:20:48 +08:00
version = "0.5.19"
2020-04-25 20:31:38 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
2020-04-25 20:31:38 +08:00
[[package]]
name = "proc-macro-nested"
2020-06-15 17:14:03 +08:00
version = "0.1.6"
2020-04-25 20:31:38 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-15 17:14:03 +08:00
checksum = "eba180dafb9038b050a4c280019bbedf9f2467b61e5d892dcad585bb57aadc5a"
2020-04-25 20:31:38 +08:00
2020-04-12 17:44:32 +08:00
[[package]]
name = "proc-macro2"
version = "1.0.24"
2020-04-12 17:44:32 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e0704ee1a7e00d7bb417d0770ea303c1bccbabf0ef1667dae92b5967f5f8a71"
2020-04-12 17:44:32 +08:00
dependencies = [
"unicode-xid",
]
[[package]]
name = "quote"
2020-06-11 17:36:23 +08:00
version = "1.0.7"
2020-04-12 17:44:32 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-11 17:36:23 +08:00
checksum = "aa563d17ecb180e500da1cfd2b028310ac758de548efdd203e18f283af693f37"
2020-04-12 17:44:32 +08:00
dependencies = [
"proc-macro2",
]
2020-04-11 20:19:39 +08:00
[[package]]
name = "r0"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd7a31eed1591dcbc95d92ad7161908e72f4677f8fabf2a32ca49b4237cbf211"
[[package]]
name = "runtime"
version = "0.1.0"
dependencies = [
2020-06-07 21:30:33 +08:00
"async-recursion",
"byteorder",
"core_io",
2020-04-12 20:15:01 +08:00
"cslice",
"dwarf",
"dyld",
"embedded-hal",
2020-04-25 20:31:38 +08:00
"futures",
2020-04-11 22:24:23 +08:00
"libasync",
2020-04-11 20:19:39 +08:00
"libboard_zynq",
"libc",
2020-09-01 14:43:16 +08:00
"libconfig",
2020-04-13 13:48:08 +08:00
"libcortex_a9",
2020-07-21 13:50:33 +08:00
"libm",
2020-07-07 19:40:32 +08:00
"libregister",
2020-04-11 20:19:39 +08:00
"libsupport_zynq",
2020-04-22 07:03:58 +08:00
"log",
2020-07-13 15:00:53 +08:00
"log_buffer",
"nb 0.1.3",
2020-04-12 17:44:32 +08:00
"num-derive",
"num-traits",
"unwind",
2020-08-04 17:32:43 +08:00
"vcell",
2020-04-25 20:31:38 +08:00
"void",
2020-04-11 20:19:39 +08:00
]
[[package]]
name = "smoltcp"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fe46639fd2ec79eadf8fe719f237a7a0bd4dac5d957f1ca5bbdbc1c3c39e53a"
dependencies = [
"bitflags",
"byteorder",
"managed",
]
2020-04-12 17:44:32 +08:00
[[package]]
name = "syn"
2020-11-06 12:20:48 +08:00
version = "1.0.48"
2020-04-12 17:44:32 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-06 12:20:48 +08:00
checksum = "cc371affeffc477f42a221a1e4297aedcea33d47d19b61455588bd9d8f6b19ac"
2020-04-12 17:44:32 +08:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "unicode-xid"
2020-06-25 20:21:44 +08:00
version = "0.2.1"
2020-04-12 17:44:32 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-06-25 20:21:44 +08:00
checksum = "f7fe0bb3479651439c9112f72b6c505038574c9fbb575ed1bf3b797fa39dd564"
2020-04-12 17:44:32 +08:00
[[package]]
name = "unwind"
version = "0.0.0"
dependencies = [
"cc",
"cfg-if",
"compiler_builtins",
"libc",
]
2020-04-11 20:19:39 +08:00
[[package]]
name = "vcell"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "876e32dcadfe563a4289e994f7cb391197f362b6315dc45e8ba4aa6f564a4b3c"
2020-04-25 12:52:46 +08:00
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
2020-04-11 20:19:39 +08:00
[[package]]
name = "volatile-register"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d67cb4616d99b940db1d6bd28844ff97108b498a6ca850e5b6191a532063286"
dependencies = [
"vcell",
]