mercury/Cargo.lock

441 lines
11 KiB
Plaintext
Raw Normal View History

2021-01-01 23:07:16 +01:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2022-02-16 21:56:57 +01:00
version = 3
2021-05-16 00:23:45 +02:00
[[package]]
name = "ahash"
2022-02-16 21:56:57 +01:00
version = "0.7.6"
2021-05-16 00:23:45 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
2021-05-16 00:23:45 +02:00
dependencies = [
"getrandom",
"once_cell",
"version_check",
]
2021-05-14 00:14:39 +02:00
[[package]]
name = "async-mutex"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "479db852db25d9dbf6204e6cb6253698f175c15726470f78af0d918e99d6156e"
dependencies = [
"event-listener",
]
[[package]]
name = "async-trait"
2022-02-16 21:56:57 +01:00
version = "0.1.52"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "061a7acccaa286c011ddc30970520b98fa40e00c9d644633fb26b5fc63a265e3"
2021-05-14 00:14:39 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2022-02-15 11:18:51 +01:00
[[package]]
name = "byte-strings"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "963ceed6e0041e1f4cdd9e2fae3b384f5613a22119b5bb04ccc14fc815e87ae3"
dependencies = [
"byte-strings-proc_macros",
]
[[package]]
name = "byte-strings-proc_macros"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e78e8673d97234c7a07636474b02c92fad06a0f26f70581aa46aee124c508e5"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-05-14 00:14:39 +02:00
[[package]]
name = "cached"
version = "0.23.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e2afe73808fbaac302e39c9754bfc3c4b4d0f99c9c240b9f4e4efc841ad1b74"
dependencies = [
"async-mutex",
"async-trait",
"cached_proc_macro",
"cached_proc_macro_types",
"futures",
"hashbrown",
"once_cell",
]
[[package]]
name = "cached_proc_macro"
2022-02-16 21:56:57 +01:00
version = "0.6.2"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "4230b8d9f5db741004bfaef172c5b2dbf0eb94f105204cc6147a220080daaa85"
2021-05-14 00:14:39 +02:00
dependencies = [
"cached_proc_macro_types",
"darling",
"quote",
"syn",
]
[[package]]
name = "cached_proc_macro_types"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a4f925191b4367301851c6d99b09890311d74b0d43f274c0b34c86d308a3663"
2021-01-01 23:07:16 +01:00
[[package]]
2021-01-03 00:15:45 +01:00
name = "cfg-if"
2022-02-16 21:56:57 +01:00
version = "1.0.0"
2021-01-03 00:15:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2021-01-03 00:15:45 +01:00
2021-01-04 10:01:06 +01:00
[[package]]
name = "coz"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cef55b3fe2f5477d59e12bc792e8b3c95a25bd099eadcfae006ecea136de76e2"
dependencies = [
"libc",
"once_cell",
]
2021-05-14 00:14:39 +02:00
[[package]]
name = "darling"
2022-02-16 21:56:57 +01:00
version = "0.13.1"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "d0d720b8683f8dd83c65155f0530560cba68cd2bf395f6513a483caee57ff7f4"
2021-05-14 00:14:39 +02:00
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
2022-02-16 21:56:57 +01:00
version = "0.13.1"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "7a340f241d2ceed1deb47ae36c4144b2707ec7dd0b649f894cb39bb595986324"
2021-05-14 00:14:39 +02:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
"syn",
]
[[package]]
name = "darling_macro"
2022-02-16 21:56:57 +01:00
version = "0.13.1"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "72c41b3b7352feb3211a0d743dc5700a4e3b60f51bd2b368892d1e0f9a95f44b"
2021-05-14 00:14:39 +02:00
dependencies = [
"darling_core",
"quote",
"syn",
]
[[package]]
name = "event-listener"
2022-02-16 21:56:57 +01:00
version = "2.5.2"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "77f3309417938f28bf8228fcff79a4a37103981e3e186d2ccd19c74b38f4eb71"
2021-05-14 00:14:39 +02:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "futures"
2022-02-16 21:56:57 +01:00
version = "0.3.21"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
2021-05-14 00:14:39 +02:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2022-02-16 21:56:57 +01:00
version = "0.3.21"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
2021-05-14 00:14:39 +02:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-02-16 21:56:57 +01:00
version = "0.3.21"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
2021-05-14 00:14:39 +02:00
[[package]]
name = "futures-executor"
2022-02-16 21:56:57 +01:00
version = "0.3.21"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
2021-05-14 00:14:39 +02:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-02-16 21:56:57 +01:00
version = "0.3.21"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
2021-05-14 00:14:39 +02:00
[[package]]
name = "futures-macro"
2022-02-16 21:56:57 +01:00
version = "0.3.21"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
2021-05-14 00:14:39 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-02-16 21:56:57 +01:00
version = "0.3.21"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
2021-05-14 00:14:39 +02:00
[[package]]
name = "futures-task"
2022-02-16 21:56:57 +01:00
version = "0.3.21"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
2021-05-14 00:14:39 +02:00
[[package]]
name = "futures-util"
2022-02-16 21:56:57 +01:00
version = "0.3.21"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
2021-05-14 00:14:39 +02:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
2021-01-03 00:15:45 +01:00
[[package]]
name = "getrandom"
2022-02-16 21:56:57 +01:00
version = "0.2.4"
2021-01-03 00:15:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "418d37c8b1d42553c93648be529cb70f920d3baf8ef469b74b9638df426e0b4c"
2021-01-03 00:15:45 +01:00
dependencies = [
"cfg-if",
"libc",
"wasi",
]
2021-05-14 00:14:39 +02:00
[[package]]
name = "hashbrown"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d7afe4a420e3fe79967a00898cc1f4db7c8a49a9333a29f8a4bd76a253d5cd04"
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2021-01-03 00:15:45 +01:00
[[package]]
name = "libc"
2022-02-16 21:56:57 +01:00
version = "0.2.118"
2021-01-03 00:15:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "06e509672465a0504304aa87f9f176f2b2b716ed8fb105ebe5c02dc6dce96a94"
2021-01-03 00:15:45 +01:00
2021-05-14 00:14:39 +02:00
[[package]]
name = "memchr"
2022-02-16 21:56:57 +01:00
version = "2.4.1"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
2021-05-14 00:14:39 +02:00
2021-01-03 00:15:45 +01:00
[[package]]
name = "mercury"
2021-01-01 23:07:16 +01:00
version = "0.1.0"
2021-01-03 00:15:45 +01:00
dependencies = [
2021-05-16 00:23:45 +02:00
"ahash",
2022-02-15 11:18:51 +01:00
"byte-strings",
2021-05-14 00:14:39 +02:00
"cached",
2021-01-04 10:01:06 +01:00
"coz",
2021-01-07 23:44:44 +01:00
"modular-bitfield",
2021-01-03 00:15:45 +01:00
"rand",
2021-05-16 19:12:56 +02:00
"thousands",
2021-01-06 14:37:51 +01:00
"tinyvec",
2021-01-03 00:15:45 +01:00
]
2021-01-07 23:44:44 +01:00
[[package]]
name = "modular-bitfield"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a53d79ba8304ac1c4f9eb3b9d281f21f7be9d4626f72ce7df4ad8fbde4f38a74"
dependencies = [
"modular-bitfield-impl",
"static_assertions",
]
[[package]]
name = "modular-bitfield-impl"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a7d5f7076603ebc68de2dc6a650ec331a062a13abaa346975be747bbfa4b789"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-01-04 10:01:06 +01:00
[[package]]
name = "once_cell"
2022-02-16 21:56:57 +01:00
version = "1.9.0"
2021-01-04 10:01:06 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
2021-01-04 10:01:06 +01:00
2021-05-14 00:14:39 +02:00
[[package]]
name = "pin-project-lite"
2022-02-16 21:56:57 +01:00
version = "0.2.8"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "e280fbe77cc62c91527259e9442153f4688736748d24660126286329742b4c6c"
2021-05-14 00:14:39 +02:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2021-01-03 00:15:45 +01:00
[[package]]
name = "ppv-lite86"
2022-02-16 21:56:57 +01:00
version = "0.2.16"
2021-01-03 00:15:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2021-05-14 00:14:39 +02:00
2021-01-07 23:44:44 +01:00
[[package]]
name = "proc-macro2"
2022-02-16 21:56:57 +01:00
version = "1.0.36"
2021-01-07 23:44:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "c7342d5883fbccae1cc37a2353b09c87c9b0f3afd73f5fb9bba687a1f733b029"
2021-01-07 23:44:44 +01:00
dependencies = [
"unicode-xid",
]
[[package]]
name = "quote"
2022-02-16 21:56:57 +01:00
version = "1.0.15"
2021-01-07 23:44:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "864d3e96a899863136fc6e99f3d7cae289dafe43bf2c5ac19b70df7210c0a145"
2021-01-07 23:44:44 +01:00
dependencies = [
"proc-macro2",
]
2021-01-03 00:15:45 +01:00
[[package]]
name = "rand"
2022-02-16 21:56:57 +01:00
version = "0.8.5"
2021-01-03 00:15:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-01-03 00:15:45 +01:00
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
2022-02-16 21:56:57 +01:00
version = "0.3.1"
2021-01-03 00:15:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-01-03 00:15:45 +01:00
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
2022-02-16 21:56:57 +01:00
version = "0.6.3"
2021-01-03 00:15:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2021-01-03 00:15:45 +01:00
dependencies = [
"getrandom",
]
2021-05-14 00:14:39 +02:00
[[package]]
name = "slab"
2022-02-16 21:56:57 +01:00
version = "0.4.5"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "9def91fd1e018fe007022791f865d0ccc9b3a0d5001e01aabb8b40e46000afb5"
2021-05-14 00:14:39 +02:00
2021-01-07 23:44:44 +01:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
2021-05-14 00:14:39 +02:00
[[package]]
name = "strsim"
2022-02-16 21:56:57 +01:00
version = "0.10.0"
2021-05-14 00:14:39 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
2021-05-14 00:14:39 +02:00
2021-01-07 23:44:44 +01:00
[[package]]
name = "syn"
2022-02-16 21:56:57 +01:00
version = "1.0.86"
2021-01-07 23:44:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "8a65b3f4ffa0092e9887669db0eae07941f023991ab58ea44da8fe8e2d511c6b"
2021-01-07 23:44:44 +01:00
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
2021-05-16 19:12:56 +02:00
[[package]]
name = "thousands"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3bf63baf9f5039dadc247375c29eb13706706cfde997d0330d05aa63a77d8820"
2021-01-06 14:37:51 +01:00
[[package]]
name = "tinyvec"
2022-02-16 21:56:57 +01:00
version = "1.5.1"
2021-01-06 14:37:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
2021-01-06 14:37:51 +01:00
2021-01-07 23:44:44 +01:00
[[package]]
name = "unicode-xid"
2022-02-16 21:56:57 +01:00
version = "0.2.2"
2021-01-07 23:44:44 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
2021-01-07 23:44:44 +01:00
2021-05-16 00:23:45 +02:00
[[package]]
name = "version_check"
2022-02-16 21:56:57 +01:00
version = "0.9.4"
2021-05-16 00:23:45 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2021-05-16 00:23:45 +02:00
2021-01-03 00:15:45 +01:00
[[package]]
name = "wasi"
2022-02-16 21:56:57 +01:00
version = "0.10.2+wasi-snapshot-preview1"
2021-01-03 00:15:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-02-16 21:56:57 +01:00
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"