fortune-rs/Cargo.lock

225 lines
5.8 KiB
Text
Raw Normal View History

2019-10-26 18:29:38 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2024-01-24 04:44:06 +01:00
version = 3
[[package]]
name = "aho-corasick"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "58fb5e95d83b38284460a5fda7d6470aa0b8844d283a0b614b8535e880800d2d"
dependencies = [
2024-01-24 04:44:06 +01:00
"memchr",
]
2019-10-26 18:29:38 +02:00
[[package]]
name = "ansi_term"
2024-01-24 04:44:06 +01:00
version = "0.12.1"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
2019-10-26 18:29:38 +02:00
dependencies = [
2024-01-24 04:44:06 +01:00
"winapi",
2019-10-26 18:29:38 +02:00
]
[[package]]
name = "atty"
2024-01-24 04:44:06 +01:00
version = "0.2.14"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
2019-10-26 18:29:38 +02:00
dependencies = [
2024-01-24 04:44:06 +01:00
"hermit-abi",
"libc",
"winapi",
2019-10-26 18:29:38 +02:00
]
[[package]]
name = "bitflags"
2024-01-24 04:44:06 +01:00
version = "1.3.2"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2019-10-26 18:29:38 +02:00
[[package]]
name = "cfg-if"
2024-01-24 04:44:06 +01:00
version = "1.0.0"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2019-10-26 18:29:38 +02:00
[[package]]
name = "clap"
2024-01-24 04:44:06 +01:00
version = "2.34.0"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
2019-10-26 18:29:38 +02:00
dependencies = [
2024-01-24 04:44:06 +01:00
"ansi_term",
"atty",
"bitflags",
"strsim",
"textwrap",
"unicode-width",
"vec_map",
2019-10-26 18:29:38 +02:00
]
[[package]]
name = "fortune-rs"
version = "0.1.0"
dependencies = [
2024-01-24 04:44:06 +01:00
"clap",
"rand",
"regex",
2019-10-26 18:29:38 +02:00
]
[[package]]
name = "getrandom"
2024-01-24 04:44:06 +01:00
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "190092ea657667030ac6a35e305e62fc4dd69fd98ac98631e5d3a2b1575a12b5"
dependencies = [
"cfg-if",
"libc",
"wasi",
]
[[package]]
name = "hermit-abi"
version = "0.1.19"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2019-10-26 18:29:38 +02:00
dependencies = [
2024-01-24 04:44:06 +01:00
"libc",
2019-10-26 18:29:38 +02:00
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
2019-10-26 18:29:38 +02:00
[[package]]
name = "libc"
2024-01-24 04:44:06 +01:00
version = "0.2.152"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "13e3bf6590cbc649f4d1a3eefc9d5d6eb746f5200ffb04e5e142700b8faa56e7"
2019-10-26 18:29:38 +02:00
[[package]]
name = "memchr"
version = "2.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "88579771288728879b57485cc7d6b07d648c9f0141eb955f8ab7f9d45394468e"
2019-10-26 18:29:38 +02:00
[[package]]
name = "ppv-lite86"
2024-01-24 04:44:06 +01:00
version = "0.2.17"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2019-10-26 18:29:38 +02:00
[[package]]
name = "rand"
2024-01-24 04:44:06 +01:00
version = "0.8.5"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2019-10-26 18:29:38 +02:00
dependencies = [
2024-01-24 04:44:06 +01:00
"libc",
"rand_chacha",
"rand_core",
2019-10-26 18:29:38 +02:00
]
[[package]]
name = "rand_chacha"
2024-01-24 04:44:06 +01:00
version = "0.3.1"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2019-10-26 18:29:38 +02:00
dependencies = [
2024-01-24 04:44:06 +01:00
"ppv-lite86",
"rand_core",
2019-10-26 18:29:38 +02:00
]
[[package]]
name = "rand_core"
2024-01-24 04:44:06 +01:00
version = "0.6.4"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2019-10-26 18:29:38 +02:00
dependencies = [
2024-01-24 04:44:06 +01:00
"getrandom",
2019-10-26 18:29:38 +02:00
]
[[package]]
name = "regex"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "dc220bd33bdce8f093101afe22a037b8eb0e5af33592e6a9caafff0d4cb81cbd"
dependencies = [
2024-01-24 04:44:06 +01:00
"aho-corasick",
"memchr",
"regex-syntax",
"thread_local",
]
[[package]]
name = "regex-syntax"
version = "0.6.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "11a7e20d1cce64ef2fed88b66d347f88bd9babb82845b2b858f3edbf59a4f716"
2019-10-26 18:29:38 +02:00
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
2019-10-26 18:29:38 +02:00
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
2019-10-26 18:29:38 +02:00
dependencies = [
2024-01-24 04:44:06 +01:00
"unicode-width",
2019-10-26 18:29:38 +02:00
]
[[package]]
name = "thread_local"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "c6b53e329000edc2b34dbe8545fd20e55a333362d0a321909685a19bd28c3f1b"
dependencies = [
2024-01-24 04:44:06 +01:00
"lazy_static",
]
2019-10-26 18:29:38 +02:00
[[package]]
name = "unicode-width"
2024-01-24 04:44:06 +01:00
version = "0.1.11"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
2019-10-26 18:29:38 +02:00
[[package]]
name = "vec_map"
2024-01-24 04:44:06 +01:00
version = "0.8.2"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
2019-10-26 18:29:38 +02:00
[[package]]
name = "wasi"
2024-01-24 04:44:06 +01:00
version = "0.11.0+wasi-snapshot-preview1"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2019-10-26 18:29:38 +02:00
[[package]]
name = "winapi"
2024-01-24 04:44:06 +01:00
version = "0.3.9"
2019-10-26 18:29:38 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
2019-10-26 18:29:38 +02:00
dependencies = [
2024-01-24 04:44:06 +01:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
2019-10-26 18:29:38 +02:00
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2019-10-26 18:29:38 +02:00
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-24 04:44:06 +01:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"