rust-book-cn/Cargo.lock

280 lines
7.0 KiB
Plaintext
Raw Permalink Normal View History

2021-05-09 17:15:21 +08:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2021-05-09 17:15:21 +08:00
[[package]]
name = "adler32"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d2e7343e7fc9de883d1b0341e0b13970f764c14101234857d2ddafa1cb1cac2"
2021-05-09 17:15:21 +08:00
[[package]]
name = "aho-corasick"
version = "0.7.18"
2021-05-09 17:15:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
2021-05-09 17:15:21 +08:00
dependencies = [
"memchr",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2021-05-09 17:15:21 +08:00
[[package]]
name = "cfg-if"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
2021-05-09 17:15:21 +08:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2021-05-09 17:15:21 +08:00
[[package]]
name = "crc32fast"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba125de2af0df55319f41944744ad91c71113bf74a4646efff39afe1f6842db1"
2021-05-09 17:15:21 +08:00
dependencies = [
"cfg-if 0.1.10",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "docopt"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f525a586d310c87df72ebcd98009e57f1cc030c8c268305287a476beb653969"
2021-05-09 17:15:21 +08:00
dependencies = [
"lazy_static",
"regex",
"serde",
"strsim",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "filetime"
version = "0.2.16"
2021-05-09 17:15:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0408e2626025178a6a7f7ffc05a25bc47103229f19c113755de7bf63816290c"
2021-05-09 17:15:21 +08:00
dependencies = [
"cfg-if 1.0.0",
"libc",
"redox_syscall",
"winapi",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "flate2"
version = "1.0.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6bd6d6f4752952feb71363cffc9ebac9411b75b87c6ab6058c40c8900cf43c0f"
2021-05-09 17:15:21 +08:00
dependencies = [
"cfg-if 0.1.10",
"crc32fast",
"libc",
"miniz_oxide",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2021-05-09 17:15:21 +08:00
[[package]]
name = "libc"
version = "0.2.66"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d515b1f41455adea1313a4a2ac8a8a477634fbae63cc6100e3aebb207ce61558"
2021-05-09 17:15:21 +08:00
[[package]]
name = "memchr"
version = "2.5.0"
2021-05-09 17:15:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2021-05-09 17:15:21 +08:00
[[package]]
name = "miniz_oxide"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f3f74f726ae935c3f514300cc6773a0c9492abc5e972d42ba0c0ebb88757625"
2021-05-09 17:15:21 +08:00
dependencies = [
"adler32",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "proc-macro2"
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acb317c6ff86a4e579dfa00fc5e6cca91ecbb4e7eb2df0468805b674eb88548"
2021-05-09 17:15:21 +08:00
dependencies = [
"unicode-xid",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "quote"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "053a8c8bcc71fcce321828dc897a98ab9760bef03a4fc36693c231e5b3216cfe"
2021-05-09 17:15:21 +08:00
dependencies = [
"proc-macro2",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "redox_syscall"
version = "0.2.13"
2021-05-09 17:15:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
dependencies = [
"bitflags",
]
2021-05-09 17:15:21 +08:00
[[package]]
name = "regex"
version = "1.5.5"
2021-05-09 17:15:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a11647b6b25ff05a515cb92c365cec08801e83423a235b51e231e1808747286"
2021-05-09 17:15:21 +08:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "regex-syntax"
version = "0.6.26"
2021-05-09 17:15:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49b3de9ec5dc0a3417da371aab17d729997c15010e7fd24ff707773a33bddb64"
2021-05-09 17:15:21 +08:00
[[package]]
name = "rust-book"
version = "0.0.1"
dependencies = [
"docopt",
"flate2",
"lazy_static",
"regex",
"serde",
"tar",
"walkdir",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
2021-05-09 17:15:21 +08:00
dependencies = [
"winapi-util",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "serde"
version = "1.0.104"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "414115f25f818d7dfccec8ee535d76949ae78584fc4f79a6f45a904bf8ab4449"
2021-05-09 17:15:21 +08:00
dependencies = [
"serde_derive",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "serde_derive"
version = "1.0.104"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "128f9e303a5a29922045a830221b8f78ec74a5f544944f3d5984f8ec3895ef64"
2021-05-09 17:15:21 +08:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "strsim"
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
2021-05-09 17:15:21 +08:00
[[package]]
name = "syn"
version = "1.0.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "af6f3550d8dff9ef7dc34d384ac6f107e5d31c8f57d9f28e0081503f547ac8f5"
2021-05-09 17:15:21 +08:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "tar"
version = "0.4.36"
2021-05-09 17:15:21 +08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8190d9cdacf6ee1b080605fd719b58d80a9fcbcea64db6744b26f743da02e447"
2021-05-09 17:15:21 +08:00
dependencies = [
"filetime",
"libc",
"xattr",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "unicode-xid"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "826e7639553986605ec5979c7dd957c7895e93eabed50ab2ffa7f6128a75097c"
2021-05-09 17:15:21 +08:00
[[package]]
name = "walkdir"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "777182bc735b6424e1a57516d35ed72cb8019d85c8c9bf536dccb3445c1a2f7d"
2021-05-09 17:15:21 +08:00
dependencies = [
"same-file",
"winapi",
"winapi-util",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "winapi"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8093091eeb260906a183e6ae1abdba2ef5ef2257a21801128899c3fc699229c6"
2021-05-09 17:15:21 +08:00
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2021-05-09 17:15:21 +08:00
[[package]]
name = "winapi-util"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ccfbf554c6ad11084fb7517daca16cfdcaccbdadba4fc336f032a8b12c2ad80"
2021-05-09 17:15:21 +08:00
dependencies = [
"winapi",
2021-05-09 17:15:21 +08:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2021-05-09 17:15:21 +08:00
[[package]]
name = "xattr"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "244c3741f4240ef46274860397c7c74e50eb23624996930e484c16679633a54c"
2021-05-09 17:15:21 +08:00
dependencies = [
"libc",
2021-05-09 17:15:21 +08:00
]