zcashd/Cargo.lock

1908 lines
46 KiB
Plaintext
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
[[package]]
name = "aead"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b613b8e1e3cf911a086f53f03bf286f52fd7a7258e4fa606f0ef220d39d8877"
dependencies = [
"generic-array",
]
[[package]]
name = "aes"
2021-09-14 09:45:37 -07:00
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "9e8b47f52ea9bae42228d07ec09eb676433d7c4ed1ebdf0f1d1c29ed446f1ab8"
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
"opaque-debug",
]
[[package]]
name = "ahash"
2021-11-05 09:20:58 -07:00
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "fcb51a0695d8f838b1ee009b3fbf66bda078cd64590202a864a8f3e8c4315c47"
dependencies = [
"getrandom 0.2.3",
"once_cell",
"version_check",
]
[[package]]
name = "aho-corasick"
2021-06-04 14:53:39 -07:00
version = "0.7.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 14:53:39 -07:00
checksum = "1e37cfd5e7657ada45f742d6e99ca5788580b5c529dc78faf11ece6dc702656f"
dependencies = [
"memchr",
]
[[package]]
name = "ansi_term"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
dependencies = [
"winapi",
]
[[package]]
name = "arrayref"
2020-08-25 04:22:37 -07:00
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-25 04:22:37 -07:00
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
[[package]]
name = "arrayvec"
2020-11-10 13:39:55 -08:00
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-10 13:39:55 -08:00
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
[[package]]
name = "arrayvec"
2021-11-05 09:20:58 -07:00
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
[[package]]
name = "atomic-shim"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67cd4b51d303cf3501c301e8125df442128d3c6d7c69f71b27833d253de47e77"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "autocfg"
2020-08-25 04:22:37 -07:00
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-25 04:22:37 -07:00
checksum = "cdb031dd78e28731d87d56cc8ffef4a8f36ca26c38fe2de700543e627f8a464a"
[[package]]
name = "base64ct"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a32fd6af2b5827bce66c29053ba0e7c42b9dcab01835835058558c10851a46b"
[[package]]
name = "bech32"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cf9ff0bbfd639f15c74af777d81383cf53efb7c93613f6cab67c6c11e05bbf8b"
[[package]]
name = "bellman"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0944d18a9a37691b87733b39c9360c9950af9aa5f97e2455bc108d8eb64fc1c1"
dependencies = [
"bitvec",
2020-04-30 12:16:18 -07:00
"blake2s_simd",
"byteorder",
"crossbeam-channel",
2020-04-30 12:16:18 -07:00
"ff",
"group",
"lazy_static",
"log",
2020-04-30 12:16:18 -07:00
"num_cpus",
"pairing",
"rand_core 0.6.3",
"rayon",
"subtle",
]
[[package]]
name = "bigint"
2020-08-25 04:22:37 -07:00
version = "4.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-25 04:22:37 -07:00
checksum = "c0e8c8a600052b52482eff2cf4d810e462fdff1f656ac1ecb6232132a1ed7def"
dependencies = [
2020-04-30 12:16:18 -07:00
"byteorder",
"crunchy",
]
[[package]]
name = "bip0039"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d0830ae4cc96b0617cc912970c2b17e89456fecbf55e8eed53a956f37ab50c41"
dependencies = [
"hmac",
"pbkdf2",
"rand",
"sha2",
"unicode-normalization",
"zeroize",
]
[[package]]
name = "bitflags"
2021-09-14 09:45:37 -07:00
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitvec"
version = "0.22.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5237f00a8c86130a0cc317830e558b966dd7850d48a953d998c813f01a41b527"
dependencies = [
"funty",
"radium",
"tap",
"wyz",
]
[[package]]
name = "blake2b_simd"
2020-11-10 13:39:55 -08:00
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-10 13:39:55 -08:00
checksum = "afa748e348ad3be8263be728124b24a24f268266f6f5d58af9d75f6a40b5c587"
dependencies = [
2020-04-30 12:16:18 -07:00
"arrayref",
"arrayvec 0.5.2",
2020-04-30 12:16:18 -07:00
"constant_time_eq",
]
[[package]]
name = "blake2s_simd"
2020-11-10 13:39:55 -08:00
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-10 13:39:55 -08:00
checksum = "9e461a7034e85b211a4acb57ee2e6730b32912b06c08cc242243c39fc21ae6a2"
dependencies = [
2020-04-30 12:16:18 -07:00
"arrayref",
"arrayvec 0.5.2",
2020-04-30 12:16:18 -07:00
"constant_time_eq",
]
[[package]]
name = "block-buffer"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4152116fd6e9dadb291ae18fc1ec3575ed6d84c29642d97890f4b4a3417297e4"
dependencies = [
2020-08-25 04:22:37 -07:00
"generic-array",
]
[[package]]
name = "block-modes"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2cb03d1bed155d89dce0f845b7899b18a9a163e148fd004e1c28421a783e2d8e"
dependencies = [
"block-padding",
"cipher",
]
[[package]]
name = "block-padding"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d696c370c750c948ada61c69a0ee2cbbb9c50b1019ddb86d9317157a99c2cae"
[[package]]
name = "bls12_381"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d28daeeded7949f1c7c72693377c98473b00be0aa0023760a84a300e4e7c74b"
dependencies = [
"ff",
"group",
"pairing",
"rand_core 0.6.3",
"subtle",
]
[[package]]
name = "bs58"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "771fe0050b883fcc3ea2359b1a96bcfbc090b7116eae7c3c512c7a083fdf23d3"
dependencies = [
"sha2",
]
2021-09-17 05:52:09 -07:00
[[package]]
name = "bumpalo"
2021-11-05 09:20:58 -07:00
version = "3.8.0"
2021-09-17 05:52:09 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "8f1e260c3a9040a7c19a12468758f4c16f31a81a1fe087482be9570ec864bb6c"
2021-09-17 05:52:09 -07:00
[[package]]
name = "byteorder"
2021-03-26 14:42:04 -07:00
version = "1.4.3"
2020-11-10 13:39:55 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-26 14:42:04 -07:00
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
2020-11-10 13:39:55 -08:00
[[package]]
name = "bytes"
2021-09-14 09:45:37 -07:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2020-11-10 13:39:55 -08:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chacha20"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01b72a433d0cf2aef113ba70f62634c56fddb0f244e6377185c56a7cadbd8f91"
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
"zeroize",
]
[[package]]
name = "chacha20poly1305"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b84ed6d1d5f7aa9bdde921a5090e0ca4d934d250ea3b402a5fab3a994e28a2a"
dependencies = [
"aead",
"chacha20",
"cipher",
"poly1305",
"zeroize",
]
[[package]]
name = "cipher"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7ee52072ec15386f770805afd189a01c8841be8696bed250fa2f13c4c0d6dfb7"
dependencies = [
"generic-array",
]
[[package]]
name = "constant_time_eq"
2020-08-25 04:22:37 -07:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-25 04:22:37 -07:00
checksum = "245097e9a4535ee1e3e3931fcfcd55a796a44c643e8596ff6566d68f09b87bbc"
[[package]]
2021-06-04 14:53:39 -07:00
name = "cpufeatures"
2021-09-14 09:45:37 -07:00
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "95059428f66df56b63431fdb4e1947ed2190586af5c5a8a8b71122bdf5a7f469"
2021-06-04 14:53:39 -07:00
dependencies = [
"libc",
]
2021-02-20 10:32:34 -08:00
[[package]]
name = "crossbeam-channel"
2021-06-04 14:53:39 -07:00
version = "0.5.1"
2021-02-20 10:32:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 14:53:39 -07:00
checksum = "06ed27e177f16d65f0f0c22a213e17c696ace5dd64b14258b52f9417ccb52db4"
2021-02-20 10:32:34 -08:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2021-06-04 14:53:39 -07:00
version = "0.9.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 14:53:39 -07:00
checksum = "4ec02e091aa634e2c3ada4a392989e7c3116673ef0ac5b72232439094d73b7fd"
dependencies = [
"cfg-if",
"crossbeam-utils",
"lazy_static",
"memoffset",
2020-04-30 12:16:18 -07:00
"scopeguard",
]
2021-02-20 10:32:34 -08:00
[[package]]
name = "crossbeam-utils"
2021-06-04 14:53:39 -07:00
version = "0.8.5"
2021-02-20 10:32:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 14:53:39 -07:00
checksum = "d82cfc11ce7f2c3faef78d8a684447b40d503d9681acebed6cb728d45940c4db"
2021-02-20 10:32:34 -08:00
dependencies = [
"cfg-if",
2021-02-20 10:32:34 -08:00
"lazy_static",
]
[[package]]
name = "crunchy"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-30 12:16:18 -07:00
checksum = "a2f4a431c5c9f662e1200b7c7f02c34e91361150e382089a8f2dec3ba680cbda"
[[package]]
name = "crypto-mac"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1d1a86f49236c215f271d40892d5fc950490551400b02ef360692c29815c714"
dependencies = [
"generic-array",
"subtle",
]
[[package]]
name = "curve25519-dalek"
2021-09-14 09:45:37 -07:00
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "0b9fdf9972b2bd6af2d913799d9ebc165ea4d2e65878e329d9c6b372c4491b61"
dependencies = [
"byteorder",
2020-08-25 04:22:37 -07:00
"digest",
"rand_core 0.5.1",
"subtle",
"zeroize",
]
[[package]]
name = "dashmap"
version = "4.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e77a43b28d0668df09411cb0bc9a8c2adc40f9a048afe863e05fd43251e8e39c"
dependencies = [
"cfg-if",
"num_cpus",
]
[[package]]
name = "digest"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3dd60d1080a57a05ab032377049e0591415d2b31afd7028356dbf3cc6dcb066"
dependencies = [
2020-08-25 04:22:37 -07:00
"generic-array",
]
[[package]]
name = "directories"
version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f51c5d4ddabd36886dd3e1438cb358cdcb0d7c499cb99cb4ac2e38e18b5cb210"
dependencies = [
"dirs-sys",
]
[[package]]
name = "dirs-sys"
2021-06-04 14:53:39 -07:00
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 14:53:39 -07:00
checksum = "03d86534ed367a67548dc68113a0f5db55432fdfbb6e6f9d77704397d95d5780"
dependencies = [
2020-04-30 12:16:18 -07:00
"libc",
"redox_users",
2020-04-30 12:16:18 -07:00
"winapi",
]
[[package]]
name = "ed25519-zebra"
2021-11-29 11:58:59 -08:00
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "403ef3e961ab98f0ba902771d29f842058578bb1ce7e3c59dad5a6a93e784c69"
dependencies = [
"curve25519-dalek",
"hex",
"rand_core 0.6.3",
"serde",
2020-08-25 04:22:37 -07:00
"sha2",
"thiserror",
"zeroize",
]
[[package]]
name = "either"
version = "1.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e78d4f1cc4ae33bbfc157ed5d5a5ef3bc29227303d595861deb238fcec4e9457"
[[package]]
name = "endian-type"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c34f04666d835ff5d62e058c3995147c06f42fe86ff053337632bca83e42702d"
[[package]]
name = "equihash"
version = "0.1.0"
source = "git+https://github.com/zcash/librustzcash.git?rev=53d0a51d33a421cb76d3e3124d1e4c1c9036068e#53d0a51d33a421cb76d3e3124d1e4c1c9036068e"
dependencies = [
"blake2b_simd",
"byteorder",
]
[[package]]
name = "f4jumble"
version = "0.0.0"
source = "git+https://github.com/zcash/librustzcash.git?rev=53d0a51d33a421cb76d3e3124d1e4c1c9036068e#53d0a51d33a421cb76d3e3124d1e4c1c9036068e"
dependencies = [
"blake2b_simd",
]
[[package]]
name = "ff"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b2958d04124b9f27f175eaeb9a9f383d026098aa837eadd8ba22c11f13a05b9e"
dependencies = [
"bitvec",
"rand_core 0.6.3",
"subtle",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "fpe"
2021-11-05 09:20:58 -07:00
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "cd910db5f9ca4dc3116f8c46367825807aa2b942f72565f16b4be0b208a00a9e"
dependencies = [
"block-modes",
"cipher",
"libm",
"num-bigint",
2020-04-30 12:16:18 -07:00
"num-integer",
"num-traits",
]
[[package]]
name = "funty"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1847abb9cb65d566acd5942e94aea9c8f547ad02c98e1649326fc0e8910b8b1e"
[[package]]
name = "futures-channel"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5da6ba8c3bb3c165d3c7319fc1cc8304facf1fb8db99c5de877183c08a273888"
dependencies = [
"futures-core",
]
[[package]]
name = "futures-core"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88d1c26957f23603395cd326b0ffe64124b818f4449552f960d815cfba83a53d"
[[package]]
name = "futures-task"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d3d00f4eddb73e498a54394f228cd55853bdf059259e8e7bc6e69d408892e99"
[[package]]
name = "futures-util"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36568465210a3a6ee45e1f165136d68671471a501e632e9a98d96872222b5481"
dependencies = [
"autocfg",
"futures-core",
"futures-task",
"pin-project-lite",
"pin-utils",
]
[[package]]
name = "generic-array"
version = "0.14.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "501466ecc8a30d1d3b7fc9229b122b2ce8ed6e9d9223f1138d4babb253e51817"
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2021-02-20 10:32:34 -08:00
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-20 10:32:34 -08:00
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
dependencies = [
"cfg-if",
2020-04-30 12:16:18 -07:00
"libc",
2020-09-22 14:07:27 -07:00
"wasi 0.9.0+wasi-snapshot-preview1",
]
2021-06-04 14:53:39 -07:00
[[package]]
name = "getrandom"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcd999463524c52659517fe2cea98493cfe485d10565e7b0fb07dbba7ad2753"
dependencies = [
"cfg-if",
2021-06-04 14:53:39 -07:00
"libc",
"wasi 0.10.2+wasi-snapshot-preview1",
]
[[package]]
name = "group"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc5ac374b108929de78460075f3dc439fa66df9d8fc77e8f12caa5165fcf0c89"
2020-04-30 12:16:18 -07:00
dependencies = [
"byteorder",
2020-04-30 12:16:18 -07:00
"ff",
"rand_core 0.6.3",
"subtle",
2020-04-30 12:16:18 -07:00
]
[[package]]
name = "halo2"
version = "0.1.0-beta.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0f186b85ed81082fb1cf59d52b0111f02915e89a4ac61d292b38d075e570f3a9"
dependencies = [
"blake2b_simd",
"ff",
"group",
"pasta_curves",
"rand",
"rayon",
]
[[package]]
name = "hashbrown"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab5ef0d4909ef3724cc8cce6ccc8572c5c817592e9285f5464f8e86f8bd3726e"
dependencies = [
"ahash",
]
2020-08-25 04:22:37 -07:00
[[package]]
name = "hermit-abi"
2021-06-24 08:45:14 -07:00
version = "0.1.19"
2020-08-25 04:22:37 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-24 08:45:14 -07:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2020-08-25 04:22:37 -07:00
dependencies = [
"libc",
]
[[package]]
name = "hex"
2021-03-26 14:42:04 -07:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-26 14:42:04 -07:00
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "hmac"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a2a2320eb7ec0ebe8da8f744d7812d9fc4cb4d09344ac01898dbcb6a20ae69b"
dependencies = [
"crypto-mac",
"digest",
]
[[package]]
name = "http"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1323096b05d41827dadeaee54c9981958c0f94e670bc94ed80037d1a7b8b186b"
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
2021-11-05 09:20:58 -07:00
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "1ff4f84919677303da5f147645dbea6b1881f368d03ac84e1dc09031ebd7b2c6"
dependencies = [
"bytes",
"http",
"pin-project-lite",
]
[[package]]
name = "httparse"
2021-09-14 09:45:37 -07:00
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "acd94fdbe1d4ff688b67b04eee2e17bd50995534a61539e45adfefb45e5e5503"
[[package]]
name = "httpdate"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "494b4d60369511e7dea41cf646832512a94e542f68bb9c49e54518e0f468eb47"
[[package]]
name = "hyper"
version = "0.14.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12219dc884514cb4a6a03737f4413c0e01c23a1b059b0156004b23f1e19dccbe"
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"http",
"http-body",
"httparse",
"httpdate",
"itoa",
"pin-project",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "incrementalmerkletree"
version = "0.1.0"
source = "git+https://github.com/zcash/incrementalmerkletree?rev=b7bd6246122a6e9ace8edb51553fbf5228906cbb#b7bd6246122a6e9ace8edb51553fbf5228906cbb"
dependencies = [
"serde",
]
[[package]]
name = "indexmap"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc633605454125dec4b66843673f01c7df2b89479b32e0ed634e43a91cff62a5"
dependencies = [
"autocfg",
"hashbrown",
]
[[package]]
name = "instant"
2021-11-05 09:20:58 -07:00
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
"cfg-if",
]
[[package]]
name = "ipnet"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68f2d64f2edebec4ce84ad108148e67e1064789bee435edc5b60ad398714a3a9"
[[package]]
name = "itoa"
2021-09-14 09:45:37 -07:00
version = "0.4.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2021-09-17 05:52:09 -07:00
[[package]]
name = "js-sys"
version = "0.3.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cc9ffccd38c451a86bf13657df244e9c3f37493cce8e5e21e940963777acc84"
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "jubjub"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2e7baec19d4e83f9145d4891178101a604565edff9645770fc979804138b04c"
dependencies = [
"bitvec",
"bls12_381",
"ff",
"group",
"rand_core 0.6.3",
"subtle",
]
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-30 12:16:18 -07:00
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
version = "0.2.112"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b03d17f364a3a042d5e5d46b053bbbf82c92c9430c592dd4c064dc6ee997125"
[[package]]
name = "libm"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7d73b3f436185384286bd8098d17ec07c9a7d2388a6599f824d8502b529702a"
[[package]]
name = "librustzcash"
version = "0.2.0"
dependencies = [
2020-04-30 12:16:18 -07:00
"bellman",
"blake2b_simd",
2020-04-30 12:16:18 -07:00
"blake2s_simd",
"bls12_381",
"byteorder",
"ed25519-zebra",
"group",
"hyper",
"incrementalmerkletree",
"ipnet",
"jubjub",
2020-04-30 12:16:18 -07:00
"libc",
"memuse",
"metrics",
"metrics-exporter-prometheus",
"nonempty",
"orchard",
"rand_core 0.6.3",
"subtle",
"thiserror",
"tokio",
"tracing",
"tracing-appender",
"tracing-core",
"tracing-subscriber",
"zcash_address",
2020-04-30 12:16:18 -07:00
"zcash_history",
"zcash_note_encryption",
2020-04-30 12:16:18 -07:00
"zcash_primitives",
"zcash_proofs",
]
[[package]]
name = "lock_api"
2021-09-14 09:45:37 -07:00
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "712a4d093c9976e24e7dbca41db895dabcbac38eb5f4045393d17a95bdfb1109"
dependencies = [
"scopeguard",
]
[[package]]
name = "log"
2021-02-20 10:32:34 -08:00
version = "0.4.14"
2021-02-18 04:02:36 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-20 10:32:34 -08:00
checksum = "51b9bbe6c47d51fc3e1a9b945965946b4c44142ab8792c50835a980d362c2710"
2021-02-18 04:02:36 -08:00
dependencies = [
"cfg-if",
2021-02-18 04:02:36 -08:00
]
[[package]]
name = "mach"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b823e83b2affd8f40a9ee8c29dbc56404c1e34cd2710921f2801e2cf29527afa"
dependencies = [
"libc",
]
[[package]]
name = "matchers"
2021-11-05 09:27:43 -07:00
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:27:43 -07:00
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata",
]
[[package]]
name = "memchr"
2021-09-14 09:45:37 -07:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "308cc39be01b73d0d18f82a0e7b2a3df85245f84af96fdddc5d202d27e47b86a"
[[package]]
2020-04-30 12:16:18 -07:00
name = "memoffset"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
dependencies = [
"autocfg",
]
[[package]]
name = "memuse"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f69d25cd7528769ad3d897e99eb942774bff8b23165012af490351a44c5b583b"
dependencies = [
"nonempty",
]
[[package]]
name = "metrics"
2021-07-30 10:20:36 -07:00
version = "0.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-30 10:20:36 -07:00
checksum = "a00f42f354a2ed4894db863b3a4db47aef2d2e4435b937221749bd37a8a7aaa8"
dependencies = [
2021-07-30 10:20:36 -07:00
"ahash",
"metrics-macros",
"proc-macro-hack",
]
[[package]]
name = "metrics-exporter-prometheus"
2021-09-17 05:52:09 -07:00
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-17 05:52:09 -07:00
checksum = "343a5ceb38235928e7a5687412590f07e6d281522dcd9ff51246f8856eef5fe5"
dependencies = [
"hyper",
"ipnet",
"metrics",
"metrics-util",
"parking_lot",
"quanta",
"thiserror",
"tokio",
]
[[package]]
name = "metrics-macros"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "caa72e4a3d157986dd2565c82ecbddcc23941513669a3766b938f6b72eb87f3f"
dependencies = [
"lazy_static",
"proc-macro-hack",
"proc-macro2",
"quote",
"regex",
"syn",
]
[[package]]
name = "metrics-util"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1174223789e331d9d47a4a953dac36e397db60fa8d2a111ac505388c6c7fe32e"
dependencies = [
2021-07-30 10:20:36 -07:00
"ahash",
"aho-corasick",
"atomic-shim",
"crossbeam-epoch",
"crossbeam-utils",
"dashmap",
"hashbrown",
"indexmap",
"metrics",
"num_cpus",
"ordered-float",
"parking_lot",
"quanta",
"radix_trie",
"sketches-ddsketch",
]
[[package]]
name = "mio"
2021-11-05 09:20:58 -07:00
version = "0.7.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "8067b404fe97c70829f082dec8bcf4f71225d7eaea1d8645349cb76fa06205cc"
dependencies = [
"libc",
"log",
"miow",
"ntapi",
"winapi",
]
[[package]]
name = "miow"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9f1c5b025cda876f66ef43a113f91ebc9f4ccef34843000e0adf6ebbab84e21"
dependencies = [
"winapi",
]
[[package]]
name = "nibble_vec"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
dependencies = [
"smallvec",
]
[[package]]
name = "nonempty"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9e591e719385e6ebaeb5ce5d3887f7d5676fceca6411d1925ccc95745f3d6f7"
[[package]]
name = "ntapi"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f6bb902e437b6d86e03cce10a7e2af662292c5dfef23b65899ea3ac9354ad44"
dependencies = [
"winapi",
]
[[package]]
name = "num-bigint"
2021-11-05 09:20:58 -07:00
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-integer"
2020-11-10 13:39:55 -08:00
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-10 13:39:55 -08:00
checksum = "d2cc698a63b549a70bc047073d2949cce27cd1c7b0a4a862d08a8031bc2801db"
dependencies = [
"autocfg",
2020-04-30 12:16:18 -07:00
"num-traits",
]
[[package]]
name = "num-traits"
2020-11-10 13:39:55 -08:00
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-11-10 13:39:55 -08:00
checksum = "9a64b1ec5cda2586e284722486d802acf1f7dbdc623e2bfc57e65ca1cd099290"
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2020-08-25 04:22:37 -07:00
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-25 04:22:37 -07:00
checksum = "05499f3756671c15885fee9034446956fff3f243d6077b91e5767df161f766b3"
dependencies = [
2020-08-25 04:22:37 -07:00
"hermit-abi",
2020-04-30 12:16:18 -07:00
"libc",
]
2021-02-20 10:32:34 -08:00
[[package]]
name = "once_cell"
version = "1.9.0"
2021-02-20 10:32:34 -08:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da32515d9f6e6e489d7bc9d84c71b060db7247dc035bbe44eac88cf87486d8d5"
2021-02-20 10:32:34 -08:00
[[package]]
name = "opaque-debug"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "624a8340c38c1b80fd549087862da4ba43e08858af025b236e509b6649fc13d5"
[[package]]
name = "orchard"
version = "0.0.0"
source = "git+https://github.com/zcash/orchard.git?rev=2c8241f25b943aa05203eacf9905db117c69bd29#2c8241f25b943aa05203eacf9905db117c69bd29"
dependencies = [
"aes",
2021-11-05 09:20:58 -07:00
"arrayvec 0.7.2",
"bigint",
"bitvec",
"blake2b_simd",
"ff",
"fpe",
"group",
"halo2",
"incrementalmerkletree",
"lazy_static",
"memuse",
"nonempty",
"pasta_curves",
"rand",
"reddsa",
"serde",
"subtle",
"zcash_note_encryption",
]
[[package]]
name = "ordered-float"
2021-09-14 09:45:37 -07:00
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "97c9d06878b3a851e8026ef94bf7fef9ba93062cd412601da4d9cf369b1cc62d"
dependencies = [
"num-traits",
]
[[package]]
name = "pairing"
version = "0.21.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2e415e349a3006dd7d9482cdab1c980a845bed1377777d768cb693a44540b42"
dependencies = [
2020-04-30 12:16:18 -07:00
"group",
]
[[package]]
name = "parking_lot"
2021-09-14 09:45:37 -07:00
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
"instant",
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2021-09-14 09:45:37 -07:00
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "d76e8e1493bcac0d2766c42737f34458f1c8c50c0d23bcb24ea953affb273216"
dependencies = [
"cfg-if",
"instant",
"libc",
2021-06-04 14:53:39 -07:00
"redox_syscall",
"smallvec",
"winapi",
]
[[package]]
name = "password-hash"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d791538a6dcc1e7cb7fe6f6b58aca40e7f79403c45b2bc274008b5e647af1d8"
dependencies = [
"base64ct",
"rand_core 0.6.3",
"subtle",
]
[[package]]
name = "pasta_curves"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d647d91972bad78120fd61e06b225fcda117805c9bbf17676b51bd03a251278b"
dependencies = [
"blake2b_simd",
"ff",
"group",
"lazy_static",
"rand",
"static_assertions",
"subtle",
]
[[package]]
name = "pbkdf2"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f05894bce6a1ba4be299d0c5f29563e08af2bc18bb7d48313113bed71e904739"
dependencies = [
"crypto-mac",
"password-hash",
]
[[package]]
name = "pin-project"
2021-07-30 10:15:22 -07:00
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-30 10:15:22 -07:00
checksum = "576bc800220cc65dac09e99e97b08b358cfab6e17078de8dc5fee223bd2d0c08"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2021-07-30 10:15:22 -07:00
version = "1.0.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-30 10:15:22 -07:00
checksum = "6e8fe8163d14ce7f0cdac2e040116f22eac817edabff0be91e8aff7e9accf389"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2020-10-05 12:01:58 -07:00
[[package]]
name = "pin-project-lite"
version = "0.2.7"
2020-10-05 12:01:58 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d31d11c69a6b52a174b42bdc0c30e5e11670f90788b2c471c31c1d17d449443"
2020-10-05 12:01:58 -07:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "poly1305"
version = "0.7.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "048aeb476be11a4b6ca432ca569e375810de9294ae78f4774e78ea98a9246ede"
dependencies = [
"cpufeatures",
"opaque-debug",
"universal-hash",
]
[[package]]
name = "ppv-lite86"
2021-11-05 09:20:58 -07:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "ed0cfbc8191465bed66e1718596ee0b0b35d5ee1f41c5df2189d0fe8bde535ba"
[[package]]
name = "proc-macro-hack"
version = "0.5.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
[[package]]
name = "proc-macro2"
version = "1.0.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f84e92c0f7c9d58328b85a78557813e4bd845130db68d7184635344399423b1"
dependencies = [
2020-04-30 12:16:18 -07:00
"unicode-xid",
]
[[package]]
name = "quanta"
2021-09-17 05:52:09 -07:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-17 05:52:09 -07:00
checksum = "20afe714292d5e879d8b12740aa223c6a88f118af41870e8b6196e39a02238a8"
dependencies = [
"crossbeam-utils",
"libc",
"mach",
"once_cell",
"raw-cpuid",
2021-09-17 05:52:09 -07:00
"wasi 0.10.2+wasi-snapshot-preview1",
"web-sys",
"winapi",
]
[[package]]
name = "quote"
2021-10-08 09:53:00 -07:00
version = "1.0.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 09:53:00 -07:00
checksum = "38bc8cc6a5f2e3655e0899c1b848643b2562f853f114bfec7be120678e3ace05"
dependencies = [
2020-04-30 12:16:18 -07:00
"proc-macro2",
]
[[package]]
name = "radium"
version = "0.6.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "643f8f41a8ebc4c5dc4515c82bb8abd397b527fc20fd681b7c011c2aee5d44fb"
[[package]]
name = "radix_trie"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
dependencies = [
"endian-type",
"nibble_vec",
]
[[package]]
name = "rand"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e7573632e6454cf6b99d7aac4ccca54be06da05aca2ef7423d22d27d4d4bcd8"
dependencies = [
2020-04-30 12:16:18 -07:00
"libc",
"rand_chacha",
"rand_core 0.6.3",
2020-04-30 12:16:18 -07:00
"rand_hc",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
2020-08-25 04:22:37 -07:00
"ppv-lite86",
"rand_core 0.6.3",
]
[[package]]
name = "rand_core"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-30 12:16:18 -07:00
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
dependencies = [
2021-06-04 14:53:39 -07:00
"getrandom 0.1.16",
]
[[package]]
name = "rand_core"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
dependencies = [
"getrandom 0.2.3",
]
[[package]]
name = "rand_hc"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d51e9f596de227fda2ea6c84607f5558e196eeaf43c986b724ba4fb8fdf497e7"
dependencies = [
"rand_core 0.6.3",
]
[[package]]
name = "raw-cpuid"
2021-09-17 05:52:09 -07:00
version = "10.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-17 05:52:09 -07:00
checksum = "929f54e29691d4e6a9cc558479de70db7aa3d98cd6fe7ab86d7507aa2886b9d2"
dependencies = [
"bitflags",
]
[[package]]
name = "rayon"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c06aca804d41dbc8ba42dfd964f0d01334eceb64314b9ecf7c5fad5188a06d90"
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d78120e2c850279833f1dd3582f730c4ab53ed95aeaaaa862a2a5c71b1656d8e"
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"lazy_static",
"num_cpus",
]
[[package]]
name = "reddsa"
version = "0.0.0"
source = "git+https://github.com/str4d/redjubjub.git?rev=416a6a8ebf8bd42c114c938883016c04f338de72#416a6a8ebf8bd42c114c938883016c04f338de72"
dependencies = [
"blake2b_simd",
"byteorder",
"digest",
"group",
"jubjub",
"pasta_curves",
"rand_core 0.6.3",
"serde",
"thiserror",
"zeroize",
]
[[package]]
name = "redox_syscall"
2021-09-14 09:45:37 -07:00
version = "0.2.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff"
dependencies = [
"bitflags",
]
[[package]]
name = "redox_users"
2021-06-04 14:53:39 -07:00
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 14:53:39 -07:00
checksum = "528532f3d801c87aec9def2add9ca802fe569e44a544afe633765267840abe64"
dependencies = [
2021-06-04 14:53:39 -07:00
"getrandom 0.2.3",
"redox_syscall",
]
[[package]]
name = "regex"
2021-06-04 14:53:39 -07:00
version = "1.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 14:53:39 -07:00
checksum = "d07a8629359eb56f1e2fb1652bb04212c072a87ba68546a04065d525673ac461"
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
[[package]]
name = "regex-automata"
2021-06-04 14:53:39 -07:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 14:53:39 -07:00
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax",
]
[[package]]
name = "regex-syntax"
2021-06-04 14:53:39 -07:00
version = "0.6.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 14:53:39 -07:00
checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
[[package]]
name = "scopeguard"
2020-08-25 04:22:37 -07:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-25 04:22:37 -07:00
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "serde"
version = "1.0.131"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4ad69dfbd3e45369132cc64e6748c2d65cdfb001a2b1c232d128b4ad60561c1"
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
version = "1.0.131"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b710a83c4e0dff6a3d511946b95274ad9ca9e5d3ae497b63fda866ac955358d2"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "sha2"
2021-09-14 09:45:37 -07:00
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "b69f9a4c9740d74c5baa3fd2e547f9525fa8088a8a958e0ca2409a514e33f5fa"
dependencies = [
2020-08-25 04:22:37 -07:00
"block-buffer",
"cfg-if",
2021-06-04 14:53:39 -07:00
"cpufeatures",
2020-08-25 04:22:37 -07:00
"digest",
"opaque-debug",
]
[[package]]
name = "sharded-slab"
2021-11-05 09:20:58 -07:00
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "900fba806f70c630b0a382d0d825e17a0f19fcd059a2ade1ff237bcddf446b31"
dependencies = [
"lazy_static",
]
[[package]]
name = "sketches-ddsketch"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "76a77a8fd93886010f05e7ea0720e569d6d16c65329dbe3ec033bbbccccb017b"
[[package]]
name = "smallvec"
2021-10-08 09:53:00 -07:00
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 09:53:00 -07:00
checksum = "1ecab6c735a6bb4139c0caafd0cc3635748bbb3acf4550e8138122099251f309"
[[package]]
name = "socket2"
version = "0.3.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "122e570113d28d773067fab24266b66753f6ea915758651696b6e35e49f88d6e"
dependencies = [
"cfg-if",
"libc",
"winapi",
]
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "subtle"
2021-07-30 10:15:22 -07:00
version = "2.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-07-30 10:15:22 -07:00
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
[[package]]
name = "syn"
2021-11-29 11:56:48 -08:00
version = "1.0.82"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-29 11:56:48 -08:00
checksum = "8daf5dd0bb60cbd4137b1b587d2fc0ae729bc07cf01cd70b36a1ed5ade3b9d59"
dependencies = [
2020-04-30 12:16:18 -07:00
"proc-macro2",
"quote",
"unicode-xid",
]
[[package]]
name = "synstructure"
2021-11-05 09:20:58 -07:00
version = "0.12.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "f36bdaa60a83aca3921b5259d5400cbf5e90fc51931376a9bd4a0eb79aa7210f"
dependencies = [
"proc-macro2",
"quote",
"syn",
"unicode-xid",
]
[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
[[package]]
name = "thiserror"
2021-11-05 09:20:58 -07:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "854babe52e4df1653706b98fcfc05843010039b406875930a70e4d9644e5c417"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2021-11-05 09:20:58 -07:00
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "aa32fd3f627f367fe16f893e2597ae3c05020f8bba2666a4e6ea73d377e5714b"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "thread_local"
2021-02-20 10:32:34 -08:00
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-20 10:32:34 -08:00
checksum = "8018d24e04c95ac8790716a5987d0fec4f8b27249ffa0f7d33f1369bdfb88cbd"
dependencies = [
2021-02-20 10:32:34 -08:00
"once_cell",
]
[[package]]
name = "time"
2021-11-29 11:56:48 -08:00
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-29 11:56:48 -08:00
checksum = "41effe7cfa8af36f439fac33861b66b049edc6f9a32331e2312660529c1c24ad"
dependencies = [
2021-11-05 09:27:43 -07:00
"itoa",
"libc",
]
[[package]]
name = "tinyvec"
2021-11-29 11:56:48 -08:00
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-29 11:56:48 -08:00
checksum = "2c1c1d5a42b6245520c249549ec267180beaffcc0615401ac8e31853d4b6d8d2"
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
[[package]]
name = "tokio"
version = "1.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbbf1c778ec206785635ce8ad57fe52b3009ae9e0c9f574a728f3049d3e55838"
dependencies = [
"libc",
"mio",
"pin-project-lite",
"tokio-macros",
"winapi",
]
[[package]]
name = "tokio-macros"
version = "1.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b557f72f448c511a979e2564e55d74e6c4432fc96ff4f6241bc6bded342643b7"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tower-service"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "360dfd1d6d30e05fda32ace2c8c70e9c0a9da713275777f5a4dbb8a1893930c6"
[[package]]
name = "tracing"
2021-10-08 09:53:00 -07:00
version = "0.1.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 09:53:00 -07:00
checksum = "375a639232caf30edfc78e8d89b2d4c375515393e7af7e16f01cd96917fb2105"
dependencies = [
"cfg-if",
2020-10-05 12:01:58 -07:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-appender"
2021-11-05 09:27:43 -07:00
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:27:43 -07:00
checksum = "94571df2eae3ed4353815ea5a90974a594a1792d8782ff2cbcc9392d1101f366"
dependencies = [
"crossbeam-channel",
2021-11-05 09:27:43 -07:00
"time",
"tracing-subscriber",
]
[[package]]
name = "tracing-attributes"
2021-10-08 09:53:00 -07:00
version = "0.1.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 09:53:00 -07:00
checksum = "f4f480b8f81512e825f337ad51e94c1eb5d3bbdf2b363dcd01e2b19a9ffe3f8e"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-core"
2021-10-08 09:53:00 -07:00
version = "0.1.21"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-08 09:53:00 -07:00
checksum = "1f4ed65637b8390770814083d20756f87bfa2c21bf2f110babdc5438351746e4"
dependencies = [
"lazy_static",
]
[[package]]
name = "tracing-subscriber"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "245da694cc7fc4729f3f418b304cb57789f1bed2a78c575407ab8a23f53cb4d3"
dependencies = [
"ansi_term",
"lazy_static",
"matchers",
"regex",
"sharded-slab",
2020-08-25 04:22:37 -07:00
"thread_local",
2021-11-05 09:27:43 -07:00
"time",
2020-11-10 13:39:55 -08:00
"tracing",
"tracing-core",
]
[[package]]
name = "try-lock"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
[[package]]
name = "typenum"
2021-09-14 09:45:37 -07:00
version = "1.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-14 09:45:37 -07:00
checksum = "b63708a265f51345575b27fe43f9500ad611579e764c79edbc2037b1121959ec"
[[package]]
name = "unicode-normalization"
version = "0.1.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d54590932941a9e9266f0832deed84ebe1bf2e4c9e4a3554d393d18f5e854bf9"
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-xid"
2021-06-04 14:53:39 -07:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 14:53:39 -07:00
checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
[[package]]
name = "universal-hash"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f214e8f697e925001e66ec2c6e37a4ef93f0f78c2eed7814394e10c62025b05"
dependencies = [
"generic-array",
"subtle",
]
[[package]]
name = "version_check"
2021-03-26 14:42:04 -07:00
version = "0.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-03-26 14:42:04 -07:00
checksum = "5fecdca9a5291cc2b8dcf7dc02453fee791a280f3743cb0905f8822ae463b3fe"
[[package]]
name = "want"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
dependencies = [
"log",
"try-lock",
]
[[package]]
name = "wasi"
2020-08-25 04:22:37 -07:00
version = "0.9.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-25 04:22:37 -07:00
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
2020-09-22 14:07:27 -07:00
[[package]]
name = "wasi"
2021-06-04 14:53:39 -07:00
version = "0.10.2+wasi-snapshot-preview1"
2020-09-22 14:07:27 -07:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-06-04 14:53:39 -07:00
checksum = "fd6fbd9a79829dd1ad0cc20627bf1ed606756a7f77edff7b66b7064f9cb327c6"
2020-09-22 14:07:27 -07:00
2021-09-17 05:52:09 -07:00
[[package]]
name = "wasm-bindgen"
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "632f73e236b219150ea279196e54e610f5dbafa5d61786303d4da54f84e47fce"
dependencies = [
"cfg-if",
2021-09-17 05:52:09 -07:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a317bf8f9fba2476b4b2c85ef4c4af8ff39c3c7f0cdfeed4f82c34a880aa837b"
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d56146e7c495528bf6587663bea13a8eb588d39b36b679d83972e1a2dbbdacf9"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7803e0eea25835f8abdc585cd3021b3deb11543c6fe226dcd30b228857c5c5ab"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
version = "0.2.78"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc"
[[package]]
name = "web-sys"
version = "0.3.55"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38eb105f1c59d9eaa6b5cdc92b859d85b926e82cb2e0945cd0c9259faa6fe9fb"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "winapi"
2020-08-25 04:22:37 -07:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-08-25 04:22:37 -07:00
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
2020-04-30 12:16:18 -07:00
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-30 12:16:18 -07:00
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2020-04-30 12:16:18 -07:00
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
[[package]]
name = "wyz"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "129e027ad65ce1453680623c3fb5163cbf7107bfe1aa32257e7d0e63f9ced188"
dependencies = [
"tap",
]
[[package]]
name = "zcash_address"
version = "0.0.0"
source = "git+https://github.com/zcash/librustzcash.git?rev=53d0a51d33a421cb76d3e3124d1e4c1c9036068e#53d0a51d33a421cb76d3e3124d1e4c1c9036068e"
dependencies = [
"bech32",
"blake2b_simd",
"bs58",
"f4jumble",
"zcash_encoding",
]
[[package]]
name = "zcash_encoding"
version = "0.0.0"
source = "git+https://github.com/zcash/librustzcash.git?rev=53d0a51d33a421cb76d3e3124d1e4c1c9036068e#53d0a51d33a421cb76d3e3124d1e4c1c9036068e"
dependencies = [
"byteorder",
"nonempty",
]
[[package]]
name = "zcash_history"
version = "0.2.0"
source = "git+https://github.com/zcash/librustzcash.git?rev=53d0a51d33a421cb76d3e3124d1e4c1c9036068e#53d0a51d33a421cb76d3e3124d1e4c1c9036068e"
dependencies = [
2020-04-30 12:16:18 -07:00
"bigint",
"blake2b_simd",
"byteorder",
]
[[package]]
name = "zcash_note_encryption"
version = "0.0.0"
source = "git+https://github.com/zcash/librustzcash.git?rev=53d0a51d33a421cb76d3e3124d1e4c1c9036068e#53d0a51d33a421cb76d3e3124d1e4c1c9036068e"
dependencies = [
"blake2b_simd",
"byteorder",
"chacha20",
"chacha20poly1305",
"ff",
"group",
"rand_core 0.6.3",
"subtle",
]
[[package]]
name = "zcash_primitives"
2021-03-26 14:42:35 -07:00
version = "0.5.0"
source = "git+https://github.com/zcash/librustzcash.git?rev=53d0a51d33a421cb76d3e3124d1e4c1c9036068e#53d0a51d33a421cb76d3e3124d1e4c1c9036068e"
dependencies = [
"aes",
"bip0039",
"bitvec",
2020-04-30 12:16:18 -07:00
"blake2b_simd",
"blake2s_simd",
"bls12_381",
2020-04-30 12:16:18 -07:00
"byteorder",
"chacha20poly1305",
"equihash",
2020-04-30 12:16:18 -07:00
"ff",
"fpe",
"group",
"hex",
"incrementalmerkletree",
"jubjub",
2020-04-30 12:16:18 -07:00
"lazy_static",
"log",
"memuse",
"nonempty",
"orchard",
"pasta_curves",
2020-04-30 12:16:18 -07:00
"rand",
"rand_core 0.6.3",
2020-08-25 04:22:37 -07:00
"sha2",
"subtle",
"zcash_encoding",
"zcash_note_encryption",
]
[[package]]
name = "zcash_proofs"
2021-03-26 14:42:35 -07:00
version = "0.5.0"
source = "git+https://github.com/zcash/librustzcash.git?rev=53d0a51d33a421cb76d3e3124d1e4c1c9036068e#53d0a51d33a421cb76d3e3124d1e4c1c9036068e"
dependencies = [
2020-04-30 12:16:18 -07:00
"bellman",
"blake2b_simd",
"bls12_381",
2020-04-30 12:16:18 -07:00
"byteorder",
"directories",
"ff",
"group",
"jubjub",
"lazy_static",
"rand_core 0.6.3",
2020-04-30 12:16:18 -07:00
"zcash_primitives",
]
[[package]]
name = "zeroize"
2021-11-05 09:20:58 -07:00
version = "1.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "d68d9dcec5f9b43a30d38c49f91dfedfaac384cb8f085faca366c26207dd1619"
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
2021-11-05 09:20:58 -07:00
version = "1.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-05 09:20:58 -07:00
checksum = "65f1a51723ec88c66d5d1fe80c841f17f63587d6691901d66be9bec6c3b51f73"
dependencies = [
"proc-macro2",
"quote",
"syn",
"synstructure",
]