retina/Cargo.lock

1473 lines
37 KiB
Plaintext
Raw Normal View History

2021-06-04 03:26:45 +04:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2021-06-29 01:13:18 +04:00
version = 3
2021-06-04 03:26:45 +04:00
[[package]]
name = "ansi_term"
2021-11-30 23:41:39 +04:00
version = "0.12.1"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-30 23:41:39 +04:00
checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
2021-06-04 03:26:45 +04:00
dependencies = [
"winapi",
]
[[package]]
name = "anyhow"
2022-07-11 22:59:40 +04:00
version = "1.0.58"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "bb07d2053ccdbe10e2af2995a2f116c1330396493dc1269f6a91d0ae82e19704"
2021-06-04 03:26:45 +04:00
[[package]]
name = "atty"
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
dependencies = [
"hermit-abi",
"libc",
"winapi",
]
[[package]]
name = "autocfg"
2022-04-01 21:35:41 +04:00
version = "1.1.0"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
2021-06-04 03:26:45 +04:00
[[package]]
name = "base64"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "904dfeac50f3cdaba28fc6f57fdcddb75f49ed61346676a78c4ffe55877802fd"
[[package]]
name = "bitflags"
2021-09-08 06:27:26 +04:00
version = "1.3.2"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 06:27:26 +04:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2021-06-04 03:26:45 +04:00
[[package]]
name = "bitreader"
2022-07-11 22:59:40 +04:00
version = "0.3.6"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "d84ea71c85d1fe98fe67a9b9988b1695bc24c0b0d3bfb18d4c510f44b4b09941"
2021-06-04 03:26:45 +04:00
dependencies = [
"cfg-if",
]
[[package]]
name = "block-buffer"
2022-07-11 22:59:40 +04:00
version = "0.10.2"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "0bf7fe51849ea569fd452f37822f606a5cabb684dc918707a0193fd4664ff324"
2021-06-04 03:26:45 +04:00
dependencies = [
"generic-array",
]
2021-06-10 10:39:27 +04:00
[[package]]
name = "bstr"
version = "0.2.17"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3569f383e8f1598449f1a423e72e99569137b47740b1da11ef19af3d5c3223"
2021-06-10 10:39:27 +04:00
dependencies = [
"lazy_static",
"memchr",
"regex-automata",
"serde",
]
[[package]]
name = "bumpalo"
2022-07-11 22:59:40 +04:00
version = "3.10.0"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "37ccbd214614c6783386c1af30caf03192f17891059cecc394b4fb119e363de3"
2021-06-10 10:39:27 +04:00
2021-06-04 03:26:45 +04:00
[[package]]
name = "bytes"
2021-09-08 06:27:26 +04:00
version = "1.1.0"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 06:27:26 +04:00
checksum = "c4872d67bab6358e59559027aa3b9157c53d9358c51423c17554809a8858e0f8"
2021-06-04 03:26:45 +04:00
2021-06-10 10:39:27 +04:00
[[package]]
name = "cast"
2021-09-08 06:27:26 +04:00
version = "0.2.7"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 06:27:26 +04:00
checksum = "4c24dab4283a142afa2fdca129b80ad2c6284e073930f964c3a1293c225ee39a"
2021-06-10 10:39:27 +04:00
dependencies = [
"rustc_version",
]
2022-07-11 22:59:40 +04:00
[[package]]
name = "cast"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
2021-06-04 03:26:45 +04:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "chrono"
version = "0.4.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "670ad68c9088c2a963aaa298cb369688cf3f9465ce5e2d4ca10e6e0098a1ce73"
dependencies = [
"libc",
"num-integer",
"num-traits",
"time",
"winapi",
]
[[package]]
name = "clap"
2021-11-30 23:41:39 +04:00
version = "2.34.0"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-30 23:41:39 +04:00
checksum = "a0610544180c38b88101fecf2dd634b174a62eef6946f84dfc6a7127512b381c"
2021-06-04 03:26:45 +04:00
dependencies = [
"ansi_term",
"atty",
"bitflags",
"strsim",
"textwrap",
"unicode-width",
"vec_map",
]
[[package]]
name = "cookie-factory"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "396de984970346b0d9e93d1415082923c679e5ae5c3ee3dcbd104f5610af126b"
[[package]]
name = "cpufeatures"
2022-04-01 21:35:41 +04:00
version = "0.2.2"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "59a6001667ab124aebae2a495118e11d30984c3a653e99d86d58971708cf5e4b"
2021-06-04 03:26:45 +04:00
dependencies = [
"libc",
]
2021-06-10 10:39:27 +04:00
[[package]]
name = "criterion"
2022-07-11 22:59:40 +04:00
version = "0.3.6"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "b01d6de93b2b6c65e17c634a26653a29d107b3c98c607c765bf38d041531cd8f"
2021-06-10 10:39:27 +04:00
dependencies = [
"atty",
2022-07-11 22:59:40 +04:00
"cast 0.3.0",
2021-06-10 10:39:27 +04:00
"clap",
"criterion-plot",
"csv",
2021-06-28 20:58:38 +04:00
"futures",
2021-09-08 06:27:26 +04:00
"itertools",
2021-06-10 10:39:27 +04:00
"lazy_static",
"num-traits",
"oorandom",
"plotters",
"rayon",
"regex",
"serde",
"serde_cbor",
"serde_derive",
"serde_json",
"tinytemplate",
2021-06-28 20:58:38 +04:00
"tokio",
2021-06-10 10:39:27 +04:00
"walkdir",
]
[[package]]
name = "criterion-plot"
2021-09-08 06:27:26 +04:00
version = "0.4.4"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 06:27:26 +04:00
checksum = "d00996de9f2f7559f7f4dc286073197f83e92256a59ed395f9aac01fe717da57"
2021-06-10 10:39:27 +04:00
dependencies = [
2022-07-11 22:59:40 +04:00
"cast 0.2.7",
2021-09-08 06:27:26 +04:00
"itertools",
2021-06-10 10:39:27 +04:00
]
[[package]]
name = "crossbeam-channel"
2022-07-11 22:59:40 +04:00
version = "0.5.5"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "4c02a4d71819009c192cf4872265391563fd6a84c81ff2c0f2a7026ca4c1d85c"
2021-06-10 10:39:27 +04:00
dependencies = [
"cfg-if",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
2021-09-08 06:27:26 +04:00
version = "0.8.1"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 06:27:26 +04:00
checksum = "6455c0ca19f0d2fbf751b908d5c55c1f5cbc65e03c4225427254b46890bdde1e"
2021-06-10 10:39:27 +04:00
dependencies = [
"cfg-if",
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
2022-07-11 22:59:40 +04:00
version = "0.9.9"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "07db9d94cbd326813772c968ccd25999e5f8ae22f4f8d1b11effa37ef6ce281d"
2021-06-10 10:39:27 +04:00
dependencies = [
2022-04-01 21:35:41 +04:00
"autocfg",
2021-06-10 10:39:27 +04:00
"cfg-if",
"crossbeam-utils",
"memoffset",
2022-07-11 22:59:40 +04:00
"once_cell",
2021-06-10 10:39:27 +04:00
"scopeguard",
]
[[package]]
name = "crossbeam-utils"
2022-07-11 22:59:40 +04:00
version = "0.8.10"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "7d82ee10ce34d7bc12c2122495e7593a9c41347ecdd64185af4ecf72cb1a7f83"
2021-06-10 10:39:27 +04:00
dependencies = [
"cfg-if",
2022-07-11 22:59:40 +04:00
"once_cell",
]
[[package]]
name = "crypto-common"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2ccfd8c0ee4cce11e45b3fd6f9d5e69e0cc62912aa6a0cb1bf4617b0eba5a12f"
dependencies = [
"generic-array",
"typenum",
2021-06-10 10:39:27 +04:00
]
[[package]]
name = "csv"
version = "1.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22813a6dc45b335f9bade10bf7271dc477e81113e89eb251a0bc2a8a81c536e1"
dependencies = [
"bstr",
"csv-core",
2022-04-01 21:35:41 +04:00
"itoa 0.4.8",
2021-06-10 10:39:27 +04:00
"ryu",
"serde",
]
[[package]]
name = "csv-core"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b2466559f260f48ad25fe6317b3c8dac77b5bdb5763ac7d9d6103530663bc90"
dependencies = [
"memchr",
]
2021-06-04 03:26:45 +04:00
[[package]]
name = "digest"
2022-07-11 22:59:40 +04:00
version = "0.10.3"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "f2fb860ca6fafa5552fb6d0e816a69c8e49f0908bf524e30a90d97c85892d506"
2021-06-04 03:26:45 +04:00
dependencies = [
2022-07-11 22:59:40 +04:00
"block-buffer",
"crypto-common",
2021-06-04 03:26:45 +04:00
]
2021-06-10 10:39:27 +04:00
[[package]]
name = "either"
2022-07-11 22:59:40 +04:00
version = "1.7.0"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "3f107b87b6afc2a64fd13cac55fe06d6c8859f12d4b14cbcdd2c67d0976781be"
2021-06-10 10:39:27 +04:00
[[package]]
name = "fallible-iterator"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4443176a9f2c162692bd3d352d745ef9413eec5782a80d8fd6f8a1ac692a07f7"
2021-06-04 03:26:45 +04:00
[[package]]
name = "form_urlencoded"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fc25a87fa4fd2094bffb06925852034d90a17f0d1e05197d4956d3555752191"
dependencies = [
"matches",
"percent-encoding",
]
[[package]]
name = "four-cc"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3958af68a31b1d1384d3f39b6aa33eb14b6009065b5ca305ddd9712a4237124f"
[[package]]
name = "futures"
2022-04-01 21:35:41 +04:00
version = "0.3.21"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "f73fe65f54d1e12b726f517d3e2135ca3125a437b6d998caf1962961f7172d9e"
2021-06-04 03:26:45 +04:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
2022-04-01 21:35:41 +04:00
version = "0.3.21"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "c3083ce4b914124575708913bca19bfe887522d6e2e6d0952943f5eac4a74010"
2021-06-04 03:26:45 +04:00
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
2022-04-01 21:35:41 +04:00
version = "0.3.21"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "0c09fd04b7e4073ac7156a9539b57a484a8ea920f79c7c675d05d289ab6110d3"
2021-06-04 03:26:45 +04:00
[[package]]
name = "futures-executor"
2022-04-01 21:35:41 +04:00
version = "0.3.21"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "9420b90cfa29e327d0429f19be13e7ddb68fa1cccb09d65e5706b8c7a749b8a6"
2021-06-04 03:26:45 +04:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-io"
2022-04-01 21:35:41 +04:00
version = "0.3.21"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "fc4045962a5a5e935ee2fdedaa4e08284547402885ab326734432bed5d12966b"
2021-06-04 03:26:45 +04:00
[[package]]
name = "futures-macro"
2022-04-01 21:35:41 +04:00
version = "0.3.21"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "33c1e13800337f4d4d7a316bf45a567dbcb6ffe087f16424852d97e97a91f512"
2021-06-04 03:26:45 +04:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "futures-sink"
2022-04-01 21:35:41 +04:00
version = "0.3.21"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "21163e139fa306126e6eedaf49ecdb4588f939600f0b1e770f4205ee4b7fa868"
2021-06-04 03:26:45 +04:00
[[package]]
name = "futures-task"
2022-04-01 21:35:41 +04:00
version = "0.3.21"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "57c66a976bf5909d801bbef33416c41372779507e7a6b3a5e25e4749c58f776a"
2021-06-04 03:26:45 +04:00
[[package]]
name = "futures-util"
2022-04-01 21:35:41 +04:00
version = "0.3.21"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "d8b7abd5d659d9b90c8cba917f6ec750a74e2dc23902ef9cd4cc8c8b22e6036a"
2021-06-04 03:26:45 +04:00
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "generic-array"
2022-04-01 21:35:41 +04:00
version = "0.14.5"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "fd48d33ec7f05fbfa152300fdad764757cbded343c1aa1cff2fbaf4134851803"
2021-06-04 03:26:45 +04:00
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2022-07-11 22:59:40 +04:00
version = "0.2.7"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "4eb1a864a501629691edf6c15a593b7a51eebaa1e8468e9ddc623de7c9b58ec6"
2021-06-04 03:26:45 +04:00
dependencies = [
"cfg-if",
"libc",
2022-07-11 22:59:40 +04:00
"wasi 0.11.0+wasi-snapshot-preview1",
2021-06-04 03:26:45 +04:00
]
[[package]]
name = "h264-reader"
2021-06-10 00:50:30 +04:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8d87669bdeca3d51902f1bf1f2c71c8f514a8f3011d9b81e63719b374091da1"
2021-06-04 03:26:45 +04:00
dependencies = [
"bitreader",
2021-06-10 00:50:30 +04:00
"log",
2021-06-04 03:26:45 +04:00
"memchr",
"rfc6381-codec",
]
2021-06-10 10:39:27 +04:00
[[package]]
name = "half"
version = "1.8.2"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
2021-06-10 10:39:27 +04:00
2021-06-04 03:26:45 +04:00
[[package]]
name = "heck"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d621efb26863f0e9924c6ac577e8275e5e6b77455db64ffa6c65c904e9e132c"
dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hermit-abi"
2021-09-08 06:27:26 +04:00
version = "0.1.19"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 06:27:26 +04:00
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
2021-06-04 03:26:45 +04:00
dependencies = [
"libc",
]
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "http-auth"
2022-07-11 22:59:40 +04:00
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "c0b40b39d66c28829a0cf4d09f7e139ff8201f7500a5083732848ed3b4b4d850"
dependencies = [
"base64",
"digest",
"hex",
"md-5",
"memchr",
"rand",
"sha2",
]
2021-06-04 03:26:45 +04:00
[[package]]
name = "idna"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
dependencies = [
"matches",
"unicode-bidi",
"unicode-normalization",
]
2021-06-10 10:39:27 +04:00
[[package]]
name = "itertools"
2022-04-01 21:35:41 +04:00
version = "0.10.3"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "a9a9d19fa1e79b6215ff29b9d6880b706147f16e9b1dbb1e4e5947b5b02bc5e3"
2021-06-10 10:39:27 +04:00
dependencies = [
"either",
]
[[package]]
name = "itoa"
2021-09-08 06:27:26 +04:00
version = "0.4.8"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 06:27:26 +04:00
checksum = "b71991ff56294aa922b450139ee08b3bfc70982c6b2c7562771375cf73542dd4"
2021-06-10 10:39:27 +04:00
2022-04-01 21:35:41 +04:00
[[package]]
name = "itoa"
2022-07-11 22:59:40 +04:00
version = "1.0.2"
2022-04-01 21:35:41 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "112c678d4050afce233f4f2852bb2eb519230b3cf12f33585275537d7e41578d"
2022-04-01 21:35:41 +04:00
2021-06-10 10:39:27 +04:00
[[package]]
name = "js-sys"
2022-07-11 22:59:40 +04:00
version = "0.3.58"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "c3fac17f7123a73ca62df411b1bf727ccc805daa070338fda671c86dac1bdc27"
2021-06-10 10:39:27 +04:00
dependencies = [
"wasm-bindgen",
]
2021-06-04 03:26:45 +04:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2022-07-11 22:59:40 +04:00
version = "0.2.126"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "349d5a591cd28b49e1d1037471617a32ddcda5731b99419008085f72d5a53836"
2021-06-04 03:26:45 +04:00
[[package]]
name = "lock_api"
2022-04-01 21:35:41 +04:00
version = "0.4.7"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "327fa5b6a6940e4699ec49a9beae1ea4845c6bab9314e4f84ac68742139d8c53"
2021-06-04 03:26:45 +04:00
dependencies = [
2022-04-01 21:35:41 +04:00
"autocfg",
2021-06-04 03:26:45 +04:00
"scopeguard",
]
[[package]]
name = "log"
2022-07-11 22:59:40 +04:00
version = "0.4.17"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
2021-06-04 03:26:45 +04:00
dependencies = [
"cfg-if",
]
[[package]]
name = "matches"
2021-09-08 06:27:26 +04:00
version = "0.1.9"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 06:27:26 +04:00
checksum = "a3e378b66a060d48947b590737b30a1be76706c8dd7b8ba0f2fe3989c68a853f"
2021-06-04 03:26:45 +04:00
[[package]]
name = "md-5"
2022-07-11 22:59:40 +04:00
version = "0.10.1"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "658646b21e0b72f7866c7038ab086d3d5e1cd6271f060fd37defb241949d0582"
2021-06-04 03:26:45 +04:00
dependencies = [
"digest",
]
[[package]]
name = "memchr"
2022-07-11 22:59:40 +04:00
version = "2.5.0"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
2021-06-04 03:26:45 +04:00
2021-06-10 10:39:27 +04:00
[[package]]
name = "memoffset"
2022-04-01 21:35:41 +04:00
version = "0.6.5"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
2021-06-10 10:39:27 +04:00
dependencies = [
"autocfg",
]
2021-10-27 08:30:25 +04:00
[[package]]
name = "minimal-lexical"
2021-11-30 23:41:39 +04:00
version = "0.2.1"
2021-10-27 08:30:25 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-11-30 23:41:39 +04:00
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2021-10-27 08:30:25 +04:00
2021-06-04 03:26:45 +04:00
[[package]]
name = "mio"
2022-07-11 22:59:40 +04:00
version = "0.8.4"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "57ee1c23c7c63b0c9250c339ffdc69255f110b298b901b9f6c82547b7b87caaf"
2021-06-04 03:26:45 +04:00
dependencies = [
"libc",
"log",
2022-04-01 21:35:41 +04:00
"wasi 0.11.0+wasi-snapshot-preview1",
2022-07-11 22:59:40 +04:00
"windows-sys",
2021-06-04 03:26:45 +04:00
]
[[package]]
name = "mp4ra-rust"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be9daf03b43bf3842962947c62ba40f411e46a58774c60838038f04a67d17626"
dependencies = [
"four-cc",
]
[[package]]
name = "mpeg4-audio-const"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96a1fe2275b68991faded2c80aa4a33dba398b77d276038b8f50701a22e55918"
[[package]]
name = "mylog"
version = "0.1.0"
2022-04-01 21:35:41 +04:00
source = "git+https://github.com/scottlamb/mylog#51ef4f14bd76a1f98ea64a630aae168db54fe031"
2021-06-04 03:26:45 +04:00
dependencies = [
"chrono",
"libc",
"log",
"parking_lot",
]
[[package]]
name = "nom"
2022-04-01 21:35:41 +04:00
version = "7.1.1"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "a8903e5a29a317527874d0402f867152a3d21c908bb0b933e416c65e301d4c36"
2021-06-04 03:26:45 +04:00
dependencies = [
"memchr",
2021-10-27 08:30:25 +04:00
"minimal-lexical",
2021-06-04 03:26:45 +04:00
]
[[package]]
name = "num-integer"
2022-07-11 22:59:40 +04:00
version = "0.1.45"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
2021-06-04 03:26:45 +04:00
dependencies = [
"autocfg",
"num-traits",
]
[[package]]
name = "num-traits"
2022-07-11 22:59:40 +04:00
version = "0.2.15"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
2021-06-04 03:26:45 +04:00
dependencies = [
"autocfg",
]
[[package]]
name = "num_cpus"
2022-04-01 21:35:41 +04:00
version = "1.13.1"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "19e64526ebdee182341572e50e9ad03965aa510cd94427a4549448f285e957a1"
2021-06-04 03:26:45 +04:00
dependencies = [
"hermit-abi",
"libc",
]
[[package]]
name = "once_cell"
2022-07-11 22:59:40 +04:00
version = "1.13.0"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "18a6dbe30758c9f83eb00cbea4ac95966305f5a7772f3f42ebfc7fc7eddbd8e1"
2021-06-04 03:26:45 +04:00
2021-06-10 10:39:27 +04:00
[[package]]
name = "oorandom"
version = "11.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
2021-06-04 03:26:45 +04:00
[[package]]
name = "parking_lot"
2022-07-11 22:59:40 +04:00
version = "0.12.1"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
2021-06-04 03:26:45 +04:00
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2022-07-11 22:59:40 +04:00
version = "0.9.3"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "09a279cbf25cb0757810394fbc1e359949b59e348145c643a939a525692e6929"
2021-06-04 03:26:45 +04:00
dependencies = [
"cfg-if",
"libc",
"redox_syscall",
"smallvec",
2022-04-01 21:35:41 +04:00
"windows-sys",
2021-06-04 03:26:45 +04:00
]
[[package]]
name = "percent-encoding"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4fd5641d01c8f18a23da7b6fe29298ff4b55afcccdf78973b24cf3175fee32e"
[[package]]
name = "pin-project"
2022-07-11 22:59:40 +04:00
version = "1.0.11"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "78203e83c48cffbe01e4a2d35d566ca4de445d79a85372fc64e378bfc812a260"
2021-06-04 03:26:45 +04:00
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2022-07-11 22:59:40 +04:00
version = "1.0.11"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "710faf75e1b33345361201d36d04e98ac1ed8909151a017ed384700836104c74"
2021-06-04 03:26:45 +04:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
2022-07-11 22:59:40 +04:00
version = "0.2.9"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
2021-06-04 03:26:45 +04:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2021-06-10 10:39:27 +04:00
[[package]]
name = "plotters"
2022-07-11 22:59:40 +04:00
version = "0.3.2"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "9428003b84df1496fb9d6eeee9c5f8145cb41ca375eb0dad204328888832811f"
2021-06-10 10:39:27 +04:00
dependencies = [
"num-traits",
"plotters-backend",
"plotters-svg",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "plotters-backend"
2022-07-11 22:59:40 +04:00
version = "0.3.4"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "193228616381fecdc1224c62e96946dfbc73ff4384fba576e052ff8c1bea8142"
2021-06-10 10:39:27 +04:00
[[package]]
name = "plotters-svg"
2022-07-11 22:59:40 +04:00
version = "0.3.2"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "e0918736323d1baff32ee0eade54984f6f201ad7e97d5cfb5d6ab4a358529615"
2021-06-10 10:39:27 +04:00
dependencies = [
"plotters-backend",
]
2021-06-04 03:26:45 +04:00
[[package]]
name = "ppv-lite86"
2022-04-01 21:35:41 +04:00
version = "0.2.16"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "eb9f9e6e233e5c4a35559a617bf40a4ec447db2e84c20b55a6f83167b7e57872"
2021-06-04 03:26:45 +04:00
[[package]]
name = "pretty-hex"
2022-07-11 22:59:40 +04:00
version = "0.3.0"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "c6fa0831dd7cc608c38a5e323422a0077678fa5744aa2be4ad91c4ece8eec8d5"
2021-06-04 03:26:45 +04:00
[[package]]
name = "proc-macro-error"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
dependencies = [
"proc-macro-error-attr",
"proc-macro2",
"quote",
"syn",
"version_check",
]
[[package]]
name = "proc-macro-error-attr"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
dependencies = [
"proc-macro2",
"quote",
"version_check",
]
[[package]]
name = "proc-macro2"
2022-07-11 22:59:40 +04:00
version = "1.0.40"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "dd96a1e8ed2596c337f8eae5f24924ec83f5ad5ab21ea8e455d3566c69fbcaf7"
2021-06-04 03:26:45 +04:00
dependencies = [
2022-07-11 22:59:40 +04:00
"unicode-ident",
2021-06-04 03:26:45 +04:00
]
[[package]]
name = "quote"
2022-07-11 22:59:40 +04:00
version = "1.0.20"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "3bcdf212e9776fbcb2d23ab029360416bb1706b1aea2d1a5ba002727cbcab804"
2021-06-04 03:26:45 +04:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
2022-04-01 21:35:41 +04:00
version = "0.8.5"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
2021-06-04 03:26:45 +04:00
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
2021-09-08 06:27:26 +04:00
version = "0.3.1"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 06:27:26 +04:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
2021-06-04 03:26:45 +04:00
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
2021-09-08 06:27:26 +04:00
version = "0.6.3"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 06:27:26 +04:00
checksum = "d34f1408f55294453790c48b2f1ebbb1c5b4b7563eb1f418bcfcfdbb06ebb4e7"
2021-06-04 03:26:45 +04:00
dependencies = [
"getrandom",
]
2021-06-10 10:39:27 +04:00
[[package]]
name = "rayon"
2022-07-11 22:59:40 +04:00
version = "1.5.3"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "bd99e5772ead8baa5215278c9b15bf92087709e9c1b2d1f97cdb5a183c933a7d"
2021-06-10 10:39:27 +04:00
dependencies = [
"autocfg",
"crossbeam-deque",
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
2022-07-11 22:59:40 +04:00
version = "1.9.3"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "258bcdb5ac6dad48491bb2992db6b7cf74878b0384908af124823d118c99683f"
2021-06-10 10:39:27 +04:00
dependencies = [
"crossbeam-channel",
"crossbeam-deque",
"crossbeam-utils",
"num_cpus",
]
2021-06-04 03:26:45 +04:00
[[package]]
name = "redox_syscall"
2022-04-01 21:35:41 +04:00
version = "0.2.13"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "62f25bc4c7e55e0b0b7a1d43fb893f4fa1361d0abe38b9ce4f323c2adfe6ef42"
2021-06-04 03:26:45 +04:00
dependencies = [
"bitflags",
]
2021-06-10 10:39:27 +04:00
[[package]]
name = "regex"
2022-07-11 22:59:40 +04:00
version = "1.6.0"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "4c4eb3267174b8c6c2f654116623910a0fef09c4753f8dd83db29c48a0df988b"
2021-06-10 10:39:27 +04:00
dependencies = [
"regex-syntax",
]
[[package]]
name = "regex-automata"
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
[[package]]
name = "regex-syntax"
2022-07-11 22:59:40 +04:00
version = "0.6.27"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "a3f87b73ce11b1619a3c6332f45341e0047173771e8b8b73f87bfeefb7b56244"
2021-06-10 10:39:27 +04:00
2021-06-04 03:26:45 +04:00
[[package]]
name = "retina"
2022-05-18 03:48:34 +04:00
version = "0.4.0"
2021-06-04 03:26:45 +04:00
dependencies = [
"anyhow",
2021-06-04 03:26:45 +04:00
"base64",
"bitreader",
"bytes",
2021-06-10 10:39:27 +04:00
"criterion",
2021-06-04 03:26:45 +04:00
"futures",
"h264-reader",
"hex",
"http-auth",
2021-09-08 06:27:26 +04:00
"itertools",
2021-06-04 03:26:45 +04:00
"log",
"mylog",
"once_cell",
"pin-project",
"pretty-hex",
"rand",
2021-06-04 03:26:45 +04:00
"rtsp-types",
"sdp-types",
2021-06-04 03:26:45 +04:00
"smallvec",
"structopt",
"thiserror",
2021-06-04 03:26:45 +04:00
"time",
"tokio",
"tokio-util",
"url",
]
[[package]]
name = "rfc6381-codec"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4395f46a67f0d57c57f6a5361f3a9a0c0183a19cab3998892ecdc003de6d8037"
dependencies = [
"four-cc",
"mp4ra-rust",
"mpeg4-audio-const",
]
[[package]]
name = "rtsp-types"
2021-10-27 08:30:25 +04:00
version = "0.0.3"
2021-06-08 08:32:04 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-10-27 08:30:25 +04:00
checksum = "7b668122d4d00c479c08fb2a0a253669832606ccca80832a6b99bb5288ab4f75"
2021-06-04 03:26:45 +04:00
dependencies = [
"cookie-factory",
"nom",
"tinyvec",
"url",
]
2021-06-10 10:39:27 +04:00
[[package]]
name = "rustc_version"
2021-09-08 06:27:26 +04:00
version = "0.4.0"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 06:27:26 +04:00
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
2021-06-10 10:39:27 +04:00
dependencies = [
"semver",
]
2021-06-04 03:26:45 +04:00
[[package]]
name = "ryu"
2022-07-11 22:59:40 +04:00
version = "1.0.10"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "f3f6f92acf49d1b98f7a81226834412ada05458b7364277387724a237f062695"
2021-06-04 03:26:45 +04:00
2021-06-10 10:39:27 +04:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2021-06-04 03:26:45 +04:00
[[package]]
name = "scopeguard"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
[[package]]
name = "sdp-types"
version = "0.1.4"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a627289e3b09f15ef88a28b90d6eca3b7eac332b6ffb34c1af290aa956d4ab9"
2021-06-04 03:26:45 +04:00
dependencies = [
"bstr",
"fallible-iterator",
2021-06-04 03:26:45 +04:00
]
2021-06-10 10:39:27 +04:00
[[package]]
name = "semver"
2022-07-11 22:59:40 +04:00
version = "1.0.12"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "a2333e6df6d6598f2b1974829f853c2b4c5f4a6e503c10af918081aa6f8564e1"
2021-06-10 10:39:27 +04:00
[[package]]
name = "serde"
2022-07-11 22:59:40 +04:00
version = "1.0.139"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "0171ebb889e45aa68b44aee0859b3eede84c6f5f5c228e6f140c0b2a0a46cad6"
2021-06-10 10:39:27 +04:00
[[package]]
name = "serde_cbor"
2021-09-08 06:27:26 +04:00
version = "0.11.2"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-08 06:27:26 +04:00
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
2021-06-10 10:39:27 +04:00
dependencies = [
"half",
"serde",
]
[[package]]
name = "serde_derive"
2022-07-11 22:59:40 +04:00
version = "1.0.139"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "dc1d3230c1de7932af58ad8ffbe1d784bd55efd5a9d84ac24f69c72d83543dfb"
2021-06-10 10:39:27 +04:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "serde_json"
2022-07-11 22:59:40 +04:00
version = "1.0.82"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "82c2c1fdcd807d1098552c5b9a36e425e42e9fbd7c6a37a8425f390f781f7fa7"
2021-06-10 10:39:27 +04:00
dependencies = [
2022-07-11 22:59:40 +04:00
"itoa 1.0.2",
2021-06-10 10:39:27 +04:00
"ryu",
"serde",
]
2021-06-04 03:26:45 +04:00
[[package]]
name = "sha2"
2022-07-11 22:59:40 +04:00
version = "0.10.2"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "55deaec60f81eefe3cce0dc50bda92d6d8e88f2a27df7c5033b42afeb1ed2676"
2021-06-04 03:26:45 +04:00
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "signal-hook-registry"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
dependencies = [
"libc",
]
[[package]]
name = "slab"
2022-07-11 22:59:40 +04:00
version = "0.4.6"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "eb703cfe953bccee95685111adeedb76fabe4e97549a58d16f03ea7b9367bb32"
2021-06-04 03:26:45 +04:00
[[package]]
name = "smallvec"
2022-07-11 22:59:40 +04:00
version = "1.9.0"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "2fd0db749597d91ff862fd1d55ea87f7855a744a8425a64695b6fca237d1dad1"
2022-04-01 21:35:41 +04:00
[[package]]
name = "socket2"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "66d72b759436ae32898a2af0a14218dbf55efde3feeb170eb623637db85ee1e0"
dependencies = [
"libc",
"winapi",
]
2021-06-04 03:26:45 +04:00
[[package]]
name = "strsim"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ea5119cdb4c55b55d432abb513a0429384878c15dde60cc77b1c99de1a95a6a"
[[package]]
name = "structopt"
2022-04-01 21:35:41 +04:00
version = "0.3.26"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "0c6b5c64445ba8094a6ab0c3cd2ad323e07171012d9c98b0b15651daf1787a10"
2021-06-04 03:26:45 +04:00
dependencies = [
"clap",
"lazy_static",
"structopt-derive",
]
[[package]]
name = "structopt-derive"
version = "0.4.18"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcb5ae327f9cc13b68763b5749770cb9e048a99bd9dfdfa58d0cf05d5f64afe0"
2021-06-04 03:26:45 +04:00
dependencies = [
"heck",
"proc-macro-error",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "syn"
2022-07-11 22:59:40 +04:00
version = "1.0.98"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "c50aef8a904de4c23c788f104b7dddc7d6f79c647c7c8ce4cc8f73eb0ca773dd"
2021-06-04 03:26:45 +04:00
dependencies = [
"proc-macro2",
"quote",
2022-07-11 22:59:40 +04:00
"unicode-ident",
2021-06-04 03:26:45 +04:00
]
[[package]]
name = "textwrap"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d326610f408c7a4eb6f51c37c330e496b08506c9457c9d34287ecc38809fb060"
dependencies = [
"unicode-width",
]
[[package]]
name = "thiserror"
2022-07-11 22:59:40 +04:00
version = "1.0.31"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "bd829fe32373d27f76265620b5309d0340cb8550f523c1dda251d6298069069a"
2021-06-04 03:26:45 +04:00
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
2022-07-11 22:59:40 +04:00
version = "1.0.31"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "0396bc89e626244658bef819e22d0cc459e795a5ebe878e6ec336d1674a8d79a"
2021-06-04 03:26:45 +04:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "time"
version = "0.1.44"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6db9e6914ab8b1ae1c260a4ae7a49b6c5611b40328a735b21862567685e73255"
dependencies = [
"libc",
2022-04-01 21:35:41 +04:00
"wasi 0.10.0+wasi-snapshot-preview1",
2021-06-04 03:26:45 +04:00
"winapi",
]
2021-06-10 10:39:27 +04:00
[[package]]
name = "tinytemplate"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
dependencies = [
"serde",
"serde_json",
]
2021-06-04 03:26:45 +04:00
[[package]]
name = "tinyvec"
2022-07-11 22:59:40 +04:00
version = "1.6.0"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2021-06-04 03:26:45 +04:00
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"
2022-07-11 22:59:40 +04:00
version = "1.19.2"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "c51a52ed6686dd62c320f9b89299e9dfb46f730c7a48e635c19f21d116cb1439"
2021-06-04 03:26:45 +04:00
dependencies = [
"bytes",
"libc",
"memchr",
"mio",
"num_cpus",
"once_cell",
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
2022-04-01 21:35:41 +04:00
"socket2",
2021-06-04 03:26:45 +04:00
"tokio-macros",
"winapi",
]
[[package]]
name = "tokio-macros"
2022-07-11 22:59:40 +04:00
version = "1.8.0"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "9724f9a975fb987ef7a3cd9be0350edcbe130698af5b8f7a631e23d42d052484"
2021-06-04 03:26:45 +04:00
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tokio-util"
2022-07-11 22:59:40 +04:00
version = "0.7.3"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "cc463cd8deddc3770d20f9852143d50bf6094e640b485cb2e189a2099085ff45"
2021-06-04 03:26:45 +04:00
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
2022-07-11 22:59:40 +04:00
"tracing",
]
[[package]]
name = "tracing"
version = "0.1.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a400e31aa60b9d44a52a8ee0343b5b18566b03a8321e0d321f695cf56e940160"
dependencies = [
"cfg-if",
"pin-project-lite",
"tracing-core",
]
[[package]]
name = "tracing-core"
version = "0.1.28"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b7358be39f2f274f322d2aaed611acc57f382e8eb1e5b48cb9ae30933495ce7"
dependencies = [
"once_cell",
2021-06-04 03:26:45 +04:00
]
[[package]]
name = "typenum"
2022-04-01 21:35:41 +04:00
version = "1.15.0"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
2021-06-10 10:39:27 +04:00
2021-06-04 03:26:45 +04:00
[[package]]
name = "unicode-bidi"
2022-07-11 22:59:40 +04:00
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
[[package]]
name = "unicode-ident"
version = "1.0.1"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "5bd2fe26506023ed7b5e1e315add59d6f584c621d037f9368fea9cfb988f368c"
2021-06-04 03:26:45 +04:00
[[package]]
name = "unicode-normalization"
2022-07-11 22:59:40 +04:00
version = "0.1.21"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "854cbdc4f7bc6ae19c820d44abdc3277ac3e1b2b93db20a636825d9322fb60e6"
2021-06-04 03:26:45 +04:00
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-segmentation"
2022-04-01 21:35:41 +04:00
version = "1.9.0"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "7e8820f5d777f6224dc4be3632222971ac30164d4a258d595640799554ebfd99"
2021-06-04 03:26:45 +04:00
[[package]]
name = "unicode-width"
version = "0.1.9"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ed742d4ea2bd1176e236172c8429aaf54486e7ac098db29ffe6529e0ce50973"
2021-06-04 03:26:45 +04:00
[[package]]
name = "url"
version = "2.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a507c383b2d33b5fc35d1861e77e6b383d158b2da5e14fe51b83dfedf6fd578c"
dependencies = [
"form_urlencoded",
"idna",
"matches",
"percent-encoding",
]
[[package]]
name = "vec_map"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f1bddf1187be692e79c5ffeab891132dfb0f236ed36a43c7ed39f1165ee20191"
[[package]]
name = "version_check"
2022-04-01 21:35:41 +04:00
version = "0.9.4"
2021-06-04 03:26:45 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-04-01 21:35:41 +04:00
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
2021-06-04 03:26:45 +04:00
2021-06-10 10:39:27 +04:00
[[package]]
name = "walkdir"
version = "2.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "808cf2735cd4b6866113f648b791c6adc5714537bc222d9347bb203386ffda56"
dependencies = [
"same-file",
"winapi",
"winapi-util",
]
2021-06-04 03:26:45 +04:00
[[package]]
name = "wasi"
version = "0.10.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a143597ca7c7793eff794def352d41792a93c481eb1042423ff7ff72ba2c31f"
2022-04-01 21:35:41 +04:00
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
2021-06-10 10:39:27 +04:00
[[package]]
name = "wasm-bindgen"
2022-07-11 22:59:40 +04:00
version = "0.2.81"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "7c53b543413a17a202f4be280a7e5c62a1c69345f5de525ee64f8cfdbc954994"
2021-06-10 10:39:27 +04:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2022-07-11 22:59:40 +04:00
version = "0.2.81"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "5491a68ab4500fa6b4d726bd67408630c3dbe9c4fe7bda16d5c82a1fd8c7340a"
2021-06-10 10:39:27 +04:00
dependencies = [
"bumpalo",
"lazy_static",
"log",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2022-07-11 22:59:40 +04:00
version = "0.2.81"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "c441e177922bc58f1e12c022624b6216378e5febc2f0533e41ba443d505b80aa"
2021-06-10 10:39:27 +04:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2022-07-11 22:59:40 +04:00
version = "0.2.81"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "7d94ac45fcf608c1f45ef53e748d35660f168490c10b23704c7779ab8f5c3048"
2021-06-10 10:39:27 +04:00
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2022-07-11 22:59:40 +04:00
version = "0.2.81"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "6a89911bd99e5f3659ec4acf9c4d93b0a90fe4a2a11f15328472058edc5261be"
2021-06-10 10:39:27 +04:00
[[package]]
name = "web-sys"
2022-07-11 22:59:40 +04:00
version = "0.3.58"
2021-06-10 10:39:27 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "2fed94beee57daf8dd7d51f2b15dc2bcde92d7a72304cdf662a4371008b71b90"
2021-06-10 10:39:27 +04:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2021-06-04 03:26:45 +04:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"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"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
2021-06-10 10:39:27 +04:00
[[package]]
name = "winapi-util"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
dependencies = [
"winapi",
]
2021-06-04 03:26:45 +04: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"
2022-04-01 21:35:41 +04:00
[[package]]
name = "windows-sys"
2022-07-11 22:59:40 +04:00
version = "0.36.1"
2022-04-01 21:35:41 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
2022-04-01 21:35:41 +04:00
dependencies = [
"windows_aarch64_msvc",
"windows_i686_gnu",
"windows_i686_msvc",
"windows_x86_64_gnu",
"windows_x86_64_msvc",
]
[[package]]
name = "windows_aarch64_msvc"
2022-07-11 22:59:40 +04:00
version = "0.36.1"
2022-04-01 21:35:41 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
2022-04-01 21:35:41 +04:00
[[package]]
name = "windows_i686_gnu"
2022-07-11 22:59:40 +04:00
version = "0.36.1"
2022-04-01 21:35:41 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
2022-04-01 21:35:41 +04:00
[[package]]
name = "windows_i686_msvc"
2022-07-11 22:59:40 +04:00
version = "0.36.1"
2022-04-01 21:35:41 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
2022-04-01 21:35:41 +04:00
[[package]]
name = "windows_x86_64_gnu"
2022-07-11 22:59:40 +04:00
version = "0.36.1"
2022-04-01 21:35:41 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
2022-04-01 21:35:41 +04:00
[[package]]
name = "windows_x86_64_msvc"
2022-07-11 22:59:40 +04:00
version = "0.36.1"
2022-04-01 21:35:41 +04:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-07-11 22:59:40 +04:00
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"