2020-08-04 22:32:37 +00:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
|
# It is not intended for manual editing.
|
Major refactor of codebase (#208)
- The binary component and library component are separated as two
packages in the same workspace.
- `lychee` is the binary component, in `lychee-bin/*`.
- `lychee-lib` is the library component, in `lychee-lib/*`.
- Users can now install only the `lychee-lib`, instead of both
components, that would require fewer dependencies and faster
compilation.
- Dependencies for each component are adjusted and updated. E.g.,
no CLI dependencies for `lychee-lib`.
- CLI tests are only moved to `lychee`, as it has nothing to do
with the library component.
- `Status::Error` is refactored to contain dedicated error enum,
`ErrorKind`.
- The motivation is to delay the formatting of errors to strings.
Note that `e.to_string()` is not necessarily cheap (though
trivial in many cases). The formatting is no delayed until the
error is needed to be displayed to users. So in some cases, if
the error is never used, it means that it won't be formatted at
all.
- Replaced `regex` based matching with one of the following:
- Simple string equality test in the case of 'false positivie'.
- URL parsing based test, in the case of extracting repository and
user name for GitHub links.
- Either cases would be much more efficient than `regex` based
matching. First, there's no need to construct a state machine for
regex. Second, URL is already verified and parsed on its creation,
and extracting its components is fairly cheap. Also, this removes
the dependency on `lazy-static` in `lychee-lib`.
- `types` module now has a sub-directory, and its components are now
separated into their own modules (in that sub-directory).
- `lychee-lib::test_utils` module is only compiled for tests.
- `wiremock` is moved to `dev-dependency` as it's only needed for
`test` modules.
- Dependencies are listed in alphabetical order.
- Imports are organized in the following fashion:
- Imports from `std`
- Imports from 3rd-party crates, and `lychee-lib`.
- Imports from `crate::*` or `super::*`.
- No glob import.
- I followed suggestion from `cargo clippy`, with `clippy::all` and
`clippy:pedantic`.
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
|
|
|
version = 3
|
|
|
|
|
|
2022-02-11 22:43:47 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "addr2line"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.21.0"
|
2022-02-11 22:43:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "8a30b2e23b9e17a9f90641c7ab1549cd9b44f296d3ccbf309d2863cfe398a0cb"
|
2022-02-11 22:43:47 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"gimli",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-07 17:00:21 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "adler"
|
2021-03-28 15:20:03 +00:00
|
|
|
version = "1.0.2"
|
2020-08-07 17:00:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-03-28 15:20:03 +00:00
|
|
|
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
2020-08-07 17:00:21 +00:00
|
|
|
|
2023-10-02 14:13:07 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "ahash"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.8.7"
|
2023-10-02 14:13:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "77c3a9648d43b9cd48db467b3f87fdd6e146bcc88ab0180006cef2179fe11d01"
|
2023-10-02 14:13:07 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"once_cell",
|
|
|
|
|
"version_check",
|
2024-01-06 11:27:57 +00:00
|
|
|
"zerocopy",
|
2023-10-02 14:13:07 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "aho-corasick"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.1.2"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "b2969dcb958b36655471fc61f7e416fa76033bdd4bfed0678d8fee1e2d07a1f0"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"memchr",
|
|
|
|
|
]
|
|
|
|
|
|
2023-10-02 14:13:07 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "allocator-api2"
|
|
|
|
|
version = "0.2.16"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "0942ffc6dcaadf03badf6e6a2d0228460359d5e34b57ccdc720b7382dfbd5ec5"
|
|
|
|
|
|
2023-06-26 10:06:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "android-tzdata"
|
|
|
|
|
version = "0.1.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
|
|
|
|
2022-11-05 23:21:00 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "android_system_properties"
|
|
|
|
|
version = "0.1.5"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2022-09-12 15:23:09 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "anes"
|
|
|
|
|
version = "0.1.6"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
|
|
|
|
2023-06-26 10:06:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "anstream"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.6.5"
|
2023-06-26 10:06:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "d664a92ecae85fd0a7392615844904654d1d5f5514837f471ddef4a057aba1b6"
|
2023-06-26 10:06:24 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"anstyle",
|
|
|
|
|
"anstyle-parse",
|
|
|
|
|
"anstyle-query",
|
|
|
|
|
"anstyle-wincon",
|
|
|
|
|
"colorchoice",
|
|
|
|
|
"utf8parse",
|
|
|
|
|
]
|
|
|
|
|
|
2023-04-14 12:58:51 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "anstyle"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.4"
|
2023-06-26 10:06:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "7079075b41f533b8c61d2a4d073c4676e1f8b249ff94a393b0595db304e0dd87"
|
2023-06-26 10:06:24 +00:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "anstyle-parse"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.3"
|
2023-06-26 10:06:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "c75ac65da39e5fe5ab759307499ddad880d724eed2f6ce5b5e8a26f4f387928c"
|
2023-06-26 10:06:24 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"utf8parse",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "anstyle-query"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.2"
|
2023-04-14 12:58:51 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "e28923312444cdd728e4738b3f9c9cac739500909bb3d3c94b43551b16517648"
|
2023-06-26 10:06:24 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"windows-sys 0.52.0",
|
2023-06-26 10:06:24 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "anstyle-wincon"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "3.0.2"
|
2023-06-26 10:06:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "1cd54b81ec8d6180e24654d0b371ad22fc3dd083b6ff8ba325b72e00c87660a7"
|
2023-06-26 10:06:24 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"anstyle",
|
2024-01-06 11:27:57 +00:00
|
|
|
"windows-sys 0.52.0",
|
2023-06-26 10:06:24 +00:00
|
|
|
]
|
2023-04-14 12:58:51 +00:00
|
|
|
|
2020-08-07 22:06:17 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "anyhow"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.79"
|
2020-08-07 22:06:17 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "080e9890a082662b09c1ad45f567faeeb47f22b5fb23895fbe1e651e718e25ca"
|
2020-08-07 22:06:17 +00:00
|
|
|
|
2022-02-11 22:43:47 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "arc-swap"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "1.6.0"
|
2022-02-11 22:43:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "bddcadddf5e9015d310179a59bb28c4d4b9920ad0f11e8e14dbadf654890c9a6"
|
2022-02-11 22:43:47 +00:00
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "ascii_utils"
|
|
|
|
|
version = "0.9.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "71938f30533e4d95a6d17aa530939da3842c2ab6f4f84b9dae68447e4129f74a"
|
|
|
|
|
|
2022-01-10 17:15:58 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "assert-json-diff"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "2.0.2"
|
2022-01-10 17:15:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "47e4f2b81832e72834d7518d8487a0396a28cc408186a2e8854c0f98011faf12"
|
2022-01-10 17:15:58 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_json",
|
|
|
|
|
]
|
|
|
|
|
|
2020-10-17 08:01:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "assert_cmd"
|
2023-07-17 18:31:04 +00:00
|
|
|
version = "2.0.12"
|
2020-10-17 08:01:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-07-17 18:31:04 +00:00
|
|
|
checksum = "88903cb14723e4d4003335bb7f8a14f27691649105346a0f0957466c096adfe6"
|
2020-10-17 08:01:06 +00:00
|
|
|
dependencies = [
|
2023-04-14 13:06:53 +00:00
|
|
|
"anstyle",
|
2023-02-14 14:08:48 +00:00
|
|
|
"bstr",
|
2020-10-17 08:01:06 +00:00
|
|
|
"doc-comment",
|
2023-03-16 14:47:01 +00:00
|
|
|
"predicates",
|
2020-10-17 08:01:06 +00:00
|
|
|
"predicates-core",
|
|
|
|
|
"predicates-tree",
|
|
|
|
|
"wait-timeout",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-channel"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "1.9.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "81953c529336010edd6d8e358f886d9581267795c61b19475b71314bffa46d35"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"concurrent-queue",
|
2024-01-06 11:27:57 +00:00
|
|
|
"event-listener 2.5.3",
|
2020-08-21 22:36:03 +00:00
|
|
|
"futures-core",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-06 11:27:57 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-channel"
|
|
|
|
|
version = "2.1.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "1ca33f4bc4ed1babef42cad36cc1f51fa88be00420404e5b1e80ab1b18f7678c"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"concurrent-queue",
|
|
|
|
|
"event-listener 4.0.2",
|
|
|
|
|
"event-listener-strategy",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-07 17:00:21 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-compression"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.4.5"
|
2020-08-07 17:00:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "bc2d0cfb2a7388d34f590e76686704c494ed7aaceed62ee1ba35cbf363abc2a5"
|
2020-08-07 17:00:21 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"flate2",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"memchr",
|
2021-02-12 21:34:41 +00:00
|
|
|
"pin-project-lite",
|
|
|
|
|
"tokio",
|
2020-08-07 17:00:21 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-executor"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.8.0"
|
2020-11-30 14:44:01 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "17ae5ebefcc48e7452b4987947920dac9450be1110cadf34d1b8c116bdbaf97c"
|
2020-11-30 14:44:01 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"async-lock 3.2.0",
|
2020-11-30 14:44:01 +00:00
|
|
|
"async-task",
|
|
|
|
|
"concurrent-queue",
|
2024-01-06 11:27:57 +00:00
|
|
|
"fastrand 2.0.1",
|
|
|
|
|
"futures-lite 2.1.0",
|
2021-11-03 22:45:42 +00:00
|
|
|
"slab",
|
2020-11-30 14:44:01 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "async-global-executor"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "2.4.1"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "05b1b633a2115cd122d73b955eadd9916c18c8f510ec9cd1686404c60ad1c29c"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"async-channel 2.1.1",
|
2020-11-30 14:44:01 +00:00
|
|
|
"async-executor",
|
2024-01-06 11:27:57 +00:00
|
|
|
"async-io 2.2.2",
|
|
|
|
|
"async-lock 3.2.0",
|
2021-02-10 10:58:04 +00:00
|
|
|
"blocking",
|
2024-01-06 11:27:57 +00:00
|
|
|
"futures-lite 2.1.0",
|
2020-11-30 14:44:01 +00:00
|
|
|
"once_cell",
|
2020-08-21 22:36:03 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "async-io"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "1.13.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "0fc5b45d93ef0529756f812ca52e44c221b35341892d3dcc34132ac02f3dd2af"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"async-lock 2.8.0",
|
2022-11-05 23:21:00 +00:00
|
|
|
"autocfg",
|
2023-06-26 10:06:24 +00:00
|
|
|
"cfg-if",
|
2020-08-21 22:36:03 +00:00
|
|
|
"concurrent-queue",
|
2024-01-06 11:27:57 +00:00
|
|
|
"futures-lite 1.13.0",
|
2020-11-30 14:44:01 +00:00
|
|
|
"log",
|
|
|
|
|
"parking",
|
2024-01-06 11:27:57 +00:00
|
|
|
"polling 2.8.0",
|
|
|
|
|
"rustix 0.37.27",
|
2021-11-03 22:45:42 +00:00
|
|
|
"slab",
|
2024-01-06 11:27:57 +00:00
|
|
|
"socket2 0.4.10",
|
2020-11-30 14:44:01 +00:00
|
|
|
"waker-fn",
|
2020-08-21 22:36:03 +00:00
|
|
|
]
|
|
|
|
|
|
2024-01-06 11:27:57 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-io"
|
|
|
|
|
version = "2.2.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "6afaa937395a620e33dc6a742c593c01aced20aa376ffb0f628121198578ccc7"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"async-lock 3.2.0",
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"concurrent-queue",
|
|
|
|
|
"futures-io",
|
|
|
|
|
"futures-lite 2.1.0",
|
|
|
|
|
"parking",
|
|
|
|
|
"polling 3.3.1",
|
|
|
|
|
"rustix 0.38.28",
|
|
|
|
|
"slab",
|
|
|
|
|
"tracing",
|
|
|
|
|
"windows-sys 0.52.0",
|
|
|
|
|
]
|
|
|
|
|
|
2021-02-10 10:58:04 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-lock"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "2.8.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "287272293e9d8c41773cec55e365490fe034813a2f172f502d6ddcf75b2f582b"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"event-listener 2.5.3",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "async-lock"
|
|
|
|
|
version = "3.2.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "7125e42787d53db9dd54261812ef17e937c95a51e4d291373b670342fa44310c"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"event-listener 4.0.2",
|
|
|
|
|
"event-listener-strategy",
|
|
|
|
|
"pin-project-lite",
|
2020-08-21 22:36:03 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-native-tls"
|
2022-08-11 12:13:37 +00:00
|
|
|
version = "0.4.0"
|
2020-08-23 21:22:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-11 12:13:37 +00:00
|
|
|
checksum = "d57d4cec3c647232e1094dc013546c0b33ce785d8aeb251e1f20dfaf8a9a13fe"
|
2020-08-23 21:22:48 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"native-tls",
|
|
|
|
|
"thiserror",
|
2022-08-11 12:13:37 +00:00
|
|
|
"tokio",
|
2020-08-23 21:22:48 +00:00
|
|
|
"url",
|
|
|
|
|
]
|
|
|
|
|
|
2021-01-06 07:49:49 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-process"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.8.1"
|
2021-01-06 07:49:49 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "ea6438ba0a08d81529c69b36700fa2f95837bfe3e776ab39cde9c14d9149da88"
|
2021-01-06 07:49:49 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"async-io 1.13.0",
|
|
|
|
|
"async-lock 2.8.0",
|
|
|
|
|
"async-signal",
|
2021-01-06 07:49:49 +00:00
|
|
|
"blocking",
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2024-01-06 11:27:57 +00:00
|
|
|
"event-listener 3.1.0",
|
|
|
|
|
"futures-lite 1.13.0",
|
|
|
|
|
"rustix 0.38.28",
|
2023-06-26 10:06:24 +00:00
|
|
|
"windows-sys 0.48.0",
|
2021-01-06 07:49:49 +00:00
|
|
|
]
|
|
|
|
|
|
2022-01-27 14:02:05 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-recursion"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.5"
|
2022-01-27 14:02:05 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "5fd55a5ba1179988837d24ab4c7cc8ed6efdeff578ede0416b4225a5fca35bd0"
|
2022-01-27 14:02:05 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "async-signal"
|
|
|
|
|
version = "0.2.5"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9e47d90f65a225c4527103a8d747001fc56e375203592b25ad103e1ca13124c5"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"async-io 2.2.2",
|
|
|
|
|
"async-lock 2.8.0",
|
|
|
|
|
"atomic-waker",
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-io",
|
|
|
|
|
"rustix 0.38.28",
|
|
|
|
|
"signal-hook-registry",
|
|
|
|
|
"slab",
|
|
|
|
|
"windows-sys 0.48.0",
|
2022-01-27 14:02:05 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-smtp"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.6.0"
|
2021-04-01 08:43:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "2ade89127f9e0d44f9e83cf574d499060005cd45b7dc76be89c0167487fe8edd"
|
2020-08-23 21:22:48 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"async-native-tls",
|
|
|
|
|
"async-trait",
|
2022-12-28 16:21:52 +00:00
|
|
|
"base64 0.13.1",
|
2020-08-23 21:22:48 +00:00
|
|
|
"bufstream",
|
2023-12-02 12:15:40 +00:00
|
|
|
"fast-socks5 0.8.2",
|
2022-08-11 12:13:37 +00:00
|
|
|
"futures",
|
|
|
|
|
"hostname",
|
2020-08-23 21:22:48 +00:00
|
|
|
"log",
|
2021-10-28 01:15:44 +00:00
|
|
|
"nom",
|
2021-04-01 08:43:50 +00:00
|
|
|
"pin-project",
|
2020-08-23 21:22:48 +00:00
|
|
|
"pin-utils",
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_derive",
|
|
|
|
|
"serde_json",
|
|
|
|
|
"thiserror",
|
2022-08-11 12:13:37 +00:00
|
|
|
"tokio",
|
2020-08-23 21:22:48 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-std"
|
2022-08-11 12:13:37 +00:00
|
|
|
version = "1.12.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-11 12:13:37 +00:00
|
|
|
checksum = "62565bb4402e926b29953c785397c6dc0391b7b446e45008b0049eb43cec6f5d"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"async-channel 1.9.0",
|
2020-11-30 14:44:01 +00:00
|
|
|
"async-global-executor",
|
2024-01-06 11:27:57 +00:00
|
|
|
"async-io 1.13.0",
|
|
|
|
|
"async-lock 2.8.0",
|
2021-01-06 07:49:49 +00:00
|
|
|
"async-process",
|
2022-02-18 16:09:30 +00:00
|
|
|
"crossbeam-utils",
|
2020-08-21 22:36:03 +00:00
|
|
|
"futures-channel",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-io",
|
2024-01-06 11:27:57 +00:00
|
|
|
"futures-lite 1.13.0",
|
2020-11-30 14:44:01 +00:00
|
|
|
"gloo-timers",
|
2020-08-21 22:36:03 +00:00
|
|
|
"kv-log-macro",
|
|
|
|
|
"log",
|
|
|
|
|
"memchr",
|
|
|
|
|
"once_cell",
|
2021-02-12 21:34:41 +00:00
|
|
|
"pin-project-lite",
|
2020-08-21 22:36:03 +00:00
|
|
|
"pin-utils",
|
|
|
|
|
"slab",
|
|
|
|
|
"wasm-bindgen-futures",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-std-resolver"
|
2022-08-11 12:13:37 +00:00
|
|
|
version = "0.21.2"
|
2020-08-23 21:22:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-11 12:13:37 +00:00
|
|
|
checksum = "0f2f8a4a203be3325981310ab243a28e6e4ea55b6519bffce05d41ab60e09ad8"
|
2020-08-23 21:22:48 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"async-std",
|
|
|
|
|
"async-trait",
|
2021-02-12 21:34:41 +00:00
|
|
|
"futures-io",
|
|
|
|
|
"futures-util",
|
|
|
|
|
"pin-utils",
|
2024-01-06 11:27:57 +00:00
|
|
|
"socket2 0.4.10",
|
2022-11-17 12:07:09 +00:00
|
|
|
"trust-dns-resolver 0.21.2",
|
2020-08-23 21:22:48 +00:00
|
|
|
]
|
|
|
|
|
|
2021-12-01 17:25:11 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-stream"
|
2023-04-11 14:38:01 +00:00
|
|
|
version = "0.3.5"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-11 14:38:01 +00:00
|
|
|
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"async-stream-impl",
|
|
|
|
|
"futures-core",
|
2023-02-20 12:17:39 +00:00
|
|
|
"pin-project-lite",
|
2021-12-01 17:25:11 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "async-stream-impl"
|
2023-04-11 14:38:01 +00:00
|
|
|
version = "0.3.5"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-11 14:38:01 +00:00
|
|
|
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2021-12-01 17:25:11 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-task"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "4.7.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "fbb36e985947064623dbd357f727af08ffd077f93d696782f3c56365fa2e2799"
|
2020-08-21 22:36:03 +00:00
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "async-trait"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.1.77"
|
2020-08-23 21:22:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "c980ee35e870bd1a4d2c8294d4c04d0499e67bca1e4b5cefcc693c2fa00caea9"
|
2020-08-23 21:22:48 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2020-08-23 21:22:48 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "atomic-waker"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.1.2"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
|
2020-08-07 17:00:21 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "autocfg"
|
2022-05-30 21:02:18 +00:00
|
|
|
version = "1.1.0"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-30 21:02:18 +00:00
|
|
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2022-02-11 22:43:47 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "backtrace"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.3.69"
|
2022-02-11 22:43:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "2089b7e3f35b9dd2d0ed921ead4f6d318c27680d4a5bd167b3ee120edb105837"
|
2022-02-11 22:43:47 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"addr2line",
|
|
|
|
|
"cc",
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2022-02-11 22:43:47 +00:00
|
|
|
"libc",
|
2023-08-15 14:41:58 +00:00
|
|
|
"miniz_oxide",
|
2022-02-11 22:43:47 +00:00
|
|
|
"object",
|
|
|
|
|
"rustc-demangle",
|
|
|
|
|
]
|
|
|
|
|
|
2020-11-30 14:44:31 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "base64"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.13.1"
|
2020-11-30 14:44:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
2020-11-30 14:44:31 +00:00
|
|
|
|
2023-01-20 12:02:32 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "base64"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.21.5"
|
2023-01-20 12:02:32 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "35636a1494ede3b646cc98f74f8e62c773a38a659ebc777a2cf26b9b74171df9"
|
2023-01-20 12:02:32 +00:00
|
|
|
|
2021-12-16 17:45:52 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "benches"
|
|
|
|
|
version = "0.0.0"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"criterion",
|
|
|
|
|
"lychee-lib",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "bitflags"
|
2021-11-03 22:45:42 +00:00
|
|
|
version = "1.3.2"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-03 22:45:42 +00:00
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2023-03-20 12:59:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "bitflags"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "2.4.1"
|
2023-03-20 12:59:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07"
|
2023-03-20 12:59:13 +00:00
|
|
|
|
2020-10-26 08:23:45 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "block-buffer"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.10.4"
|
2020-10-26 08:23:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
2020-10-26 08:23:45 +00:00
|
|
|
dependencies = [
|
2021-01-06 23:10:58 +00:00
|
|
|
"generic-array",
|
2020-10-16 13:29:13 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "blocking"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.5.1"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "6a37913e8dc4ddcc604f0c6d3bf2887c995153af3611de9e23c352b44c1b9118"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"async-channel 2.1.1",
|
|
|
|
|
"async-lock 3.2.0",
|
2020-11-30 14:44:01 +00:00
|
|
|
"async-task",
|
2024-01-06 11:27:57 +00:00
|
|
|
"fastrand 2.0.1",
|
|
|
|
|
"futures-io",
|
|
|
|
|
"futures-lite 2.1.0",
|
|
|
|
|
"piper",
|
|
|
|
|
"tracing",
|
2020-08-21 22:36:03 +00:00
|
|
|
]
|
|
|
|
|
|
2022-11-05 23:21:00 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "bstr"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.9.0"
|
2022-11-05 23:21:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "c48f0051a4b4c5e0b6d365cd04af53aeaa209e3cc15ec2cdb69e73cc87fbd0dc"
|
2022-11-05 23:21:00 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"memchr",
|
2024-01-06 11:27:57 +00:00
|
|
|
"regex-automata 0.4.3",
|
2022-11-05 23:21:00 +00:00
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "bufstream"
|
|
|
|
|
version = "0.1.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "40e38929add23cdf8a366df9b0e088953150724bcbe5fc330b0d8eb3b328eec8"
|
|
|
|
|
|
2021-04-30 11:33:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "builder"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
dependencies = [
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2021-04-30 11:33:24 +00:00
|
|
|
"lychee-lib",
|
|
|
|
|
"regex",
|
|
|
|
|
"reqwest",
|
|
|
|
|
"tokio",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "bumpalo"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "3.14.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec"
|
2020-08-21 22:36:03 +00:00
|
|
|
|
2021-12-01 17:25:11 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "by_address"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "1.1.0"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "bf8dba2868114ed769a1f2590fc9ae5eb331175b44313b6c9b922f8f7ca813d0"
|
2021-12-01 17:25:11 +00:00
|
|
|
|
2022-08-03 21:22:08 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "bytecount"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.6.7"
|
2022-08-03 21:22:08 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "e1e5f035d16fc623ae5f74981db80a439803888314e3a555fd6f04acd51a3205"
|
2022-08-03 21:22:08 +00:00
|
|
|
|
2021-01-06 23:10:58 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "bytes"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.5.0"
|
2021-01-06 23:10:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "a2bd12c1caf447e69cd4528f47f94d203fd2582878ecb9e9465484c4148a8223"
|
2021-01-06 23:10:58 +00:00
|
|
|
|
2021-10-04 23:37:43 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "cached"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.46.1"
|
2021-10-04 23:37:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "c7c8c50262271cdf5abc979a5f76515c234e764fa025d1ba4862c0f0bcda0e95"
|
2021-10-04 23:37:43 +00:00
|
|
|
dependencies = [
|
2023-10-02 14:13:07 +00:00
|
|
|
"ahash",
|
2021-10-04 23:37:43 +00:00
|
|
|
"cached_proc_macro",
|
|
|
|
|
"cached_proc_macro_types",
|
2024-01-06 11:27:57 +00:00
|
|
|
"hashbrown 0.14.3",
|
2022-07-05 12:44:21 +00:00
|
|
|
"instant",
|
2021-10-04 23:37:43 +00:00
|
|
|
"once_cell",
|
2022-02-28 14:38:34 +00:00
|
|
|
"thiserror",
|
2021-10-04 23:37:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "cached_proc_macro"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.18.1"
|
2021-10-04 23:37:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "c878c71c2821aa2058722038a59a67583a4240524687c6028571c9b395ded61f"
|
2021-10-04 23:37:43 +00:00
|
|
|
dependencies = [
|
2023-06-26 10:06:24 +00:00
|
|
|
"darling 0.14.4",
|
2023-01-04 14:42:53 +00:00
|
|
|
"proc-macro2",
|
2021-10-04 23:37:43 +00:00
|
|
|
"quote",
|
2023-06-26 10:06:24 +00:00
|
|
|
"syn 1.0.109",
|
2021-10-04 23:37:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "cached_proc_macro_types"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "3a4f925191b4367301851c6d99b09890311d74b0d43f274c0b34c86d308a3663"
|
|
|
|
|
|
2022-07-07 12:32:31 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "cast"
|
|
|
|
|
version = "0.3.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "cc"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "1.0.83"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0"
|
2023-08-15 14:41:58 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2020-11-24 20:30:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "cfg-if"
|
|
|
|
|
version = "1.0.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "check-if-email-exists"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.9.1"
|
2021-04-01 08:43:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "49f11d61ef99e1fecec73a0b9a8bf45ed7e66923e71dadcadcf650b383901eb2"
|
2020-08-23 21:22:48 +00:00
|
|
|
dependencies = [
|
2021-10-06 12:56:20 +00:00
|
|
|
"async-native-tls",
|
2022-01-27 14:02:05 +00:00
|
|
|
"async-recursion",
|
2020-08-23 21:22:48 +00:00
|
|
|
"async-smtp",
|
2020-11-30 14:44:01 +00:00
|
|
|
"async-std",
|
2020-08-23 21:22:48 +00:00
|
|
|
"async-std-resolver",
|
2023-12-02 12:15:40 +00:00
|
|
|
"fast-socks5 0.9.2",
|
|
|
|
|
"levenshtein",
|
2020-08-23 21:22:48 +00:00
|
|
|
"log",
|
|
|
|
|
"mailchecker",
|
2023-12-02 12:15:40 +00:00
|
|
|
"md5",
|
|
|
|
|
"pwned",
|
2022-03-03 13:14:41 +00:00
|
|
|
"rand 0.8.5",
|
2020-08-23 21:22:48 +00:00
|
|
|
"regex",
|
2021-02-12 21:34:41 +00:00
|
|
|
"reqwest",
|
2020-08-23 21:22:48 +00:00
|
|
|
"serde",
|
|
|
|
|
"serde_json",
|
2022-11-17 12:07:09 +00:00
|
|
|
"trust-dns-proto 0.21.2",
|
2020-08-23 21:22:48 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
2020-08-17 23:17:26 +00:00
|
|
|
name = "chrono"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.4.31"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2023-06-26 10:06:24 +00:00
|
|
|
"android-tzdata",
|
2022-11-05 23:21:00 +00:00
|
|
|
"iana-time-zone",
|
2020-08-17 23:17:26 +00:00
|
|
|
"num-traits",
|
2022-02-11 22:43:47 +00:00
|
|
|
"serde",
|
2024-01-06 11:27:57 +00:00
|
|
|
"windows-targets 0.48.5",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2020-10-21 00:10:25 +00:00
|
|
|
[[package]]
|
2022-09-12 15:23:09 +00:00
|
|
|
name = "ciborium"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.2.1"
|
2020-10-21 00:10:25 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "effd91f6c78e5a4ace8a5d3c0b6bfaec9e2baaef55f3efc00e45fb2e477ee926"
|
2020-10-21 00:10:25 +00:00
|
|
|
dependencies = [
|
2022-09-12 15:23:09 +00:00
|
|
|
"ciborium-io",
|
|
|
|
|
"ciborium-ll",
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "ciborium-io"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.2.1"
|
2022-09-12 15:23:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "cdf919175532b369853f5d5e20b26b43112613fd6fe7aee757e35f7a44642656"
|
2022-09-12 15:23:09 +00:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "ciborium-ll"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.2.1"
|
2022-09-12 15:23:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "defaa24ecc093c77630e6c15e17c51f5e187bf35ee514f4e2d67baaa96dae22b"
|
2022-09-12 15:23:09 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"ciborium-io",
|
|
|
|
|
"half",
|
2022-08-12 20:53:13 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "clap"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "4.4.13"
|
2022-08-12 20:53:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "52bdc885e4cacc7f7c9eedc1ef6da641603180c783c41a15c264944deeaab642"
|
2022-11-13 20:10:32 +00:00
|
|
|
dependencies = [
|
2023-06-26 10:06:24 +00:00
|
|
|
"clap_builder",
|
|
|
|
|
"clap_derive",
|
2022-11-13 20:10:32 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2023-06-26 10:06:24 +00:00
|
|
|
name = "clap_builder"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "4.4.12"
|
2022-11-13 20:10:32 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "fb7fb5e4e979aec3be7791562fcba452f94ad85e954da024396433e0e25a79e9"
|
2022-08-12 20:53:13 +00:00
|
|
|
dependencies = [
|
2023-06-26 10:06:24 +00:00
|
|
|
"anstream",
|
|
|
|
|
"anstyle",
|
|
|
|
|
"clap_lex",
|
2023-12-02 12:15:40 +00:00
|
|
|
"strsim 0.10.0",
|
2022-08-12 20:53:13 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "clap_derive"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "4.4.7"
|
2022-08-12 20:53:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "cf9804afaaf59a91e75b022a30fb7229a7901f60c755489cc61c9b423b836442"
|
2022-08-12 20:53:13 +00:00
|
|
|
dependencies = [
|
2023-04-11 15:50:36 +00:00
|
|
|
"heck",
|
2022-08-12 20:53:13 +00:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2022-08-12 20:53:13 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "clap_lex"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.6.0"
|
2022-11-13 20:10:32 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "702fc72eb24e5a1e48ce58027a675bc24edd52096d5397d4aea7c6dd9eca0bd1"
|
2022-11-13 20:10:32 +00:00
|
|
|
|
2021-04-30 11:33:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "client_pool"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
dependencies = [
|
2021-12-01 17:25:11 +00:00
|
|
|
"futures",
|
2021-04-30 11:33:24 +00:00
|
|
|
"lychee-lib",
|
|
|
|
|
"tokio",
|
2021-12-01 17:25:11 +00:00
|
|
|
"tokio-stream",
|
|
|
|
|
]
|
|
|
|
|
|
2021-04-30 11:33:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "collect_links"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
dependencies = [
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2021-04-30 11:33:24 +00:00
|
|
|
"lychee-lib",
|
|
|
|
|
"regex",
|
|
|
|
|
"reqwest",
|
|
|
|
|
"tokio",
|
2021-12-01 17:25:11 +00:00
|
|
|
"tokio-stream",
|
2021-04-30 11:33:24 +00:00
|
|
|
]
|
|
|
|
|
|
2023-06-26 10:06:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "colorchoice"
|
|
|
|
|
version = "1.0.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7"
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "concurrent-queue"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "2.4.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "d16048cd947b08fa32c24458a22f5dc5e835264f689f4f5653210c69fd107363"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
2022-12-19 14:05:53 +00:00
|
|
|
"crossbeam-utils",
|
2020-08-21 22:36:03 +00:00
|
|
|
]
|
|
|
|
|
|
2020-10-10 04:31:28 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "console"
|
2023-05-22 10:37:57 +00:00
|
|
|
version = "0.15.7"
|
2020-10-10 04:31:28 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-22 10:37:57 +00:00
|
|
|
checksum = "c926e00cc70edefdc64d3a5ff31cc65bb97a3460097762bd23afb4d8145fccf8"
|
2020-10-10 04:31:28 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"encode_unicode",
|
2022-09-29 12:14:23 +00:00
|
|
|
"lazy_static",
|
2020-10-10 04:31:28 +00:00
|
|
|
"libc",
|
|
|
|
|
"unicode-width",
|
2023-05-18 12:58:13 +00:00
|
|
|
"windows-sys 0.45.0",
|
2020-08-21 22:36:03 +00:00
|
|
|
]
|
|
|
|
|
|
2022-02-07 21:45:17 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "const_format"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.2.32"
|
2022-02-07 21:45:17 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "e3a214c7af3d04997541b18d432afaff4c455e79e2029079647e72fc2bd27673"
|
2022-02-07 21:45:17 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"const_format_proc_macros",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "const_format_proc_macros"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.2.32"
|
2022-02-07 21:45:17 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "c7f6ff08fd20f4f299298a28e2dfa8a8ba1036e6cd2460ac1de7b425d76f2500"
|
2022-02-07 21:45:17 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
"unicode-xid",
|
|
|
|
|
]
|
|
|
|
|
|
2023-07-13 15:32:41 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "cookie"
|
|
|
|
|
version = "0.16.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"percent-encoding",
|
|
|
|
|
"time",
|
|
|
|
|
"version_check",
|
|
|
|
|
]
|
|
|
|
|
|
2023-07-15 11:41:55 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "cookie"
|
|
|
|
|
version = "0.17.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "7efb37c3e1ccb1ff97164ad95ac1606e8ccd35b3fa0a7d99a304c7f4a428cc24"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"percent-encoding",
|
|
|
|
|
"time",
|
|
|
|
|
"version_check",
|
|
|
|
|
]
|
|
|
|
|
|
2023-07-13 15:32:41 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "cookie_store"
|
|
|
|
|
version = "0.16.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d606d0fba62e13cf04db20536c05cb7f13673c161cb47a47a82b9b9e7d3f1daa"
|
|
|
|
|
dependencies = [
|
2023-07-15 11:41:55 +00:00
|
|
|
"cookie 0.16.2",
|
2023-07-13 15:32:41 +00:00
|
|
|
"idna 0.2.3",
|
|
|
|
|
"log",
|
|
|
|
|
"publicsuffix",
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_derive",
|
|
|
|
|
"serde_json",
|
|
|
|
|
"time",
|
|
|
|
|
"url",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "cookie_store"
|
2023-07-15 11:41:55 +00:00
|
|
|
version = "0.20.0"
|
2023-07-13 15:32:41 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-07-15 11:41:55 +00:00
|
|
|
checksum = "387461abbc748185c3a6e1673d826918b450b87ff22639429c694619a83b6cf6"
|
2023-07-13 15:32:41 +00:00
|
|
|
dependencies = [
|
2023-07-15 11:41:55 +00:00
|
|
|
"cookie 0.17.0",
|
2023-07-13 15:32:41 +00:00
|
|
|
"idna 0.3.0",
|
|
|
|
|
"log",
|
|
|
|
|
"publicsuffix",
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_derive",
|
|
|
|
|
"serde_json",
|
|
|
|
|
"time",
|
|
|
|
|
"url",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "core-foundation"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.9.4"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"core-foundation-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "core-foundation-sys"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.8.6"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2021-03-04 11:30:59 +00:00
|
|
|
[[package]]
|
2021-11-03 22:45:42 +00:00
|
|
|
name = "cpufeatures"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.12"
|
2021-03-04 11:30:59 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
|
2021-11-03 22:45:42 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
2021-03-04 11:30:59 +00:00
|
|
|
|
2020-08-07 17:00:21 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "crc32fast"
|
2022-05-30 21:02:18 +00:00
|
|
|
version = "1.3.2"
|
2020-08-07 17:00:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-30 21:02:18 +00:00
|
|
|
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
2020-08-07 17:00:21 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2021-12-01 17:25:11 +00:00
|
|
|
]
|
|
|
|
|
|
2021-12-16 17:45:52 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "criterion"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.5.1"
|
2024-01-05 14:46:43 +00:00
|
|
|
source = "git+https://github.com/bheisler/criterion.rs#b913e232edd98780961ecfbae836ec77ede49259"
|
2021-12-16 17:45:52 +00:00
|
|
|
dependencies = [
|
2022-09-12 15:23:09 +00:00
|
|
|
"anes",
|
|
|
|
|
"cast",
|
|
|
|
|
"ciborium",
|
2023-06-26 10:06:24 +00:00
|
|
|
"clap",
|
2021-12-16 17:45:52 +00:00
|
|
|
"criterion-plot",
|
2024-01-06 11:27:57 +00:00
|
|
|
"itertools 0.12.0",
|
2021-12-16 17:45:52 +00:00
|
|
|
"num-traits",
|
2023-02-25 17:23:43 +00:00
|
|
|
"once_cell",
|
2021-12-16 17:45:52 +00:00
|
|
|
"oorandom",
|
|
|
|
|
"plotters",
|
|
|
|
|
"rayon",
|
|
|
|
|
"regex",
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_derive",
|
|
|
|
|
"serde_json",
|
|
|
|
|
"tinytemplate",
|
|
|
|
|
"walkdir",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "criterion-plot"
|
2022-09-12 15:23:09 +00:00
|
|
|
version = "0.5.0"
|
2024-01-05 14:46:43 +00:00
|
|
|
source = "git+https://github.com/bheisler/criterion.rs#b913e232edd98780961ecfbae836ec77ede49259"
|
2021-12-16 17:45:52 +00:00
|
|
|
dependencies = [
|
2022-09-12 15:23:09 +00:00
|
|
|
"cast",
|
2024-01-06 11:27:57 +00:00
|
|
|
"itertools 0.12.0",
|
2021-12-16 17:45:52 +00:00
|
|
|
]
|
|
|
|
|
|
2021-12-01 17:25:11 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "crossbeam"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.8.3"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "6eb9105919ca8e40d437fc9cbb8f1975d916f1bd28afe795a48aae32a2cc8920"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2021-12-01 17:25:11 +00:00
|
|
|
"crossbeam-channel",
|
|
|
|
|
"crossbeam-deque",
|
2022-02-18 16:09:30 +00:00
|
|
|
"crossbeam-epoch",
|
2021-12-01 17:25:11 +00:00
|
|
|
"crossbeam-queue",
|
2022-02-18 16:09:30 +00:00
|
|
|
"crossbeam-utils",
|
2021-12-01 17:25:11 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "crossbeam-channel"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.5.10"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "82a9b73a36529d9c47029b9fb3a6f0ea3cc916a261195352ba19e770fc1748b2"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
|
|
|
|
"crossbeam-utils",
|
2021-12-01 17:25:11 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "crossbeam-deque"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.8.4"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "fca89a0e215bab21874660c67903c5f143333cab1da83d041c7ded6053774751"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
|
|
|
|
"crossbeam-epoch",
|
|
|
|
|
"crossbeam-utils",
|
2021-12-01 17:25:11 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "crossbeam-epoch"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.9.17"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "0e3681d554572a651dda4186cd47240627c3d0114d45a95f6ad27f2f22e7548d"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
2022-05-30 21:02:18 +00:00
|
|
|
"autocfg",
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
|
|
|
|
"crossbeam-utils",
|
2020-08-07 17:00:21 +00:00
|
|
|
]
|
|
|
|
|
|
2020-11-24 20:30:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "crossbeam-queue"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.3.10"
|
2020-11-24 20:30:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "adc6598521bb5a83d491e8c1fe51db7296019d2ca3cb93cc6c2a20369a4d78a2"
|
2020-11-24 20:30:06 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
|
|
|
|
"crossbeam-utils",
|
2020-11-24 20:30:06 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "crossbeam-utils"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.8.18"
|
2020-11-24 20:30:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "c3a430a770ebd84726f584a90ee7f020d28db52c6d02138900f22341f866d39c"
|
2020-11-24 20:30:06 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2020-08-21 22:36:03 +00:00
|
|
|
]
|
|
|
|
|
|
2022-02-18 09:58:30 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "crypto-common"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.1.6"
|
2022-02-18 09:58:30 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
2022-02-18 09:58:30 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"generic-array",
|
|
|
|
|
"typenum",
|
|
|
|
|
]
|
|
|
|
|
|
2021-12-16 17:45:52 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "csv"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "1.3.0"
|
2021-12-16 17:45:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "ac574ff4d437a7b5ad237ef331c17ccca63c46479e5b5453eb8e10bb99a759fe"
|
2021-12-16 17:45:52 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"csv-core",
|
2023-02-14 14:08:48 +00:00
|
|
|
"itoa",
|
2021-12-16 17:45:52 +00:00
|
|
|
"ryu",
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "csv-core"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.1.11"
|
2021-12-16 17:45:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "5efa2b3d7902f4b634a20cae3c9c4e6209dc4779feb6863329607560143efa70"
|
2021-12-16 17:45:52 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"memchr",
|
|
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "darling"
|
|
|
|
|
version = "0.10.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "0d706e75d87e35569db781a9b5e2416cff1236a47ed380831f959382ccd5f858"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"darling_core 0.10.2",
|
|
|
|
|
"darling_macro 0.10.2",
|
|
|
|
|
]
|
|
|
|
|
|
2022-11-05 23:21:00 +00:00
|
|
|
[[package]]
|
2023-06-26 10:06:24 +00:00
|
|
|
name = "darling"
|
|
|
|
|
version = "0.14.4"
|
2022-11-05 23:21:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "7b750cb3417fd1b327431a470f388520309479ab0bf5e323505daf0290cd3850"
|
2022-11-05 23:21:00 +00:00
|
|
|
dependencies = [
|
2023-06-26 10:06:24 +00:00
|
|
|
"darling_core 0.14.4",
|
|
|
|
|
"darling_macro 0.14.4",
|
2022-11-05 23:21:00 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2023-06-26 10:06:24 +00:00
|
|
|
name = "darling"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "0.20.3"
|
2022-11-05 23:21:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "0209d94da627ab5605dcccf08bb18afa5009cfbef48d8a8b7d7bdbc79be25c5e"
|
2022-11-05 23:21:00 +00:00
|
|
|
dependencies = [
|
2023-08-15 14:41:58 +00:00
|
|
|
"darling_core 0.20.3",
|
|
|
|
|
"darling_macro 0.20.3",
|
2022-11-05 23:21:00 +00:00
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "darling_core"
|
|
|
|
|
version = "0.10.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "f0c960ae2da4de88a91b2d920c2a7233b400bc33cb28453a2987822d8392519b"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"fnv",
|
|
|
|
|
"ident_case",
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
"strsim 0.9.3",
|
|
|
|
|
"syn 1.0.109",
|
|
|
|
|
]
|
|
|
|
|
|
2022-11-05 23:21:00 +00:00
|
|
|
[[package]]
|
2023-06-26 10:06:24 +00:00
|
|
|
name = "darling_core"
|
|
|
|
|
version = "0.14.4"
|
2022-11-05 23:21:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "109c1ca6e6b7f82cc233a97004ea8ed7ca123a9af07a8230878fcfda9b158bf0"
|
2022-11-05 23:21:00 +00:00
|
|
|
dependencies = [
|
2023-06-26 10:06:24 +00:00
|
|
|
"fnv",
|
|
|
|
|
"ident_case",
|
2022-11-05 23:21:00 +00:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2023-12-02 12:15:40 +00:00
|
|
|
"strsim 0.10.0",
|
2023-06-26 10:06:24 +00:00
|
|
|
"syn 1.0.109",
|
2021-10-04 23:37:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "darling_core"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "0.20.3"
|
2021-10-04 23:37:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "177e3443818124b357d8e76f53be906d60937f0d3a90773a664fa63fa253e621"
|
2021-10-04 23:37:43 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"fnv",
|
|
|
|
|
"ident_case",
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2023-12-02 12:15:40 +00:00
|
|
|
"strsim 0.10.0",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2023-06-26 10:06:24 +00:00
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "darling_macro"
|
|
|
|
|
version = "0.10.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d9b5a2f4ac4969822c62224815d069952656cadc7084fdca9751e6d959189b72"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"darling_core 0.10.2",
|
|
|
|
|
"quote",
|
|
|
|
|
"syn 1.0.109",
|
|
|
|
|
]
|
|
|
|
|
|
2023-06-26 10:06:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "darling_macro"
|
|
|
|
|
version = "0.14.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "a4aab4dbc9f7611d8b55048a3a16d2d010c2c8334e46304b40ac1cc14bf3b48e"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"darling_core 0.14.4",
|
|
|
|
|
"quote",
|
|
|
|
|
"syn 1.0.109",
|
2021-10-04 23:37:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "darling_macro"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "0.20.3"
|
2021-10-04 23:37:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "836a9bbc7ad63342d6d6e7b815ccab164bc77a2d95d84bc3117a8c0d5c98e2d5"
|
2021-10-04 23:37:43 +00:00
|
|
|
dependencies = [
|
2023-08-15 14:41:58 +00:00
|
|
|
"darling_core 0.20.3",
|
2021-10-04 23:37:43 +00:00
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2021-10-04 23:37:43 +00:00
|
|
|
]
|
|
|
|
|
|
2022-01-10 21:35:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "dashmap"
|
2023-09-05 08:50:45 +00:00
|
|
|
version = "5.5.3"
|
2022-01-10 21:35:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-09-05 08:50:45 +00:00
|
|
|
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
|
2022-01-10 21:35:37 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2024-01-06 11:27:57 +00:00
|
|
|
"hashbrown 0.14.3",
|
2022-05-30 21:02:18 +00:00
|
|
|
"lock_api",
|
2022-09-02 14:25:50 +00:00
|
|
|
"once_cell",
|
2022-08-11 12:13:37 +00:00
|
|
|
"parking_lot_core",
|
2022-01-14 14:25:51 +00:00
|
|
|
"serde",
|
2022-01-10 21:35:37 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
2020-08-17 23:17:26 +00:00
|
|
|
name = "data-encoding"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "2.5.0"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "7e962a19be5cfc3f3bf6dd8f61eb50107f356ad6270fbb3ed41476571db78be5"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2020-11-24 20:30:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "deadpool"
|
2022-05-30 21:02:18 +00:00
|
|
|
version = "0.9.5"
|
2020-11-24 20:30:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-30 21:02:18 +00:00
|
|
|
checksum = "421fe0f90f2ab22016f32a9881be5134fdd71c65298917084b0c7477cbc3856e"
|
2020-11-24 20:30:06 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"async-trait",
|
2022-02-28 14:38:44 +00:00
|
|
|
"deadpool-runtime",
|
2020-11-24 20:30:06 +00:00
|
|
|
"num_cpus",
|
2022-05-30 21:02:18 +00:00
|
|
|
"retain_mut",
|
2021-02-12 21:34:41 +00:00
|
|
|
"tokio",
|
2020-11-24 20:30:06 +00:00
|
|
|
]
|
|
|
|
|
|
2022-02-28 14:38:44 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "deadpool-runtime"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.1.3"
|
2022-02-28 14:38:44 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "63dfa964fe2a66f3fde91fc70b267fe193d822c7e603e2a675a49a7f46ad3f49"
|
2022-02-28 14:38:44 +00:00
|
|
|
|
2023-08-15 14:41:58 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "deranged"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.3.11"
|
2023-08-15 14:41:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
|
2023-08-15 14:41:58 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"powerfmt",
|
2023-08-15 14:41:58 +00:00
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
2021-10-28 00:05:58 +00:00
|
|
|
[[package]]
|
2021-12-01 17:25:11 +00:00
|
|
|
name = "derivative"
|
|
|
|
|
version = "2.2.0"
|
2021-10-28 00:05:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-12-01 17:25:11 +00:00
|
|
|
checksum = "fcc3dd5e9e9c0b295d6e1e4d811fb6f157d5ffd784b8d202fc62eac8035a770b"
|
2021-10-28 00:05:58 +00:00
|
|
|
dependencies = [
|
2021-12-01 17:25:11 +00:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2023-06-26 10:06:24 +00:00
|
|
|
"syn 1.0.109",
|
2021-10-28 00:05:58 +00:00
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "derive_builder"
|
|
|
|
|
version = "0.9.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "a2658621297f2cf68762a6f7dc0bb7e1ff2cfd6583daef8ee0fed6f7ec468ec0"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"darling 0.10.2",
|
|
|
|
|
"derive_builder_core",
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
"syn 1.0.109",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "derive_builder_core"
|
|
|
|
|
version = "0.9.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "2791ea3e372c8495c0bc2033991d76b512cd799d07491fbd6890124db9458bef"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"darling 0.10.2",
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
"syn 1.0.109",
|
|
|
|
|
]
|
|
|
|
|
|
2022-11-13 20:10:32 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "diff"
|
|
|
|
|
version = "0.1.13"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
|
|
|
|
|
|
2021-09-08 23:49:25 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "difflib"
|
|
|
|
|
version = "0.4.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
|
|
|
|
2020-10-26 08:23:45 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "digest"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.10.7"
|
2020-10-26 08:23:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
2020-10-26 08:23:45 +00:00
|
|
|
dependencies = [
|
2022-02-18 09:58:30 +00:00
|
|
|
"block-buffer",
|
|
|
|
|
"crypto-common",
|
2020-10-16 13:29:13 +00:00
|
|
|
]
|
|
|
|
|
|
2020-12-02 22:28:37 +00:00
|
|
|
[[package]]
|
2022-08-08 14:18:05 +00:00
|
|
|
name = "dirs"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "5.0.1"
|
2020-12-02 22:28:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
|
2020-12-02 22:28:37 +00:00
|
|
|
dependencies = [
|
2022-08-08 14:18:05 +00:00
|
|
|
"dirs-sys",
|
2020-12-02 22:28:37 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
2022-08-08 14:18:05 +00:00
|
|
|
name = "dirs-sys"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.4.1"
|
2020-12-02 22:28:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
|
2020-12-02 22:28:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
2023-06-26 10:06:24 +00:00
|
|
|
"option-ext",
|
2020-12-02 22:28:37 +00:00
|
|
|
"redox_users",
|
2023-06-26 10:06:24 +00:00
|
|
|
"windows-sys 0.48.0",
|
2020-12-02 22:28:37 +00:00
|
|
|
]
|
|
|
|
|
|
2020-10-17 08:01:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "doc-comment"
|
|
|
|
|
version = "0.3.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "either"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "1.9.0"
|
2020-08-23 21:22:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07"
|
2020-08-23 21:22:48 +00:00
|
|
|
|
2022-11-05 22:40:33 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "email_address"
|
|
|
|
|
version = "0.2.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e2153bd83ebc09db15bcbdc3e2194d901804952e3dc96967e1cd3b0c5c32d112"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
2020-10-10 04:31:28 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "encode_unicode"
|
|
|
|
|
version = "0.3.6"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "encoding_rs"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.8.33"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "7268b386296a025e474d5140678f75d6de9493ae55a5d709eeb9dd08149945e1"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2022-06-15 21:52:30 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "enum-as-inner"
|
|
|
|
|
version = "0.4.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "21cdad81446a7f7dc43f6a77409efeb9733d2fa65553efef6018ef257c959b73"
|
|
|
|
|
dependencies = [
|
2023-04-11 15:50:36 +00:00
|
|
|
"heck",
|
2022-06-15 21:52:30 +00:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2023-06-26 10:06:24 +00:00
|
|
|
"syn 1.0.109",
|
2022-06-15 21:52:30 +00:00
|
|
|
]
|
|
|
|
|
|
2022-11-17 12:07:09 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "enum-as-inner"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.6.0"
|
2022-11-17 12:07:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "5ffccbb6966c05b32ef8fbac435df276c4ae4d3dc55a8cd0eb9745e6c12f546a"
|
2022-11-17 12:07:09 +00:00
|
|
|
dependencies = [
|
2023-04-11 15:50:36 +00:00
|
|
|
"heck",
|
2022-11-17 12:07:09 +00:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2022-11-17 12:07:09 +00:00
|
|
|
]
|
|
|
|
|
|
2022-11-28 22:25:33 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "env_logger"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.10.1"
|
2022-11-28 22:25:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "95b3f3e67048839cb0d0781f445682a35113da7121f7c949db0e2be96a4fbece"
|
2022-11-28 22:25:33 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"humantime",
|
2022-12-01 15:52:04 +00:00
|
|
|
"is-terminal",
|
2022-11-28 22:25:33 +00:00
|
|
|
"log",
|
|
|
|
|
"regex",
|
|
|
|
|
"termcolor",
|
|
|
|
|
]
|
|
|
|
|
|
2023-06-26 10:59:09 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "equivalent"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "1.0.1"
|
2023-06-26 10:59:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
|
2023-06-26 10:59:09 +00:00
|
|
|
|
2023-03-29 23:22:25 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "errno"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.3.8"
|
2022-11-25 12:02:41 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "a258e46cdc063eb8519c00b9fc845fc47bcfca4130e2f08e88665ceda8474245"
|
2022-11-25 12:02:41 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
2023-12-02 12:15:40 +00:00
|
|
|
"windows-sys 0.52.0",
|
2022-11-25 12:02:41 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "event-listener"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "2.5.3"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "0206175f82b8d6bf6652ff7d71a1e27fd2e4efde587fd368662814d6ec1d9ce0"
|
2020-08-21 22:36:03 +00:00
|
|
|
|
2024-01-06 11:27:57 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "event-listener"
|
|
|
|
|
version = "3.1.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d93877bcde0eb80ca09131a08d23f0a5c18a620b01db137dba666d18cd9b30c2"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"concurrent-queue",
|
|
|
|
|
"parking",
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "event-listener"
|
|
|
|
|
version = "4.0.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "218a870470cce1469024e9fb66b901aa983929d81304a1cdb299f28118e550d5"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"concurrent-queue",
|
|
|
|
|
"parking",
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "event-listener-strategy"
|
|
|
|
|
version = "0.4.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "958e4d70b6d5e81971bebec42271ec641e7ff4e170a6fa605f2b8a8b65cb97d3"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"event-listener 4.0.2",
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
]
|
|
|
|
|
|
2021-12-16 17:45:52 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "extract"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"lychee-lib",
|
|
|
|
|
"tokio",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "fast-socks5"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.8.2"
|
2020-08-23 21:22:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "961ce1761191c157145a8c9f0c3ceabecd3a729d65c9a8d443674eaee3420f7e"
|
2020-08-23 21:22:48 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"anyhow",
|
|
|
|
|
"log",
|
|
|
|
|
"thiserror",
|
2022-08-11 12:13:37 +00:00
|
|
|
"tokio",
|
|
|
|
|
"tokio-stream",
|
2020-08-23 21:22:48 +00:00
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "fast-socks5"
|
|
|
|
|
version = "0.9.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d449e348301d5fb9b0e5781510d8235ffe3bbac3286bd305462736a9e7043039"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"anyhow",
|
|
|
|
|
"async-trait",
|
|
|
|
|
"log",
|
|
|
|
|
"thiserror",
|
|
|
|
|
"tokio",
|
|
|
|
|
"tokio-stream",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "fast_chemail"
|
|
|
|
|
version = "0.9.6"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "495a39d30d624c2caabe6312bfead73e7717692b44e0b32df168c275a2e8e9e4"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"ascii_utils",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "fastrand"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "1.9.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "e51093e27b0797c359783294ca4f0a911c270184cb10f85783b118614a1501be"
|
2021-02-10 10:58:04 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"instant",
|
|
|
|
|
]
|
2020-08-21 22:36:03 +00:00
|
|
|
|
2023-08-15 14:41:58 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "fastrand"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "2.0.1"
|
2023-08-15 14:41:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "25cbce373ec4653f1a01a31e8a5e5ec0c622dc27ff9c4e6606eefef5cbbed4a5"
|
2023-08-15 14:41:58 +00:00
|
|
|
|
2020-08-07 17:00:21 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "flate2"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.28"
|
2020-08-07 17:00:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "46303f565772937ffe1d394a4fac6f411c6013172fadde9dcdb1e147a086940e"
|
2020-08-07 17:00:21 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"crc32fast",
|
2023-08-15 14:41:58 +00:00
|
|
|
"miniz_oxide",
|
2020-08-07 17:00:21 +00:00
|
|
|
]
|
|
|
|
|
|
2020-10-17 08:01:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "float-cmp"
|
2021-11-18 22:22:38 +00:00
|
|
|
version = "0.9.0"
|
2020-10-17 08:01:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-18 22:22:38 +00:00
|
|
|
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
2020-10-17 08:01:06 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"num-traits",
|
|
|
|
|
]
|
|
|
|
|
|
2021-12-01 17:25:11 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "flume"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.10.14"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-sink",
|
|
|
|
|
"nanorand",
|
|
|
|
|
"pin-project",
|
2024-01-06 11:27:57 +00:00
|
|
|
"spin",
|
2021-12-01 17:25:11 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "fnv"
|
|
|
|
|
version = "1.0.7"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "foreign-types"
|
|
|
|
|
version = "0.3.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"foreign-types-shared",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "foreign-types-shared"
|
|
|
|
|
version = "0.1.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
|
|
|
|
|
2020-10-16 13:29:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "form_urlencoded"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "1.2.1"
|
2020-10-16 13:29:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
|
2020-10-16 13:29:13 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"percent-encoding",
|
|
|
|
|
]
|
|
|
|
|
|
2021-01-08 15:41:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "futf"
|
2022-05-30 21:02:18 +00:00
|
|
|
version = "0.1.5"
|
2021-01-08 15:41:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-30 21:02:18 +00:00
|
|
|
checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843"
|
2021-01-08 15:41:13 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"mac",
|
|
|
|
|
"new_debug_unreachable",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-11 14:13:10 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "futures"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.3.30"
|
2020-08-11 14:13:10 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
|
2020-08-11 14:13:10 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"futures-channel",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-executor",
|
|
|
|
|
"futures-io",
|
|
|
|
|
"futures-sink",
|
|
|
|
|
"futures-task",
|
|
|
|
|
"futures-util",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "futures-channel"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.3.30"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"futures-core",
|
2020-08-11 14:13:10 +00:00
|
|
|
"futures-sink",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "futures-core"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.3.30"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2020-08-11 14:13:10 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "futures-executor"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.3.30"
|
2020-08-11 14:13:10 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
|
2020-08-11 14:13:10 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-task",
|
|
|
|
|
"futures-util",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "futures-io"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.3.30"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "futures-lite"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "1.13.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "49a9d51ce47660b1e808d3c990b4709f2f415d928835a17dfd16991515c46bce"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
2023-08-15 14:41:58 +00:00
|
|
|
"fastrand 1.9.0",
|
2020-08-21 22:36:03 +00:00
|
|
|
"futures-core",
|
|
|
|
|
"futures-io",
|
|
|
|
|
"memchr",
|
2020-11-30 14:44:01 +00:00
|
|
|
"parking",
|
2021-02-12 21:34:41 +00:00
|
|
|
"pin-project-lite",
|
2020-08-21 22:36:03 +00:00
|
|
|
"waker-fn",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-06 11:27:57 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "futures-lite"
|
|
|
|
|
version = "2.1.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "aeee267a1883f7ebef3700f262d2d54de95dfaf38189015a74fdc4e0c7ad8143"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"fastrand 2.0.1",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-io",
|
|
|
|
|
"parking",
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-11 14:13:10 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "futures-macro"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.3.30"
|
2020-08-11 14:13:10 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
|
2020-08-11 14:13:10 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2020-08-11 14:13:10 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "futures-sink"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.3.30"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "futures-task"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.3.30"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "futures-timer"
|
|
|
|
|
version = "3.0.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e64b03909df88034c26dc1547e8970b91f98bdb65165d6a4e9110d94263dbb2c"
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "futures-util"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.3.30"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2020-08-11 14:13:10 +00:00
|
|
|
"futures-channel",
|
2020-08-04 22:32:37 +00:00
|
|
|
"futures-core",
|
|
|
|
|
"futures-io",
|
2020-08-11 14:13:10 +00:00
|
|
|
"futures-macro",
|
|
|
|
|
"futures-sink",
|
2020-08-04 22:32:37 +00:00
|
|
|
"futures-task",
|
|
|
|
|
"memchr",
|
2021-02-12 21:34:41 +00:00
|
|
|
"pin-project-lite",
|
2020-08-04 22:32:37 +00:00
|
|
|
"pin-utils",
|
|
|
|
|
"slab",
|
|
|
|
|
]
|
|
|
|
|
|
2020-10-26 08:23:45 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "generic-array"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.14.7"
|
2020-10-26 08:23:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
2020-10-26 08:23:45 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"typenum",
|
2021-03-04 11:30:59 +00:00
|
|
|
"version_check",
|
2020-10-26 08:23:45 +00:00
|
|
|
]
|
|
|
|
|
|
2020-10-20 23:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "getopts"
|
|
|
|
|
version = "0.2.21"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "14dbbfd5c71d70241ecf9e6f13737f7b5ce823821063188d7e46c41d371eebd5"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"unicode-width",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "getrandom"
|
2021-02-10 10:58:04 +00:00
|
|
|
version = "0.1.16"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-10 10:58:04 +00:00
|
|
|
checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2020-08-04 22:32:37 +00:00
|
|
|
"libc",
|
2021-01-11 07:09:23 +00:00
|
|
|
"wasi 0.9.0+wasi-snapshot-preview1",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "getrandom"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.11"
|
2021-01-11 07:09:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f"
|
2021-01-11 07:09:23 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2021-12-01 17:25:11 +00:00
|
|
|
"js-sys",
|
2021-01-11 07:09:23 +00:00
|
|
|
"libc",
|
2022-11-05 23:21:00 +00:00
|
|
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
2021-12-01 17:25:11 +00:00
|
|
|
"wasm-bindgen",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2022-02-11 22:43:47 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "gimli"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.28.1"
|
2022-02-11 22:43:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "4271d37baee1b8c7e4b708028c57d816cf9d2434acb33a549475f78c181f6253"
|
2022-02-11 22:43:47 +00:00
|
|
|
|
2020-08-14 00:33:04 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "glob"
|
2023-01-09 12:03:46 +00:00
|
|
|
version = "0.3.1"
|
2020-08-14 00:33:04 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-09 12:03:46 +00:00
|
|
|
checksum = "d2fabcfbdc87f4758337ca535fb41a6d701b65693ce38287d856d1674551ec9b"
|
2020-08-14 00:33:04 +00:00
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "gloo-timers"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.2.6"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "9b995a66bb87bebce9a0f4a95aed01daca4872c050bfcb21653361c03bc35e5c"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"futures-channel",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"js-sys",
|
|
|
|
|
"wasm-bindgen",
|
|
|
|
|
]
|
|
|
|
|
|
2021-01-06 23:10:58 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "h2"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.3.22"
|
2021-01-06 23:10:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "4d6250322ef6e60f93f9a2162799302cd6f68f79f6e5d85c8c16f14d1d958178"
|
2021-01-06 23:10:58 +00:00
|
|
|
dependencies = [
|
2021-02-12 21:34:41 +00:00
|
|
|
"bytes",
|
2021-01-06 23:10:58 +00:00
|
|
|
"fnv",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-sink",
|
|
|
|
|
"futures-util",
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2024-01-06 11:27:57 +00:00
|
|
|
"indexmap 2.1.0",
|
2021-01-06 23:10:58 +00:00
|
|
|
"slab",
|
2021-02-12 21:34:41 +00:00
|
|
|
"tokio",
|
2022-06-15 21:52:30 +00:00
|
|
|
"tokio-util",
|
2020-08-18 22:10:59 +00:00
|
|
|
"tracing",
|
|
|
|
|
]
|
|
|
|
|
|
2021-12-16 17:45:52 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "half"
|
|
|
|
|
version = "1.8.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7"
|
|
|
|
|
|
2022-03-02 12:55:00 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "hashbrown"
|
2022-09-02 14:25:50 +00:00
|
|
|
version = "0.12.3"
|
2022-03-02 12:55:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-02 14:25:50 +00:00
|
|
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
2022-03-02 12:55:00 +00:00
|
|
|
|
2023-06-26 10:59:09 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "hashbrown"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.14.3"
|
2023-06-26 10:59:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604"
|
2023-10-02 14:13:07 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"ahash",
|
|
|
|
|
"allocator-api2",
|
|
|
|
|
]
|
2023-06-26 10:59:09 +00:00
|
|
|
|
2020-10-26 08:23:45 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "headers"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.3.9"
|
2020-10-26 08:23:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "06683b93020a07e3dbcf5f8c0f6d40080d725bea7936fc01ad345c01b97dc270"
|
2020-10-26 08:23:45 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"base64 0.21.5",
|
2021-02-12 21:34:41 +00:00
|
|
|
"bytes",
|
2020-10-26 08:23:45 +00:00
|
|
|
"headers-core",
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2021-11-03 22:45:42 +00:00
|
|
|
"httpdate",
|
2020-10-26 08:23:45 +00:00
|
|
|
"mime",
|
2024-01-06 11:27:57 +00:00
|
|
|
"sha1 0.10.6",
|
2020-10-26 08:23:45 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "headers-core"
|
|
|
|
|
version = "0.2.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
|
|
|
|
|
dependencies = [
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2020-10-26 08:23:45 +00:00
|
|
|
]
|
|
|
|
|
|
2022-05-30 21:02:18 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "heck"
|
2023-06-19 13:12:11 +00:00
|
|
|
version = "0.4.1"
|
2022-05-30 21:02:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-19 13:12:11 +00:00
|
|
|
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
2022-05-30 21:02:18 +00:00
|
|
|
|
2022-11-25 12:02:41 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "hermit-abi"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.3.3"
|
2023-06-13 16:25:32 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "d77f7ec81a6d05a3abb01ab6eb7590f6083d08449fe5a1c8b1e620283546ccb7"
|
2023-06-13 16:25:32 +00:00
|
|
|
|
2023-06-26 10:06:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "hex"
|
|
|
|
|
version = "0.4.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "hostname"
|
|
|
|
|
version = "0.3.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
"match_cfg",
|
2021-02-12 21:34:41 +00:00
|
|
|
"winapi",
|
2020-08-23 21:22:48 +00:00
|
|
|
]
|
|
|
|
|
|
2021-01-08 15:41:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "html5ever"
|
2022-03-28 13:50:10 +00:00
|
|
|
version = "0.26.0"
|
2021-01-08 15:41:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-28 13:50:10 +00:00
|
|
|
checksum = "bea68cab48b8459f17cf1c944c67ddc572d272d9f2b274140f223ecb1da4a3b7"
|
2021-01-08 15:41:13 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"log",
|
|
|
|
|
"mac",
|
|
|
|
|
"markup5ever",
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2023-06-26 10:06:24 +00:00
|
|
|
"syn 1.0.109",
|
2021-01-08 15:41:13 +00:00
|
|
|
]
|
|
|
|
|
|
2022-02-07 21:54:47 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "html5gum"
|
2023-07-27 12:25:10 +00:00
|
|
|
version = "0.5.7"
|
2022-02-07 21:54:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-07-27 12:25:10 +00:00
|
|
|
checksum = "4c4e556171a058ba117bbe88b059fb37b6289023e007d2903ea6dca3a3cbff14"
|
2022-02-07 21:54:47 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"jetscii",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "http"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.2.11"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "8947b1a6fad4393052c7ba1f4cd97bed3e953a95c79c92ad9b051a04611d9fbb"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bytes",
|
|
|
|
|
"fnv",
|
|
|
|
|
"itoa",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "http"
|
|
|
|
|
version = "1.0.0"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "b32afd38673a8016f7c9ae69e5af41a58f81b1d31689040f2f1959594ce194ea"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2021-02-12 21:34:41 +00:00
|
|
|
"bytes",
|
2020-08-04 22:32:37 +00:00
|
|
|
"fnv",
|
2023-02-14 14:08:48 +00:00
|
|
|
"itoa",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2021-01-06 23:10:58 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "http-body"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.4.6"
|
2021-01-06 23:10:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
|
2021-01-06 23:10:58 +00:00
|
|
|
dependencies = [
|
2021-02-12 21:34:41 +00:00
|
|
|
"bytes",
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2021-03-28 15:20:03 +00:00
|
|
|
"pin-project-lite",
|
2021-01-06 23:10:58 +00:00
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "http-body"
|
|
|
|
|
version = "1.0.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bytes",
|
|
|
|
|
"http 1.0.0",
|
|
|
|
|
]
|
|
|
|
|
|
2023-04-17 21:14:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "http-range-header"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "0.3.1"
|
2023-04-17 21:14:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f"
|
2023-04-17 21:14:24 +00:00
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "http-types"
|
2021-09-06 13:04:08 +00:00
|
|
|
version = "2.12.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-09-06 13:04:08 +00:00
|
|
|
checksum = "6e9b187a72d63adbfba487f48095306ac823049cb504ee195541e91c7775f5ad"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"anyhow",
|
2024-01-06 11:27:57 +00:00
|
|
|
"async-channel 1.9.0",
|
2022-12-28 16:21:52 +00:00
|
|
|
"base64 0.13.1",
|
2024-01-06 11:27:57 +00:00
|
|
|
"futures-lite 1.13.0",
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2020-08-21 22:36:03 +00:00
|
|
|
"infer",
|
2021-02-12 21:34:41 +00:00
|
|
|
"pin-project-lite",
|
2021-01-12 07:05:18 +00:00
|
|
|
"rand 0.7.3",
|
2020-08-21 22:36:03 +00:00
|
|
|
"serde",
|
|
|
|
|
"serde_json",
|
2020-10-16 13:29:13 +00:00
|
|
|
"serde_qs",
|
2020-11-30 14:44:31 +00:00
|
|
|
"serde_urlencoded",
|
2020-08-21 22:36:03 +00:00
|
|
|
"url",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "httparse"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "1.8.0"
|
2021-01-06 23:10:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
2021-01-06 23:10:58 +00:00
|
|
|
|
2021-10-25 23:19:21 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "httpdate"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "1.0.3"
|
2021-10-25 23:19:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
|
2021-10-25 23:19:21 +00:00
|
|
|
|
2022-01-14 14:25:51 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "humantime"
|
|
|
|
|
version = "2.1.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
|
|
|
|
|
2022-05-31 17:43:46 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "humantime-serde"
|
|
|
|
|
version = "1.1.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "57a3db5ea5923d99402c94e9feb261dc5ee9b4efa158b0315f788cf549cc200c"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"humantime",
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
2021-01-06 23:10:58 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "hyper"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.14.28"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "bf96e135eb83a2a8ddf766e426a841d8ddd7449d5f00d34ea02b41d2f19eef80"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2021-02-12 21:34:41 +00:00
|
|
|
"bytes",
|
2020-08-04 22:32:37 +00:00
|
|
|
"futures-channel",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-util",
|
2021-02-12 21:34:41 +00:00
|
|
|
"h2",
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2024-01-06 11:27:57 +00:00
|
|
|
"http-body 0.4.6",
|
2020-08-04 22:32:37 +00:00
|
|
|
"httparse",
|
2021-11-03 22:45:42 +00:00
|
|
|
"httpdate",
|
2023-02-14 14:08:48 +00:00
|
|
|
"itoa",
|
2021-11-03 22:45:42 +00:00
|
|
|
"pin-project-lite",
|
2024-01-06 11:27:57 +00:00
|
|
|
"socket2 0.5.5",
|
2021-02-12 21:34:41 +00:00
|
|
|
"tokio",
|
2020-08-04 22:32:37 +00:00
|
|
|
"tower-service",
|
2020-08-18 22:10:59 +00:00
|
|
|
"tracing",
|
2020-08-17 23:17:26 +00:00
|
|
|
"want",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "hyper"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "1.1.0"
|
2023-12-02 12:15:40 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "fb5aa53871fc917b1a9ed87b683a5d86db645e23acb32c2e0785a353e522fb75"
|
2023-12-02 12:15:40 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"bytes",
|
|
|
|
|
"http 1.0.0",
|
|
|
|
|
"http-body 1.0.0",
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
"tokio",
|
|
|
|
|
]
|
|
|
|
|
|
2023-05-01 13:16:04 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "hyper-rustls"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.24.2"
|
2023-05-01 13:16:04 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
|
2023-05-01 13:16:04 +00:00
|
|
|
dependencies = [
|
2023-08-15 14:41:58 +00:00
|
|
|
"futures-util",
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2024-01-06 11:27:57 +00:00
|
|
|
"hyper 0.14.28",
|
2023-05-01 13:16:04 +00:00
|
|
|
"log",
|
|
|
|
|
"rustls",
|
|
|
|
|
"rustls-native-certs",
|
|
|
|
|
"tokio",
|
|
|
|
|
"tokio-rustls",
|
|
|
|
|
]
|
|
|
|
|
|
2023-04-17 21:14:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "hyper-timeout"
|
|
|
|
|
version = "0.4.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "bbb958482e8c7be4bc3cf272a766a2b0bf1a6755e7a6ae777f017a31d11b13b1"
|
|
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"hyper 0.14.28",
|
2023-04-17 21:14:24 +00:00
|
|
|
"pin-project-lite",
|
|
|
|
|
"tokio",
|
|
|
|
|
"tokio-io-timeout",
|
|
|
|
|
]
|
|
|
|
|
|
2021-01-06 23:10:58 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "hyper-tls"
|
|
|
|
|
version = "0.5.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
|
|
|
|
|
dependencies = [
|
2021-02-12 21:34:41 +00:00
|
|
|
"bytes",
|
2024-01-06 11:27:57 +00:00
|
|
|
"hyper 0.14.28",
|
2021-01-06 23:10:58 +00:00
|
|
|
"native-tls",
|
2021-02-12 21:34:41 +00:00
|
|
|
"tokio",
|
2021-01-06 23:10:58 +00:00
|
|
|
"tokio-native-tls",
|
|
|
|
|
]
|
|
|
|
|
|
2022-11-05 23:21:00 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "iana-time-zone"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.1.59"
|
2022-11-05 23:21:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "b6a67363e2aa4443928ce15e57ebae94fd8949958fd1223c4cfc0cd473ad7539"
|
2022-11-05 23:21:00 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"android_system_properties",
|
|
|
|
|
"core-foundation-sys",
|
|
|
|
|
"iana-time-zone-haiku",
|
|
|
|
|
"js-sys",
|
|
|
|
|
"wasm-bindgen",
|
2024-01-06 11:27:57 +00:00
|
|
|
"windows-core",
|
2022-11-05 23:21:00 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "iana-time-zone-haiku"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.1.2"
|
2022-11-05 23:21:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
|
2022-11-05 23:21:00 +00:00
|
|
|
dependencies = [
|
2023-06-26 10:06:24 +00:00
|
|
|
"cc",
|
2022-11-05 23:21:00 +00:00
|
|
|
]
|
|
|
|
|
|
2021-10-04 23:37:43 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "ident_case"
|
|
|
|
|
version = "1.0.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "idna"
|
2021-11-03 22:45:42 +00:00
|
|
|
version = "0.2.3"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-03 22:45:42 +00:00
|
|
|
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"matches",
|
|
|
|
|
"unicode-bidi",
|
|
|
|
|
"unicode-normalization",
|
|
|
|
|
]
|
|
|
|
|
|
2023-07-13 15:32:41 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "idna"
|
|
|
|
|
version = "0.3.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"unicode-bidi",
|
|
|
|
|
"unicode-normalization",
|
|
|
|
|
]
|
|
|
|
|
|
2023-03-24 12:59:36 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "idna"
|
2023-06-15 13:25:11 +00:00
|
|
|
version = "0.4.0"
|
2023-03-24 12:59:36 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-15 13:25:11 +00:00
|
|
|
checksum = "7d20d6b07bfbc108882d88ed8e37d39636dcc260e15e30c45e6ba089610b917c"
|
2023-03-24 12:59:36 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"unicode-bidi",
|
|
|
|
|
"unicode-normalization",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-05 14:46:43 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "idna"
|
|
|
|
|
version = "0.5.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"unicode-bidi",
|
|
|
|
|
"unicode-normalization",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "indexmap"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "1.9.3"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"autocfg",
|
2023-01-04 14:42:53 +00:00
|
|
|
"hashbrown 0.12.3",
|
2023-06-26 10:06:24 +00:00
|
|
|
"serde",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2023-06-26 10:59:09 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "indexmap"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "2.1.0"
|
2023-06-26 10:59:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f"
|
2023-06-26 10:59:09 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"equivalent",
|
2024-01-06 11:27:57 +00:00
|
|
|
"hashbrown 0.14.3",
|
2023-08-12 19:53:11 +00:00
|
|
|
"serde",
|
2023-06-26 10:59:09 +00:00
|
|
|
]
|
|
|
|
|
|
2020-10-10 04:31:28 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "indicatif"
|
2023-10-02 14:13:07 +00:00
|
|
|
version = "0.17.7"
|
2020-10-10 04:31:28 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-10-02 14:13:07 +00:00
|
|
|
checksum = "fb28741c9db9a713d93deb3bb9515c20788cef5815265bee4980e87bde7e0f25"
|
2020-10-10 04:31:28 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"console",
|
2023-05-30 13:07:30 +00:00
|
|
|
"instant",
|
2020-10-10 04:31:28 +00:00
|
|
|
"number_prefix",
|
2022-11-09 12:02:24 +00:00
|
|
|
"portable-atomic",
|
2022-08-03 12:20:25 +00:00
|
|
|
"unicode-width",
|
2020-10-10 04:31:28 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "infer"
|
2020-10-16 13:29:13 +00:00
|
|
|
version = "0.2.3"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-10-16 13:29:13 +00:00
|
|
|
checksum = "64e9829a50b42bb782c1df523f78d332fe371b10c661e78b7a3c34b0198e9fac"
|
2020-08-21 22:36:03 +00:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "instant"
|
2021-11-03 22:45:42 +00:00
|
|
|
version = "0.1.12"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-03 22:45:42 +00:00
|
|
|
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
2020-12-04 09:44:31 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2020-12-04 09:44:31 +00:00
|
|
|
]
|
2020-08-21 22:36:03 +00:00
|
|
|
|
2022-11-25 12:02:41 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "io-lifetimes"
|
2023-06-13 16:25:32 +00:00
|
|
|
version = "1.0.11"
|
2022-11-25 12:02:41 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-13 16:25:32 +00:00
|
|
|
checksum = "eae7b9aee968036d54dce06cebaefd919e4472e753296daccd6d344e3e2df0c2"
|
2022-11-25 12:02:41 +00:00
|
|
|
dependencies = [
|
2023-08-15 14:41:58 +00:00
|
|
|
"hermit-abi",
|
2022-11-25 12:02:41 +00:00
|
|
|
"libc",
|
2023-06-13 16:25:32 +00:00
|
|
|
"windows-sys 0.48.0",
|
2022-11-25 12:02:41 +00:00
|
|
|
]
|
|
|
|
|
|
2022-02-22 09:39:44 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "ip_network"
|
|
|
|
|
version = "0.4.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "aa2f047c0a98b2f299aa5d6d7088443570faae494e9ae1305e48be000c9e0eb1"
|
|
|
|
|
|
2022-06-15 21:52:30 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "ipconfig"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.3.2"
|
2022-06-15 21:52:30 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "b58db92f96b720de98181bbbe63c831e87005ab460c1bf306eb2622b4707997f"
|
2022-06-15 21:52:30 +00:00
|
|
|
dependencies = [
|
2023-12-02 12:15:40 +00:00
|
|
|
"socket2 0.5.5",
|
2022-08-11 12:13:37 +00:00
|
|
|
"widestring",
|
2023-06-26 10:06:24 +00:00
|
|
|
"windows-sys 0.48.0",
|
2023-08-22 14:51:58 +00:00
|
|
|
"winreg",
|
2022-06-15 21:52:30 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-07 17:00:21 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "ipnet"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "2.9.0"
|
2020-08-07 17:00:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
|
2020-08-07 17:00:21 +00:00
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "iri-string"
|
|
|
|
|
version = "0.7.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "21859b667d66a4c1dacd9df0863b3efb65785474255face87f5bca39dd8407c0"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"memchr",
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
2022-11-25 12:02:41 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "is-terminal"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.4.10"
|
2022-11-25 12:02:41 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "0bad00257d07be169d870ab665980b06cdb366d792ad690bf2e76876dc503455"
|
2022-11-25 12:02:41 +00:00
|
|
|
dependencies = [
|
2023-08-15 14:41:58 +00:00
|
|
|
"hermit-abi",
|
2024-01-06 11:27:57 +00:00
|
|
|
"rustix 0.38.28",
|
|
|
|
|
"windows-sys 0.52.0",
|
2022-11-25 12:02:41 +00:00
|
|
|
]
|
|
|
|
|
|
2022-04-25 17:19:36 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "is_ci"
|
|
|
|
|
version = "1.1.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "616cde7c720bb2bb5824a224687d8f77bfd38922027f01d825cd7453be5099fb"
|
|
|
|
|
|
2021-09-08 23:49:25 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "itertools"
|
2023-10-02 14:13:07 +00:00
|
|
|
version = "0.11.0"
|
2021-09-08 23:49:25 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-10-02 14:13:07 +00:00
|
|
|
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
|
2021-09-08 23:49:25 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"either",
|
|
|
|
|
]
|
|
|
|
|
|
2024-01-06 11:27:57 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "itertools"
|
|
|
|
|
version = "0.12.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"either",
|
|
|
|
|
]
|
|
|
|
|
|
2021-12-14 13:00:58 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "itoa"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.10"
|
2021-12-14 13:00:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "b1a46d1a171d865aa5f83f92695765caa047a9b4cbae2cbf37dbd613a793fd4c"
|
2021-12-14 13:00:58 +00:00
|
|
|
|
2022-02-07 21:54:47 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "jetscii"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.5.3"
|
2022-02-07 21:54:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "47f142fe24a9c9944451e8349de0a56af5f3e7226dc46f3ed4d4ecc0b85af75e"
|
2022-02-07 21:54:47 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "js-sys"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.3.66"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"wasm-bindgen",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-17 23:17:26 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "jsonwebtoken"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "9.2.0"
|
2020-08-17 23:17:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "5c7ea04a7c5c055c175f189b6dc6ba036fd62306b58c66c9f6389036c503a3f4"
|
2020-08-17 23:17:26 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"base64 0.21.5",
|
2024-01-05 14:46:43 +00:00
|
|
|
"js-sys",
|
2020-08-17 23:17:26 +00:00
|
|
|
"pem",
|
2024-01-06 11:27:57 +00:00
|
|
|
"ring",
|
2020-08-17 23:17:26 +00:00
|
|
|
"serde",
|
|
|
|
|
"serde_json",
|
|
|
|
|
"simple_asn1",
|
|
|
|
|
]
|
|
|
|
|
|
2021-12-01 17:25:11 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "jwalk"
|
2022-12-19 14:05:53 +00:00
|
|
|
version = "0.8.1"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-19 14:05:53 +00:00
|
|
|
checksum = "2735847566356cd2179a2a38264839308f7079fa96e6bd5a42d740460e003c56"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"crossbeam",
|
|
|
|
|
"rayon",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "kv-log-macro"
|
|
|
|
|
version = "1.0.7"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "0de8b303297635ad57c9f5059fd9cee7a47f8e8daa09df0fcd07dd39fb22977f"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"log",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "lazy_static"
|
|
|
|
|
version = "1.4.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "levenshtein"
|
|
|
|
|
version = "1.0.5"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "db13adb97ab515a3691f56e4dbab09283d0b86cb45abd991d8634a9d6f501760"
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "libc"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.151"
|
2022-11-05 23:21:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "302d7ab3130588088d277783b1e2d2e10c9e9e4a16dd9050e6ec93fb3e7048f4"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "libredox"
|
|
|
|
|
version = "0.0.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "85c833ca1e66078851dba29046874e38f08b2c883700aa29a03ddd3b23814ee8"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bitflags 2.4.1",
|
|
|
|
|
"libc",
|
|
|
|
|
"redox_syscall",
|
|
|
|
|
]
|
2022-11-05 23:21:00 +00:00
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "linked-hash-map"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.5.6"
|
2020-08-23 21:22:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
2020-08-23 21:22:48 +00:00
|
|
|
|
2020-08-09 21:12:25 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "linkify"
|
2023-06-26 13:40:32 +00:00
|
|
|
version = "0.10.0"
|
2020-08-09 21:12:25 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 13:40:32 +00:00
|
|
|
checksum = "f1dfa36d52c581e9ec783a7ce2a5e0143da6237be5811a0b3153fedfdbe9f780"
|
2020-08-09 21:12:25 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"memchr",
|
|
|
|
|
]
|
|
|
|
|
|
2023-03-29 23:22:25 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "linux-raw-sys"
|
2023-06-13 16:25:32 +00:00
|
|
|
version = "0.3.8"
|
2023-03-29 23:22:25 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-13 16:25:32 +00:00
|
|
|
checksum = "ef53942eb7bf7ff43a617b3e2c1c4a5ecf5944a7c1bc12d7ee39bbb15e5c1519"
|
2023-03-29 23:22:25 +00:00
|
|
|
|
2023-08-15 14:41:58 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "linux-raw-sys"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.4.12"
|
2023-08-15 14:41:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "c4cd1a83af159aa67994778be9070f0ae1bd732942279cabb14f86f986a21456"
|
2023-08-15 14:41:58 +00:00
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "lock_api"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.4.11"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
2022-05-30 21:02:18 +00:00
|
|
|
"autocfg",
|
2020-08-21 22:36:03 +00:00
|
|
|
"scopeguard",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "log"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "0.4.20"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2021-02-10 10:58:04 +00:00
|
|
|
"value-bag",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "lru-cache"
|
|
|
|
|
version = "0.1.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "31e24f1ad8321ca0e8a1e0ac13f23cb668e6f5466c2c57319f6a5cf1cc8e3b1c"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"linked-hash-map",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "lychee"
|
2024-01-05 15:22:24 +00:00
|
|
|
version = "0.14.0"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2020-08-07 22:06:17 +00:00
|
|
|
"anyhow",
|
2023-05-05 22:47:32 +00:00
|
|
|
"assert-json-diff",
|
2020-10-17 08:01:06 +00:00
|
|
|
"assert_cmd",
|
2023-06-26 10:06:24 +00:00
|
|
|
"clap",
|
2021-02-18 23:41:49 +00:00
|
|
|
"console",
|
2022-02-07 21:45:17 +00:00
|
|
|
"const_format",
|
2022-01-14 14:25:51 +00:00
|
|
|
"csv",
|
|
|
|
|
"dashmap",
|
2022-11-28 22:25:33 +00:00
|
|
|
"env_logger",
|
2021-12-01 17:25:11 +00:00
|
|
|
"futures",
|
Major refactor of codebase (#208)
- The binary component and library component are separated as two
packages in the same workspace.
- `lychee` is the binary component, in `lychee-bin/*`.
- `lychee-lib` is the library component, in `lychee-lib/*`.
- Users can now install only the `lychee-lib`, instead of both
components, that would require fewer dependencies and faster
compilation.
- Dependencies for each component are adjusted and updated. E.g.,
no CLI dependencies for `lychee-lib`.
- CLI tests are only moved to `lychee`, as it has nothing to do
with the library component.
- `Status::Error` is refactored to contain dedicated error enum,
`ErrorKind`.
- The motivation is to delay the formatting of errors to strings.
Note that `e.to_string()` is not necessarily cheap (though
trivial in many cases). The formatting is no delayed until the
error is needed to be displayed to users. So in some cases, if
the error is never used, it means that it won't be formatted at
all.
- Replaced `regex` based matching with one of the following:
- Simple string equality test in the case of 'false positivie'.
- URL parsing based test, in the case of extracting repository and
user name for GitHub links.
- Either cases would be much more efficient than `regex` based
matching. First, there's no need to construct a state machine for
regex. Second, URL is already verified and parsed on its creation,
and extracting its components is fairly cheap. Also, this removes
the dependency on `lazy-static` in `lychee-lib`.
- `types` module now has a sub-directory, and its components are now
separated into their own modules (in that sub-directory).
- `lychee-lib::test_utils` module is only compiled for tests.
- `wiremock` is moved to `dev-dependency` as it's only needed for
`test` modules.
- Dependencies are listed in alphabetical order.
- Imports are organized in the following fashion:
- Imports from `std`
- Imports from 3rd-party crates, and `lychee-lib`.
- Imports from `crate::*` or `super::*`.
- No glob import.
- I followed suggestion from `cargo clippy`, with `clippy::all` and
`clippy:pedantic`.
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
|
|
|
"headers",
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2022-01-14 14:25:51 +00:00
|
|
|
"humantime",
|
2022-05-31 17:43:46 +00:00
|
|
|
"humantime-serde",
|
Major refactor of codebase (#208)
- The binary component and library component are separated as two
packages in the same workspace.
- `lychee` is the binary component, in `lychee-bin/*`.
- `lychee-lib` is the library component, in `lychee-lib/*`.
- Users can now install only the `lychee-lib`, instead of both
components, that would require fewer dependencies and faster
compilation.
- Dependencies for each component are adjusted and updated. E.g.,
no CLI dependencies for `lychee-lib`.
- CLI tests are only moved to `lychee`, as it has nothing to do
with the library component.
- `Status::Error` is refactored to contain dedicated error enum,
`ErrorKind`.
- The motivation is to delay the formatting of errors to strings.
Note that `e.to_string()` is not necessarily cheap (though
trivial in many cases). The formatting is no delayed until the
error is needed to be displayed to users. So in some cases, if
the error is never used, it means that it won't be formatted at
all.
- Replaced `regex` based matching with one of the following:
- Simple string equality test in the case of 'false positivie'.
- URL parsing based test, in the case of extracting repository and
user name for GitHub links.
- Either cases would be much more efficient than `regex` based
matching. First, there's no need to construct a state machine for
regex. Second, URL is already verified and parsed on its creation,
and extracting its components is fairly cheap. Also, this removes
the dependency on `lazy-static` in `lychee-lib`.
- `types` module now has a sub-directory, and its components are now
separated into their own modules (in that sub-directory).
- `lychee-lib::test_utils` module is only compiled for tests.
- `wiremock` is moved to `dev-dependency` as it's only needed for
`test` modules.
- Dependencies are listed in alphabetical order.
- Imports are organized in the following fashion:
- Imports from `std`
- Imports from 3rd-party crates, and `lychee-lib`.
- Imports from `crate::*` or `super::*`.
- No glob import.
- I followed suggestion from `cargo clippy`, with `clippy::all` and
`clippy:pedantic`.
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
|
|
|
"indicatif",
|
2022-05-29 15:27:09 +00:00
|
|
|
"log",
|
Major refactor of codebase (#208)
- The binary component and library component are separated as two
packages in the same workspace.
- `lychee` is the binary component, in `lychee-bin/*`.
- `lychee-lib` is the library component, in `lychee-lib/*`.
- Users can now install only the `lychee-lib`, instead of both
components, that would require fewer dependencies and faster
compilation.
- Dependencies for each component are adjusted and updated. E.g.,
no CLI dependencies for `lychee-lib`.
- CLI tests are only moved to `lychee`, as it has nothing to do
with the library component.
- `Status::Error` is refactored to contain dedicated error enum,
`ErrorKind`.
- The motivation is to delay the formatting of errors to strings.
Note that `e.to_string()` is not necessarily cheap (though
trivial in many cases). The formatting is no delayed until the
error is needed to be displayed to users. So in some cases, if
the error is never used, it means that it won't be formatted at
all.
- Replaced `regex` based matching with one of the following:
- Simple string equality test in the case of 'false positivie'.
- URL parsing based test, in the case of extracting repository and
user name for GitHub links.
- Either cases would be much more efficient than `regex` based
matching. First, there's no need to construct a state machine for
regex. Second, URL is already verified and parsed on its creation,
and extracting its components is fairly cheap. Also, this removes
the dependency on `lazy-static` in `lychee-lib`.
- `types` module now has a sub-directory, and its components are now
separated into their own modules (in that sub-directory).
- `lychee-lib::test_utils` module is only compiled for tests.
- `wiremock` is moved to `dev-dependency` as it's only needed for
`test` modules.
- Dependencies are listed in alphabetical order.
- Imports are organized in the following fashion:
- Imports from `std`
- Imports from 3rd-party crates, and `lychee-lib`.
- Imports from `crate::*` or `super::*`.
- No glob import.
- I followed suggestion from `cargo clippy`, with `clippy::all` and
`clippy:pedantic`.
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
|
|
|
"lychee-lib",
|
2021-10-04 23:37:43 +00:00
|
|
|
"once_cell",
|
Major refactor of codebase (#208)
- The binary component and library component are separated as two
packages in the same workspace.
- `lychee` is the binary component, in `lychee-bin/*`.
- `lychee-lib` is the library component, in `lychee-lib/*`.
- Users can now install only the `lychee-lib`, instead of both
components, that would require fewer dependencies and faster
compilation.
- Dependencies for each component are adjusted and updated. E.g.,
no CLI dependencies for `lychee-lib`.
- CLI tests are only moved to `lychee`, as it has nothing to do
with the library component.
- `Status::Error` is refactored to contain dedicated error enum,
`ErrorKind`.
- The motivation is to delay the formatting of errors to strings.
Note that `e.to_string()` is not necessarily cheap (though
trivial in many cases). The formatting is no delayed until the
error is needed to be displayed to users. So in some cases, if
the error is never used, it means that it won't be formatted at
all.
- Replaced `regex` based matching with one of the following:
- Simple string equality test in the case of 'false positivie'.
- URL parsing based test, in the case of extracting repository and
user name for GitHub links.
- Either cases would be much more efficient than `regex` based
matching. First, there's no need to construct a state machine for
regex. Second, URL is already verified and parsed on its creation,
and extracting its components is fairly cheap. Also, this removes
the dependency on `lazy-static` in `lychee-lib`.
- `types` module now has a sub-directory, and its components are now
separated into their own modules (in that sub-directory).
- `lychee-lib::test_utils` module is only compiled for tests.
- `wiremock` is moved to `dev-dependency` as it's only needed for
`test` modules.
- Dependencies are listed in alphabetical order.
- Imports are organized in the following fashion:
- Imports from `std`
- Imports from 3rd-party crates, and `lychee-lib`.
- Imports from `crate::*` or `super::*`.
- No glob import.
- I followed suggestion from `cargo clippy`, with `clippy::all` and
`clippy:pedantic`.
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
|
|
|
"openssl-sys",
|
|
|
|
|
"pad",
|
2023-03-16 14:47:01 +00:00
|
|
|
"predicates",
|
2022-11-13 20:10:32 +00:00
|
|
|
"pretty_assertions",
|
Major refactor of codebase (#208)
- The binary component and library component are separated as two
packages in the same workspace.
- `lychee` is the binary component, in `lychee-bin/*`.
- `lychee-lib` is the library component, in `lychee-lib/*`.
- Users can now install only the `lychee-lib`, instead of both
components, that would require fewer dependencies and faster
compilation.
- Dependencies for each component are adjusted and updated. E.g.,
no CLI dependencies for `lychee-lib`.
- CLI tests are only moved to `lychee`, as it has nothing to do
with the library component.
- `Status::Error` is refactored to contain dedicated error enum,
`ErrorKind`.
- The motivation is to delay the formatting of errors to strings.
Note that `e.to_string()` is not necessarily cheap (though
trivial in many cases). The formatting is no delayed until the
error is needed to be displayed to users. So in some cases, if
the error is never used, it means that it won't be formatted at
all.
- Replaced `regex` based matching with one of the following:
- Simple string equality test in the case of 'false positivie'.
- URL parsing based test, in the case of extracting repository and
user name for GitHub links.
- Either cases would be much more efficient than `regex` based
matching. First, there's no need to construct a state machine for
regex. Second, URL is already verified and parsed on its creation,
and extracting its components is fairly cheap. Also, this removes
the dependency on `lazy-static` in `lychee-lib`.
- `types` module now has a sub-directory, and its components are now
separated into their own modules (in that sub-directory).
- `lychee-lib::test_utils` module is only compiled for tests.
- `wiremock` is moved to `dev-dependency` as it's only needed for
`test` modules.
- Dependencies are listed in alphabetical order.
- Imports are organized in the following fashion:
- Imports from `std`
- Imports from 3rd-party crates, and `lychee-lib`.
- Imports from `crate::*` or `super::*`.
- No glob import.
- I followed suggestion from `cargo clippy`, with `clippy::all` and
`clippy:pedantic`.
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
|
|
|
"regex",
|
|
|
|
|
"reqwest",
|
2023-07-13 15:32:41 +00:00
|
|
|
"reqwest_cookie_store",
|
2024-01-06 11:27:57 +00:00
|
|
|
"ring",
|
2022-02-13 12:53:46 +00:00
|
|
|
"secrecy",
|
Major refactor of codebase (#208)
- The binary component and library component are separated as two
packages in the same workspace.
- `lychee` is the binary component, in `lychee-bin/*`.
- `lychee-lib` is the library component, in `lychee-lib/*`.
- Users can now install only the `lychee-lib`, instead of both
components, that would require fewer dependencies and faster
compilation.
- Dependencies for each component are adjusted and updated. E.g.,
no CLI dependencies for `lychee-lib`.
- CLI tests are only moved to `lychee`, as it has nothing to do
with the library component.
- `Status::Error` is refactored to contain dedicated error enum,
`ErrorKind`.
- The motivation is to delay the formatting of errors to strings.
Note that `e.to_string()` is not necessarily cheap (though
trivial in many cases). The formatting is no delayed until the
error is needed to be displayed to users. So in some cases, if
the error is never used, it means that it won't be formatted at
all.
- Replaced `regex` based matching with one of the following:
- Simple string equality test in the case of 'false positivie'.
- URL parsing based test, in the case of extracting repository and
user name for GitHub links.
- Either cases would be much more efficient than `regex` based
matching. First, there's no need to construct a state machine for
regex. Second, URL is already verified and parsed on its creation,
and extracting its components is fairly cheap. Also, this removes
the dependency on `lazy-static` in `lychee-lib`.
- `types` module now has a sub-directory, and its components are now
separated into their own modules (in that sub-directory).
- `lychee-lib::test_utils` module is only compiled for tests.
- `wiremock` is moved to `dev-dependency` as it's only needed for
`test` modules.
- Dependencies are listed in alphabetical order.
- Imports are organized in the following fashion:
- Imports from `std`
- Imports from 3rd-party crates, and `lychee-lib`.
- Imports from `crate::*` or `super::*`.
- No glob import.
- I followed suggestion from `cargo clippy`, with `clippy::all` and
`clippy:pedantic`.
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
|
|
|
"serde",
|
|
|
|
|
"serde_json",
|
2023-03-27 22:45:06 +00:00
|
|
|
"strum",
|
2022-04-25 17:19:36 +00:00
|
|
|
"supports-color",
|
2021-11-17 23:44:48 +00:00
|
|
|
"tabled",
|
Major refactor of codebase (#208)
- The binary component and library component are separated as two
packages in the same workspace.
- `lychee` is the binary component, in `lychee-bin/*`.
- `lychee-lib` is the library component, in `lychee-lib/*`.
- Users can now install only the `lychee-lib`, instead of both
components, that would require fewer dependencies and faster
compilation.
- Dependencies for each component are adjusted and updated. E.g.,
no CLI dependencies for `lychee-lib`.
- CLI tests are only moved to `lychee`, as it has nothing to do
with the library component.
- `Status::Error` is refactored to contain dedicated error enum,
`ErrorKind`.
- The motivation is to delay the formatting of errors to strings.
Note that `e.to_string()` is not necessarily cheap (though
trivial in many cases). The formatting is no delayed until the
error is needed to be displayed to users. So in some cases, if
the error is never used, it means that it won't be formatted at
all.
- Replaced `regex` based matching with one of the following:
- Simple string equality test in the case of 'false positivie'.
- URL parsing based test, in the case of extracting repository and
user name for GitHub links.
- Either cases would be much more efficient than `regex` based
matching. First, there's no need to construct a state machine for
regex. Second, URL is already verified and parsed on its creation,
and extracting its components is fairly cheap. Also, this removes
the dependency on `lazy-static` in `lychee-lib`.
- `types` module now has a sub-directory, and its components are now
separated into their own modules (in that sub-directory).
- `lychee-lib::test_utils` module is only compiled for tests.
- `wiremock` is moved to `dev-dependency` as it's only needed for
`test` modules.
- Dependencies are listed in alphabetical order.
- Imports are organized in the following fashion:
- Imports from `std`
- Imports from 3rd-party crates, and `lychee-lib`.
- Imports from `crate::*` or `super::*`.
- No glob import.
- I followed suggestion from `cargo clippy`, with `clippy::all` and
`clippy:pedantic`.
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
|
|
|
"tempfile",
|
|
|
|
|
"tokio",
|
2021-12-01 17:25:11 +00:00
|
|
|
"tokio-stream",
|
Major refactor of codebase (#208)
- The binary component and library component are separated as two
packages in the same workspace.
- `lychee` is the binary component, in `lychee-bin/*`.
- `lychee-lib` is the library component, in `lychee-lib/*`.
- Users can now install only the `lychee-lib`, instead of both
components, that would require fewer dependencies and faster
compilation.
- Dependencies for each component are adjusted and updated. E.g.,
no CLI dependencies for `lychee-lib`.
- CLI tests are only moved to `lychee`, as it has nothing to do
with the library component.
- `Status::Error` is refactored to contain dedicated error enum,
`ErrorKind`.
- The motivation is to delay the formatting of errors to strings.
Note that `e.to_string()` is not necessarily cheap (though
trivial in many cases). The formatting is no delayed until the
error is needed to be displayed to users. So in some cases, if
the error is never used, it means that it won't be formatted at
all.
- Replaced `regex` based matching with one of the following:
- Simple string equality test in the case of 'false positivie'.
- URL parsing based test, in the case of extracting repository and
user name for GitHub links.
- Either cases would be much more efficient than `regex` based
matching. First, there's no need to construct a state machine for
regex. Second, URL is already verified and parsed on its creation,
and extracting its components is fairly cheap. Also, this removes
the dependency on `lazy-static` in `lychee-lib`.
- `types` module now has a sub-directory, and its components are now
separated into their own modules (in that sub-directory).
- `lychee-lib::test_utils` module is only compiled for tests.
- `wiremock` is moved to `dev-dependency` as it's only needed for
`test` modules.
- Dependencies are listed in alphabetical order.
- Imports are organized in the following fashion:
- Imports from `std`
- Imports from 3rd-party crates, and `lychee-lib`.
- Imports from `crate::*` or `super::*`.
- No glob import.
- I followed suggestion from `cargo clippy`, with `clippy::all` and
`clippy:pedantic`.
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
|
|
|
"toml",
|
2021-10-28 01:15:44 +00:00
|
|
|
"tracing-subscriber",
|
Major refactor of codebase (#208)
- The binary component and library component are separated as two
packages in the same workspace.
- `lychee` is the binary component, in `lychee-bin/*`.
- `lychee-lib` is the library component, in `lychee-lib/*`.
- Users can now install only the `lychee-lib`, instead of both
components, that would require fewer dependencies and faster
compilation.
- Dependencies for each component are adjusted and updated. E.g.,
no CLI dependencies for `lychee-lib`.
- CLI tests are only moved to `lychee`, as it has nothing to do
with the library component.
- `Status::Error` is refactored to contain dedicated error enum,
`ErrorKind`.
- The motivation is to delay the formatting of errors to strings.
Note that `e.to_string()` is not necessarily cheap (though
trivial in many cases). The formatting is no delayed until the
error is needed to be displayed to users. So in some cases, if
the error is never used, it means that it won't be formatted at
all.
- Replaced `regex` based matching with one of the following:
- Simple string equality test in the case of 'false positivie'.
- URL parsing based test, in the case of extracting repository and
user name for GitHub links.
- Either cases would be much more efficient than `regex` based
matching. First, there's no need to construct a state machine for
regex. Second, URL is already verified and parsed on its creation,
and extracting its components is fairly cheap. Also, this removes
the dependency on `lazy-static` in `lychee-lib`.
- `types` module now has a sub-directory, and its components are now
separated into their own modules (in that sub-directory).
- `lychee-lib::test_utils` module is only compiled for tests.
- `wiremock` is moved to `dev-dependency` as it's only needed for
`test` modules.
- Dependencies are listed in alphabetical order.
- Imports are organized in the following fashion:
- Imports from `std`
- Imports from 3rd-party crates, and `lychee-lib`.
- Imports from `crate::*` or `super::*`.
- No glob import.
- I followed suggestion from `cargo clippy`, with `clippy::all` and
`clippy:pedantic`.
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
|
|
|
"uuid",
|
|
|
|
|
"wiremock",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "lychee-lib"
|
2024-01-05 15:22:24 +00:00
|
|
|
version = "0.14.0"
|
Major refactor of codebase (#208)
- The binary component and library component are separated as two
packages in the same workspace.
- `lychee` is the binary component, in `lychee-bin/*`.
- `lychee-lib` is the library component, in `lychee-lib/*`.
- Users can now install only the `lychee-lib`, instead of both
components, that would require fewer dependencies and faster
compilation.
- Dependencies for each component are adjusted and updated. E.g.,
no CLI dependencies for `lychee-lib`.
- CLI tests are only moved to `lychee`, as it has nothing to do
with the library component.
- `Status::Error` is refactored to contain dedicated error enum,
`ErrorKind`.
- The motivation is to delay the formatting of errors to strings.
Note that `e.to_string()` is not necessarily cheap (though
trivial in many cases). The formatting is no delayed until the
error is needed to be displayed to users. So in some cases, if
the error is never used, it means that it won't be formatted at
all.
- Replaced `regex` based matching with one of the following:
- Simple string equality test in the case of 'false positivie'.
- URL parsing based test, in the case of extracting repository and
user name for GitHub links.
- Either cases would be much more efficient than `regex` based
matching. First, there's no need to construct a state machine for
regex. Second, URL is already verified and parsed on its creation,
and extracting its components is fairly cheap. Also, this removes
the dependency on `lazy-static` in `lychee-lib`.
- `types` module now has a sub-directory, and its components are now
separated into their own modules (in that sub-directory).
- `lychee-lib::test_utils` module is only compiled for tests.
- `wiremock` is moved to `dev-dependency` as it's only needed for
`test` modules.
- Dependencies are listed in alphabetical order.
- Imports are organized in the following fashion:
- Imports from `std`
- Imports from 3rd-party crates, and `lychee-lib`.
- Imports from `crate::*` or `super::*`.
- No glob import.
- I followed suggestion from `cargo clippy`, with `clippy::all` and
`clippy:pedantic`.
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
|
|
|
dependencies = [
|
2021-12-01 17:25:11 +00:00
|
|
|
"async-stream",
|
2021-10-04 23:37:43 +00:00
|
|
|
"cached",
|
Major refactor of codebase (#208)
- The binary component and library component are separated as two
packages in the same workspace.
- `lychee` is the binary component, in `lychee-bin/*`.
- `lychee-lib` is the library component, in `lychee-lib/*`.
- Users can now install only the `lychee-lib`, instead of both
components, that would require fewer dependencies and faster
compilation.
- Dependencies for each component are adjusted and updated. E.g.,
no CLI dependencies for `lychee-lib`.
- CLI tests are only moved to `lychee`, as it has nothing to do
with the library component.
- `Status::Error` is refactored to contain dedicated error enum,
`ErrorKind`.
- The motivation is to delay the formatting of errors to strings.
Note that `e.to_string()` is not necessarily cheap (though
trivial in many cases). The formatting is no delayed until the
error is needed to be displayed to users. So in some cases, if
the error is never used, it means that it won't be formatted at
all.
- Replaced `regex` based matching with one of the following:
- Simple string equality test in the case of 'false positivie'.
- URL parsing based test, in the case of extracting repository and
user name for GitHub links.
- Either cases would be much more efficient than `regex` based
matching. First, there's no need to construct a state machine for
regex. Second, URL is already verified and parsed on its creation,
and extracting its components is fairly cheap. Also, this removes
the dependency on `lazy-static` in `lychee-lib`.
- `types` module now has a sub-directory, and its components are now
separated into their own modules (in that sub-directory).
- `lychee-lib::test_utils` module is only compiled for tests.
- `wiremock` is moved to `dev-dependency` as it's only needed for
`test` modules.
- Dependencies are listed in alphabetical order.
- Imports are organized in the following fashion:
- Imports from `std`
- Imports from 3rd-party crates, and `lychee-lib`.
- Imports from `crate::*` or `super::*`.
- No glob import.
- I followed suggestion from `cargo clippy`, with `clippy::all` and
`clippy:pedantic`.
Co-authored-by: Lucius Hu <lebensterben@users.noreply.github.com>
2021-04-14 23:24:11 +00:00
|
|
|
"check-if-email-exists",
|
2021-02-18 10:14:00 +00:00
|
|
|
"doc-comment",
|
2022-11-05 22:40:33 +00:00
|
|
|
"email_address",
|
2021-12-01 17:25:11 +00:00
|
|
|
"futures",
|
2020-08-14 00:33:04 +00:00
|
|
|
"glob",
|
2023-06-26 10:06:24 +00:00
|
|
|
"headers",
|
2021-01-08 15:41:13 +00:00
|
|
|
"html5ever",
|
2022-02-07 21:54:47 +00:00
|
|
|
"html5gum",
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2024-01-05 14:46:43 +00:00
|
|
|
"hyper 1.1.0",
|
2022-02-22 09:39:44 +00:00
|
|
|
"ip_network",
|
2021-12-01 17:25:11 +00:00
|
|
|
"jwalk",
|
2020-08-09 21:12:25 +00:00
|
|
|
"linkify",
|
2021-06-16 11:03:36 +00:00
|
|
|
"log",
|
2022-02-11 22:43:47 +00:00
|
|
|
"octocrab",
|
2021-10-04 23:37:43 +00:00
|
|
|
"once_cell",
|
2020-12-11 21:13:26 +00:00
|
|
|
"openssl-sys",
|
2021-12-01 17:25:11 +00:00
|
|
|
"par-stream",
|
2021-09-02 23:42:57 +00:00
|
|
|
"path-clean",
|
2021-09-08 23:44:10 +00:00
|
|
|
"percent-encoding",
|
2020-10-20 23:31:06 +00:00
|
|
|
"pulldown-cmark",
|
2020-08-04 22:32:37 +00:00
|
|
|
"regex",
|
2021-02-12 21:34:41 +00:00
|
|
|
"reqwest",
|
2023-07-13 15:32:41 +00:00
|
|
|
"reqwest_cookie_store",
|
2024-01-06 11:27:57 +00:00
|
|
|
"ring",
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
"rstest",
|
2022-02-13 12:53:46 +00:00
|
|
|
"secrecy",
|
2020-10-21 00:10:25 +00:00
|
|
|
"serde",
|
2023-03-27 10:29:12 +00:00
|
|
|
"serde_json",
|
2023-06-26 10:06:24 +00:00
|
|
|
"serde_with",
|
2020-12-02 22:28:37 +00:00
|
|
|
"shellexpand",
|
|
|
|
|
"tempfile",
|
2021-11-20 00:42:50 +00:00
|
|
|
"thiserror",
|
2021-02-12 21:34:41 +00:00
|
|
|
"tokio",
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
"toml",
|
2021-04-16 18:25:22 +00:00
|
|
|
"typed-builder",
|
2020-08-07 17:00:21 +00:00
|
|
|
"url",
|
2020-08-21 22:36:03 +00:00
|
|
|
"wiremock",
|
|
|
|
|
]
|
|
|
|
|
|
2021-01-08 15:41:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "mac"
|
|
|
|
|
version = "0.1.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4"
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "mailchecker"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "5.0.9"
|
2020-08-23 21:22:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "4c64fa7af9860896bdfe496f323ac278f256006fd248dd7730e37c5faa648b05"
|
2020-08-23 21:22:48 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"fast_chemail",
|
2022-01-10 21:35:37 +00:00
|
|
|
"once_cell",
|
2020-08-23 21:22:48 +00:00
|
|
|
]
|
|
|
|
|
|
2021-01-08 15:41:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "markup5ever"
|
2022-03-28 13:50:10 +00:00
|
|
|
version = "0.11.0"
|
2021-01-08 15:41:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-28 13:50:10 +00:00
|
|
|
checksum = "7a2629bb1404f3d34c2e921f21fd34ba00b206124c81f65c50b43b6aaefeb016"
|
2021-01-08 15:41:13 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"log",
|
|
|
|
|
"phf",
|
|
|
|
|
"phf_codegen",
|
|
|
|
|
"string_cache",
|
|
|
|
|
"string_cache_codegen",
|
|
|
|
|
"tendril",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "match_cfg"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
|
|
|
|
|
|
2021-10-25 22:56:39 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "matchers"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
|
|
|
|
|
dependencies = [
|
2023-07-07 01:00:16 +00:00
|
|
|
"regex-automata 0.1.10",
|
2021-10-25 22:56:39 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "matches"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.1.10"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "md5"
|
|
|
|
|
version = "0.7.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "490cc448043f947bae3cbee9c203358d62dbee0db12107a74be5c30ccfd09771"
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "memchr"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "2.7.1"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "523dc4f511e55ab87b694dc30d0f820d60906ef06413f93d4d7a1385599cc149"
|
2021-12-01 17:25:11 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "mime"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.3.17"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2022-08-11 12:13:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "minimal-lexical"
|
|
|
|
|
version = "0.2.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
|
|
|
2023-06-26 10:06:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "miniz_oxide"
|
|
|
|
|
version = "0.7.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"adler",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-11 14:13:10 +00:00
|
|
|
[[package]]
|
2021-01-06 23:10:58 +00:00
|
|
|
name = "mio"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.8.10"
|
2020-08-11 14:13:10 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "8f3d0b296e374a4e6f3c7b0a1f5a51d748a0d34c85e7dc48fc3fa9a87657fe09"
|
2020-08-11 14:13:10 +00:00
|
|
|
dependencies = [
|
2021-01-06 23:10:58 +00:00
|
|
|
"libc",
|
2022-04-25 17:19:36 +00:00
|
|
|
"wasi 0.11.0+wasi-snapshot-preview1",
|
2023-06-26 10:06:24 +00:00
|
|
|
"windows-sys 0.48.0",
|
2020-08-11 14:13:10 +00:00
|
|
|
]
|
|
|
|
|
|
2021-12-01 17:25:11 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "nanorand"
|
2022-05-30 21:02:18 +00:00
|
|
|
version = "0.7.0"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-30 21:02:18 +00:00
|
|
|
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"getrandom 0.2.11",
|
2021-12-01 17:25:11 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "native-tls"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.2.11"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"lazy_static",
|
|
|
|
|
"libc",
|
|
|
|
|
"log",
|
|
|
|
|
"openssl",
|
|
|
|
|
"openssl-probe",
|
|
|
|
|
"openssl-sys",
|
|
|
|
|
"schannel",
|
|
|
|
|
"security-framework",
|
|
|
|
|
"security-framework-sys",
|
|
|
|
|
"tempfile",
|
|
|
|
|
]
|
|
|
|
|
|
2021-01-08 15:41:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "new_debug_unreachable"
|
|
|
|
|
version = "1.0.4"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e4a24736216ec316047a1fc4252e27dabb04218aa4a3f37c6e7ddbf1f9782b54"
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "nom"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "7.1.3"
|
2020-08-23 21:22:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
2020-08-23 21:22:48 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"memchr",
|
2022-08-11 12:13:37 +00:00
|
|
|
"minimal-lexical",
|
2020-08-23 21:22:48 +00:00
|
|
|
]
|
|
|
|
|
|
2020-10-17 08:01:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "normalize-line-endings"
|
|
|
|
|
version = "0.3.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
|
|
|
|
|
2020-08-17 23:17:26 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "num-bigint"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.4.4"
|
2020-08-17 23:17:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0"
|
2020-08-17 23:17:26 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"autocfg",
|
|
|
|
|
"num-integer",
|
|
|
|
|
"num-traits",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "num-integer"
|
2022-05-30 21:02:18 +00:00
|
|
|
version = "0.1.45"
|
2020-08-17 23:17:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-30 21:02:18 +00:00
|
|
|
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
2020-08-17 23:17:26 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"autocfg",
|
|
|
|
|
"num-traits",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "num-traits"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.17"
|
2020-08-17 23:17:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c"
|
2020-08-17 23:17:26 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"autocfg",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "num_cpus"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "1.16.0"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2023-08-15 14:41:58 +00:00
|
|
|
"hermit-abi",
|
2020-08-04 22:32:37 +00:00
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2020-10-10 04:31:28 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "number_prefix"
|
2022-01-10 21:35:37 +00:00
|
|
|
version = "0.4.0"
|
2020-10-10 04:31:28 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-10 21:35:37 +00:00
|
|
|
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
2020-10-10 04:31:28 +00:00
|
|
|
|
2022-02-11 22:43:47 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "object"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.32.2"
|
2022-02-11 22:43:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "a6a622008b6e321afc04970976f62ee297fdbaa6f95318ca343e3eebb9648441"
|
2022-02-11 22:43:47 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"memchr",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "octocrab"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.32.0"
|
2022-02-11 22:43:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "abfeeafb5fa0da7046229ec3c7b3bd2981aae05c549871192c408d59fc0fffd5"
|
2022-02-11 22:43:47 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"arc-swap",
|
|
|
|
|
"async-trait",
|
2024-01-06 11:27:57 +00:00
|
|
|
"base64 0.21.5",
|
2022-02-11 22:43:47 +00:00
|
|
|
"bytes",
|
2022-08-16 10:24:37 +00:00
|
|
|
"cfg-if",
|
2022-02-11 22:43:47 +00:00
|
|
|
"chrono",
|
2022-12-28 16:21:52 +00:00
|
|
|
"either",
|
2023-04-17 21:14:24 +00:00
|
|
|
"futures",
|
|
|
|
|
"futures-util",
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2024-01-06 11:27:57 +00:00
|
|
|
"http-body 0.4.6",
|
|
|
|
|
"hyper 0.14.28",
|
2023-05-01 13:16:04 +00:00
|
|
|
"hyper-rustls",
|
2023-04-17 21:14:24 +00:00
|
|
|
"hyper-timeout",
|
2022-02-11 22:43:47 +00:00
|
|
|
"jsonwebtoken",
|
|
|
|
|
"once_cell",
|
2023-04-17 21:14:24 +00:00
|
|
|
"percent-encoding",
|
|
|
|
|
"pin-project",
|
2022-04-29 12:47:16 +00:00
|
|
|
"secrecy",
|
2022-02-11 22:43:47 +00:00
|
|
|
"serde",
|
|
|
|
|
"serde_json",
|
|
|
|
|
"serde_path_to_error",
|
2023-04-17 21:14:24 +00:00
|
|
|
"serde_urlencoded",
|
2022-02-11 22:43:47 +00:00
|
|
|
"snafu",
|
2023-04-17 21:14:24 +00:00
|
|
|
"tokio",
|
|
|
|
|
"tower",
|
|
|
|
|
"tower-http",
|
2023-03-21 14:23:05 +00:00
|
|
|
"tracing",
|
2022-02-11 22:43:47 +00:00
|
|
|
"url",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "once_cell"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "1.19.0"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2021-12-16 17:45:52 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "oorandom"
|
|
|
|
|
version = "11.1.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "0ab1bc2a289d34bd04a330323ac98a1b4bc82c9d9fcb1e66b63caa84da26b575"
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "openssl"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.10.62"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "8cde4d2d9200ad5909f8dac647e29482e07c3a35de8a13fce7c9c7747ad9f671"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"bitflags 2.4.1",
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2020-08-04 22:32:37 +00:00
|
|
|
"foreign-types",
|
|
|
|
|
"libc",
|
2021-03-28 15:20:03 +00:00
|
|
|
"once_cell",
|
2022-05-30 21:02:18 +00:00
|
|
|
"openssl-macros",
|
2020-08-04 22:32:37 +00:00
|
|
|
"openssl-sys",
|
|
|
|
|
]
|
|
|
|
|
|
2022-05-30 21:02:18 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "openssl-macros"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.1.1"
|
2022-05-30 21:02:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
|
2022-05-30 21:02:18 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2022-05-30 21:02:18 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "openssl-probe"
|
2022-05-30 21:02:18 +00:00
|
|
|
version = "0.1.5"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-30 21:02:18 +00:00
|
|
|
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2020-12-11 21:13:26 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "openssl-src"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "300.2.1+3.2.0"
|
2020-12-11 21:13:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "3fe476c29791a5ca0d1273c697e96085bbabbbea2ef7afd5617e78a4b40332d3"
|
2020-12-11 21:13:26 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"cc",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "openssl-sys"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.9.98"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "c1665caf8ab2dc9aef43d1c0023bd904633a6a05cb30b0ad59bec2ae986e57a7"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"cc",
|
|
|
|
|
"libc",
|
2020-12-11 21:13:26 +00:00
|
|
|
"openssl-src",
|
2020-08-04 22:32:37 +00:00
|
|
|
"pkg-config",
|
|
|
|
|
"vcpkg",
|
|
|
|
|
]
|
|
|
|
|
|
2022-08-12 20:53:13 +00:00
|
|
|
[[package]]
|
2023-06-26 10:06:24 +00:00
|
|
|
name = "option-ext"
|
|
|
|
|
version = "0.2.0"
|
2022-08-12 20:53:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
|
2022-08-12 20:53:13 +00:00
|
|
|
|
2021-02-15 23:15:14 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "pad"
|
|
|
|
|
version = "0.1.6"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "d2ad9b889f1b12e0b9ee24db044b5129150d5eada288edc800f789928dc8c0e3"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"unicode-width",
|
|
|
|
|
]
|
|
|
|
|
|
2021-11-17 23:44:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "papergrid"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.11.0"
|
2021-11-17 23:44:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "9ad43c07024ef767f9160710b3a6773976194758c7919b17e63b863db0bdf7fb"
|
2021-11-17 23:44:48 +00:00
|
|
|
dependencies = [
|
2022-08-03 21:22:08 +00:00
|
|
|
"bytecount",
|
|
|
|
|
"fnv",
|
2021-11-17 23:44:48 +00:00
|
|
|
"unicode-width",
|
|
|
|
|
]
|
|
|
|
|
|
2021-12-01 17:25:11 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "par-stream"
|
2022-02-18 16:09:30 +00:00
|
|
|
version = "0.10.2"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-18 16:09:30 +00:00
|
|
|
checksum = "8ef8c7bc0cbc89c3d02fb0cce36f609e8707150bd38c1cbce79c6b7906f4099a"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"by_address",
|
2022-01-10 21:35:37 +00:00
|
|
|
"crossbeam",
|
|
|
|
|
"dashmap",
|
2021-12-01 17:25:11 +00:00
|
|
|
"derivative",
|
|
|
|
|
"flume",
|
|
|
|
|
"futures",
|
|
|
|
|
"num_cpus",
|
2022-01-10 21:35:37 +00:00
|
|
|
"once_cell",
|
2022-08-11 12:13:37 +00:00
|
|
|
"parking_lot",
|
2021-12-01 17:25:11 +00:00
|
|
|
"pin-project",
|
|
|
|
|
"tokio",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "parking"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "2.2.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
|
2020-08-21 22:36:03 +00:00
|
|
|
|
2022-02-07 22:03:26 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "parking_lot"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.12.1"
|
2022-02-07 22:03:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
2022-02-07 22:03:26 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"lock_api",
|
2022-08-11 12:13:37 +00:00
|
|
|
"parking_lot_core",
|
2020-08-21 22:36:03 +00:00
|
|
|
]
|
|
|
|
|
|
2022-02-07 22:03:26 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "parking_lot_core"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.9.9"
|
2022-02-07 22:03:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e"
|
2022-02-07 22:03:26 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2022-02-07 22:03:26 +00:00
|
|
|
"libc",
|
2024-01-06 11:27:57 +00:00
|
|
|
"redox_syscall",
|
2022-02-07 22:03:26 +00:00
|
|
|
"smallvec",
|
2024-01-06 11:27:57 +00:00
|
|
|
"windows-targets 0.48.5",
|
2022-02-07 22:03:26 +00:00
|
|
|
]
|
|
|
|
|
|
2021-09-02 23:42:57 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "path-clean"
|
2023-02-24 14:54:36 +00:00
|
|
|
version = "1.0.1"
|
2021-09-02 23:42:57 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-24 14:54:36 +00:00
|
|
|
checksum = "17359afc20d7ab31fdb42bb844c8b3bb1dabd7dcf7e68428492da7f16966fcef"
|
2021-09-02 23:42:57 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
2020-08-17 23:17:26 +00:00
|
|
|
name = "pem"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "3.0.3"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "1b8fcc794035347fb64beda2d3b462595dd2753e3f268d89c5aae77e8cf2c310"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"base64 0.21.5",
|
2024-01-05 14:46:43 +00:00
|
|
|
"serde",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "percent-encoding"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "2.3.1"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2021-01-08 15:41:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "phf"
|
2022-03-28 13:50:10 +00:00
|
|
|
version = "0.10.1"
|
2021-01-08 15:41:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-28 13:50:10 +00:00
|
|
|
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
|
2021-01-08 15:41:13 +00:00
|
|
|
dependencies = [
|
2022-05-30 21:02:18 +00:00
|
|
|
"phf_shared",
|
2021-01-08 15:41:13 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "phf_codegen"
|
2022-03-28 13:50:10 +00:00
|
|
|
version = "0.10.0"
|
2021-01-08 15:41:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-28 13:50:10 +00:00
|
|
|
checksum = "4fb1c3a8bc4dd4e5cfce29b44ffc14bedd2ee294559a294e2a4d4c9e9a6a13cd"
|
2021-01-08 15:41:13 +00:00
|
|
|
dependencies = [
|
2022-05-30 21:02:18 +00:00
|
|
|
"phf_generator",
|
|
|
|
|
"phf_shared",
|
2021-01-08 15:41:13 +00:00
|
|
|
]
|
|
|
|
|
|
2022-03-28 13:50:10 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "phf_generator"
|
|
|
|
|
version = "0.10.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
|
|
|
|
|
dependencies = [
|
2022-05-30 21:02:18 +00:00
|
|
|
"phf_shared",
|
2022-03-28 13:50:10 +00:00
|
|
|
"rand 0.8.5",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "phf_shared"
|
|
|
|
|
version = "0.10.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"siphasher",
|
|
|
|
|
]
|
|
|
|
|
|
2020-12-01 10:08:35 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "pin-project"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "1.1.3"
|
2020-12-01 10:08:35 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "fda4ed1c6c173e3fc7a83629421152e01d7b1f9b7f65fb301e490e8cfc656422"
|
2020-12-01 10:08:35 +00:00
|
|
|
dependencies = [
|
2021-04-01 08:43:50 +00:00
|
|
|
"pin-project-internal",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2020-12-01 10:08:35 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "pin-project-internal"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "1.1.3"
|
2020-12-01 10:08:35 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405"
|
2020-12-01 10:08:35 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2020-12-01 10:08:35 +00:00
|
|
|
]
|
|
|
|
|
|
2020-11-24 20:30:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "pin-project-lite"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.13"
|
2020-11-24 20:30:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
|
2020-11-24 20:30:06 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "pin-utils"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
|
|
|
2024-01-06 11:27:57 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "piper"
|
|
|
|
|
version = "0.2.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "668d31b1c4eba19242f2088b2bf3316b82ca31082a8335764db4e083db7485d4"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"atomic-waker",
|
|
|
|
|
"fastrand 2.0.1",
|
|
|
|
|
"futures-io",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "pkg-config"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.3.28"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "69d3587f8a9e599cc7ec2c00e331f71c4e69a5f9a4b8a6efd5b07466b9736f9a"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2021-12-16 17:45:52 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "plotters"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.3.5"
|
2021-12-16 17:45:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "d2c224ba00d7cadd4d5c660deaf2098e5e80e07846537c51f9cfa4be50c1fd45"
|
2021-12-16 17:45:52 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"num-traits",
|
|
|
|
|
"plotters-backend",
|
|
|
|
|
"plotters-svg",
|
|
|
|
|
"wasm-bindgen",
|
|
|
|
|
"web-sys",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "plotters-backend"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.3.5"
|
2021-12-16 17:45:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "9e76628b4d3a7581389a35d5b6e2139607ad7c75b17aed325f210aa91f4a9609"
|
2021-12-16 17:45:52 +00:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "plotters-svg"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.3.5"
|
2021-12-16 17:45:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "38f6d39893cca0701371e3c27294f09797214b86f1fb951b89ade8ec04e2abab"
|
2021-12-16 17:45:52 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"plotters-backend",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "polling"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "2.8.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
2022-11-05 23:21:00 +00:00
|
|
|
"autocfg",
|
2023-06-26 10:06:24 +00:00
|
|
|
"bitflags 1.3.2",
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2023-06-26 10:06:24 +00:00
|
|
|
"concurrent-queue",
|
2020-08-21 22:36:03 +00:00
|
|
|
"libc",
|
2020-11-30 14:44:01 +00:00
|
|
|
"log",
|
2023-06-26 10:06:24 +00:00
|
|
|
"pin-project-lite",
|
|
|
|
|
"windows-sys 0.48.0",
|
2020-08-21 22:36:03 +00:00
|
|
|
]
|
|
|
|
|
|
2024-01-06 11:27:57 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "polling"
|
|
|
|
|
version = "3.3.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "cf63fa624ab313c11656b4cda960bfc46c410187ad493c41f6ba2d8c1e991c9e"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"concurrent-queue",
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
"rustix 0.38.28",
|
|
|
|
|
"tracing",
|
|
|
|
|
"windows-sys 0.52.0",
|
|
|
|
|
]
|
|
|
|
|
|
2022-11-09 12:02:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "portable-atomic"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.6.0"
|
2022-11-09 12:02:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "powerfmt"
|
|
|
|
|
version = "0.2.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
|
2022-11-09 12:02:24 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "ppv-lite86"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.2.17"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2021-01-08 15:41:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "precomputed-hash"
|
|
|
|
|
version = "0.1.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
|
|
|
|
2023-03-16 12:58:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "predicates"
|
2023-10-02 14:13:07 +00:00
|
|
|
version = "3.0.4"
|
2023-03-16 12:58:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-10-02 14:13:07 +00:00
|
|
|
checksum = "6dfc28575c2e3f19cb3c73b93af36460ae898d426eba6fc15b9bd2a5220758a0"
|
2023-03-16 12:58:13 +00:00
|
|
|
dependencies = [
|
2023-04-14 13:06:53 +00:00
|
|
|
"anstyle",
|
2023-03-16 12:58:13 +00:00
|
|
|
"difflib",
|
2023-03-16 14:47:01 +00:00
|
|
|
"float-cmp",
|
2024-01-06 11:27:57 +00:00
|
|
|
"itertools 0.11.0",
|
2023-03-16 14:47:01 +00:00
|
|
|
"normalize-line-endings",
|
2023-03-16 12:58:13 +00:00
|
|
|
"predicates-core",
|
2023-03-16 14:47:01 +00:00
|
|
|
"regex",
|
2023-03-16 12:58:13 +00:00
|
|
|
]
|
|
|
|
|
|
2020-10-17 08:01:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "predicates-core"
|
2023-03-16 12:58:13 +00:00
|
|
|
version = "1.0.6"
|
2020-10-17 08:01:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-16 12:58:13 +00:00
|
|
|
checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
|
2020-10-17 08:01:06 +00:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "predicates-tree"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "1.0.9"
|
2020-10-17 08:01:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "368ba315fb8c5052ab692e68a0eefec6ec57b23a36959c14496f0b0df2c0cecf"
|
2020-10-17 08:01:06 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"predicates-core",
|
2021-11-03 22:45:42 +00:00
|
|
|
"termtree",
|
2020-10-17 08:01:06 +00:00
|
|
|
]
|
|
|
|
|
|
2022-11-13 20:10:32 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "pretty_assertions"
|
2023-07-07 13:16:46 +00:00
|
|
|
version = "1.4.0"
|
2022-11-13 20:10:32 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-07-07 13:16:46 +00:00
|
|
|
checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
|
2022-11-13 20:10:32 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"diff",
|
|
|
|
|
"yansi",
|
|
|
|
|
]
|
|
|
|
|
|
2020-10-21 00:10:25 +00: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",
|
2023-06-26 10:06:24 +00:00
|
|
|
"syn 1.0.109",
|
2020-10-21 00:10:25 +00:00
|
|
|
"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",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "proc-macro2"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.76"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "95fc56cda0b5c3325f5fbbd7ff9fda9e02bb00bb3dac51252d2f1bfa1cb8cc8c"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2022-05-30 21:02:18 +00:00
|
|
|
"unicode-ident",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2023-07-13 15:32:41 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "psl-types"
|
|
|
|
|
version = "2.0.11"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "33cb294fe86a74cbcf50d4445b37da762029549ebeea341421c7c70370f86cac"
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "publicsuffix"
|
|
|
|
|
version = "2.2.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "96a8c1bda5ae1af7f99a2962e49df150414a43d62404644d98dd5c3a93d07457"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"idna 0.3.0",
|
|
|
|
|
"psl-types",
|
|
|
|
|
]
|
|
|
|
|
|
2020-10-20 23:31:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "pulldown-cmark"
|
2023-05-22 10:38:22 +00:00
|
|
|
version = "0.9.3"
|
2020-10-20 23:31:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-22 10:38:22 +00:00
|
|
|
checksum = "77a1a2f1f0a7ecff9c31abbe177637be0e97a0aef46cf8738ece09327985d998"
|
2020-10-20 23:31:06 +00:00
|
|
|
dependencies = [
|
2023-03-20 12:59:13 +00:00
|
|
|
"bitflags 1.3.2",
|
2020-10-20 23:31:06 +00:00
|
|
|
"getopts",
|
|
|
|
|
"memchr",
|
|
|
|
|
"unicase",
|
|
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "pwned"
|
|
|
|
|
version = "0.5.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "f75258f75c681eb691607acdb325d0150907bc68826365b07476834df2664974"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"derive_builder",
|
|
|
|
|
"reqwest",
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_derive",
|
|
|
|
|
"serde_json",
|
|
|
|
|
"sha1 0.6.1",
|
|
|
|
|
"thiserror",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-07 17:00:21 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "quick-error"
|
|
|
|
|
version = "1.2.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "quote"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.35"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "rand"
|
|
|
|
|
version = "0.7.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03"
|
|
|
|
|
dependencies = [
|
2021-02-10 10:58:04 +00:00
|
|
|
"getrandom 0.1.16",
|
2020-08-04 22:32:37 +00:00
|
|
|
"libc",
|
2021-01-12 07:05:18 +00:00
|
|
|
"rand_chacha 0.2.2",
|
|
|
|
|
"rand_core 0.5.1",
|
2022-03-03 13:14:41 +00:00
|
|
|
"rand_hc",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2021-01-12 07:05:18 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "rand"
|
2022-03-03 13:14:41 +00:00
|
|
|
version = "0.8.5"
|
2021-01-12 07:05:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-03 13:14:41 +00:00
|
|
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
2021-01-12 07:05:18 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
2021-11-03 22:45:42 +00:00
|
|
|
"rand_chacha 0.3.1",
|
2022-11-05 23:21:00 +00:00
|
|
|
"rand_core 0.6.4",
|
2021-01-12 07:05:18 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "rand_chacha"
|
|
|
|
|
version = "0.2.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"ppv-lite86",
|
2021-01-12 07:05:18 +00:00
|
|
|
"rand_core 0.5.1",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "rand_chacha"
|
2021-11-03 22:45:42 +00:00
|
|
|
version = "0.3.1"
|
2021-01-12 07:05:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-03 22:45:42 +00:00
|
|
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
2021-01-12 07:05:18 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"ppv-lite86",
|
2022-11-05 23:21:00 +00:00
|
|
|
"rand_core 0.6.4",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "rand_core"
|
|
|
|
|
version = "0.5.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19"
|
|
|
|
|
dependencies = [
|
2021-02-10 10:58:04 +00:00
|
|
|
"getrandom 0.1.16",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2021-01-12 07:05:18 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "rand_core"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.6.4"
|
2021-01-12 07:05:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
2021-01-12 07:05:18 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"getrandom 0.2.11",
|
2021-01-12 07:05:18 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "rand_hc"
|
|
|
|
|
version = "0.2.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c"
|
|
|
|
|
dependencies = [
|
2021-01-12 07:05:18 +00:00
|
|
|
"rand_core 0.5.1",
|
|
|
|
|
]
|
|
|
|
|
|
2021-12-01 17:25:11 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "rayon"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.8.0"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"either",
|
|
|
|
|
"rayon-core",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "rayon-core"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.12.0"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"crossbeam-deque",
|
2022-02-18 16:09:30 +00:00
|
|
|
"crossbeam-utils",
|
2021-01-12 07:05:18 +00:00
|
|
|
]
|
|
|
|
|
|
2023-03-29 23:22:25 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "redox_syscall"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.4.1"
|
2023-03-29 23:22:25 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
|
2023-03-29 23:22:25 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"bitflags 1.3.2",
|
|
|
|
|
]
|
|
|
|
|
|
2020-12-02 22:28:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "redox_users"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.4.4"
|
2020-12-02 22:28:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "a18479200779601e498ada4e8c1e1f50e3ee19deb0259c25825a98b5603b2cb4"
|
2020-12-02 22:28:37 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"getrandom 0.2.11",
|
|
|
|
|
"libredox",
|
2022-05-30 21:02:18 +00:00
|
|
|
"thiserror",
|
2020-12-02 22:28:37 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "regex"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "1.10.2"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "380b951a9c5e80ddfd6136919eef32310721aa4aacd4889a8d39124b026ab343"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"aho-corasick",
|
|
|
|
|
"memchr",
|
2023-12-02 12:15:40 +00:00
|
|
|
"regex-automata 0.4.3",
|
|
|
|
|
"regex-syntax 0.8.2",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2021-02-02 06:45:53 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "regex-automata"
|
2021-11-03 22:45:42 +00:00
|
|
|
version = "0.1.10"
|
2021-02-02 06:45:53 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-03 22:45:42 +00:00
|
|
|
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
2021-02-02 06:45:53 +00:00
|
|
|
dependencies = [
|
2023-04-21 20:26:21 +00:00
|
|
|
"regex-syntax 0.6.29",
|
2021-02-02 06:45:53 +00:00
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "regex-automata"
|
|
|
|
|
version = "0.4.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "5f804c7828047e88b2d32e2d7fe5a105da8ee3264f01902f796c8e067dc2483f"
|
2023-07-07 01:00:16 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"aho-corasick",
|
|
|
|
|
"memchr",
|
2023-12-02 12:15:40 +00:00
|
|
|
"regex-syntax 0.8.2",
|
2023-07-07 01:00:16 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "regex-syntax"
|
2023-03-22 12:59:20 +00:00
|
|
|
version = "0.6.29"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-22 12:59:20 +00:00
|
|
|
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2023-04-21 20:26:21 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "regex-syntax"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.8.2"
|
2023-04-21 20:26:21 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "c08c74e62047bb2de4ff487b251e4a92e24f48745648451635cec7d591162d9f"
|
2023-04-21 20:26:21 +00:00
|
|
|
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "relative-path"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.9.2"
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "e898588f33fdd5b9420719948f9f2a32c922a246964576f71ba7f24f80610fbc"
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
|
2021-01-06 23:10:58 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "reqwest"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.11.23"
|
2021-01-06 23:10:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "37b1ae8d9ac08420c66222fb9096fc5de435c3c48542bc5336c51892cffafb41"
|
2021-01-06 23:10:58 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"async-compression",
|
2024-01-06 11:27:57 +00:00
|
|
|
"base64 0.21.5",
|
2021-02-12 21:34:41 +00:00
|
|
|
"bytes",
|
2023-07-15 11:41:55 +00:00
|
|
|
"cookie 0.16.2",
|
2023-07-13 15:32:41 +00:00
|
|
|
"cookie_store 0.16.2",
|
2021-01-06 23:10:58 +00:00
|
|
|
"encoding_rs",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-util",
|
2022-01-11 12:43:35 +00:00
|
|
|
"h2",
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2024-01-06 11:27:57 +00:00
|
|
|
"http-body 0.4.6",
|
|
|
|
|
"hyper 0.14.28",
|
Add optional Rustls support (#1099)
* Add optional Rustls support
This commit adds a non-default feature flag to use Rustls instead of OpenSSL.
My personal motivation is to use Lychee on OpenBSD -current, where the
`openssl` crate frequently fails to link against the unreleased system
LibreSSL. Using the `vendored-openssl` feature helps with compilation, but
segfaults at runtime.
The commit adds three feature flags to the library, binary, benchmark, and all
examples:
- The `native-tls` feature flag toggles the `openssl` crate.
- The `rustls-tls` feature flag toggles the `rustls` crate.
- The `email-check` feature flag toggles the `check-if-email-exists` crate,
which is the only existing functionality currently incompatible with Rustls.
By default, `native-tls` and `email-check` are enabled. Thus, Lychee (bin and
lib) can be used as before unless default features are disabled.
To use the Rustls feature, pass `--no-default-features --features rustls` to
cargo check/build/test/..., e.g.,
$ cargo clippy --workspace --all-targets --no-default-features \ --features
rustls-tls -- --deny warnings
Checking email addresses requires both, `native-tls` and `email-check`, to be
enabled. Otherwise, email addresses are excluded.
The `email-check` feature flag is technically not necessary. I preferred it
over `not(rustls-tls)` because it's clearer and it addresses the AGPL license
issue #594. As far as I understand, a Lychee binary compiled without the
`email-check` feature could be distributed with file-based copyleft for the
MPL-licensed dependencies only. But that's out of scope here.
The benchmark shows a performance regression varying between 2% and 4.4% when
using Rustls instead of OpenSSL on my machine.
PS: The `ring` crate needs to be patched on OpenBSD 7.3 and later until the new
xonly patches have been upstreamed, see the `rust-ring` port.
* Use platform native certificates with Rustls
By default, reqwest uses the webpki-roots crate with Rustls, effectively
bundling Mozilla's root certificates.
This commit uses the rustls-native-certs crate instead to use locally
installed root certificates, to minimize the difference between the
native-tls and rustls-tls features.
* Document feature flags
2023-06-16 00:21:57 +00:00
|
|
|
"hyper-rustls",
|
2021-02-12 21:34:41 +00:00
|
|
|
"hyper-tls",
|
2021-01-06 23:10:58 +00:00
|
|
|
"ipnet",
|
|
|
|
|
"js-sys",
|
|
|
|
|
"log",
|
|
|
|
|
"mime",
|
|
|
|
|
"native-tls",
|
2022-09-21 12:36:04 +00:00
|
|
|
"once_cell",
|
2021-01-06 23:10:58 +00:00
|
|
|
"percent-encoding",
|
2021-02-12 21:34:41 +00:00
|
|
|
"pin-project-lite",
|
Add optional Rustls support (#1099)
* Add optional Rustls support
This commit adds a non-default feature flag to use Rustls instead of OpenSSL.
My personal motivation is to use Lychee on OpenBSD -current, where the
`openssl` crate frequently fails to link against the unreleased system
LibreSSL. Using the `vendored-openssl` feature helps with compilation, but
segfaults at runtime.
The commit adds three feature flags to the library, binary, benchmark, and all
examples:
- The `native-tls` feature flag toggles the `openssl` crate.
- The `rustls-tls` feature flag toggles the `rustls` crate.
- The `email-check` feature flag toggles the `check-if-email-exists` crate,
which is the only existing functionality currently incompatible with Rustls.
By default, `native-tls` and `email-check` are enabled. Thus, Lychee (bin and
lib) can be used as before unless default features are disabled.
To use the Rustls feature, pass `--no-default-features --features rustls` to
cargo check/build/test/..., e.g.,
$ cargo clippy --workspace --all-targets --no-default-features \ --features
rustls-tls -- --deny warnings
Checking email addresses requires both, `native-tls` and `email-check`, to be
enabled. Otherwise, email addresses are excluded.
The `email-check` feature flag is technically not necessary. I preferred it
over `not(rustls-tls)` because it's clearer and it addresses the AGPL license
issue #594. As far as I understand, a Lychee binary compiled without the
`email-check` feature could be distributed with file-based copyleft for the
MPL-licensed dependencies only. But that's out of scope here.
The benchmark shows a performance regression varying between 2% and 4.4% when
using Rustls instead of OpenSSL on my machine.
PS: The `ring` crate needs to be patched on OpenBSD 7.3 and later until the new
xonly patches have been upstreamed, see the `rust-ring` port.
* Use platform native certificates with Rustls
By default, reqwest uses the webpki-roots crate with Rustls, effectively
bundling Mozilla's root certificates.
This commit uses the rustls-native-certs crate instead to use locally
installed root certificates, to minimize the difference between the
native-tls and rustls-tls features.
* Document feature flags
2023-06-16 00:21:57 +00:00
|
|
|
"rustls",
|
|
|
|
|
"rustls-native-certs",
|
|
|
|
|
"rustls-pemfile",
|
2021-01-06 23:10:58 +00:00
|
|
|
"serde",
|
2021-02-12 21:34:41 +00:00
|
|
|
"serde_json",
|
2021-01-06 23:10:58 +00:00
|
|
|
"serde_urlencoded",
|
2023-12-02 12:15:40 +00:00
|
|
|
"system-configuration",
|
2021-02-12 21:34:41 +00:00
|
|
|
"tokio",
|
2021-01-06 23:10:58 +00:00
|
|
|
"tokio-native-tls",
|
Add optional Rustls support (#1099)
* Add optional Rustls support
This commit adds a non-default feature flag to use Rustls instead of OpenSSL.
My personal motivation is to use Lychee on OpenBSD -current, where the
`openssl` crate frequently fails to link against the unreleased system
LibreSSL. Using the `vendored-openssl` feature helps with compilation, but
segfaults at runtime.
The commit adds three feature flags to the library, binary, benchmark, and all
examples:
- The `native-tls` feature flag toggles the `openssl` crate.
- The `rustls-tls` feature flag toggles the `rustls` crate.
- The `email-check` feature flag toggles the `check-if-email-exists` crate,
which is the only existing functionality currently incompatible with Rustls.
By default, `native-tls` and `email-check` are enabled. Thus, Lychee (bin and
lib) can be used as before unless default features are disabled.
To use the Rustls feature, pass `--no-default-features --features rustls` to
cargo check/build/test/..., e.g.,
$ cargo clippy --workspace --all-targets --no-default-features \ --features
rustls-tls -- --deny warnings
Checking email addresses requires both, `native-tls` and `email-check`, to be
enabled. Otherwise, email addresses are excluded.
The `email-check` feature flag is technically not necessary. I preferred it
over `not(rustls-tls)` because it's clearer and it addresses the AGPL license
issue #594. As far as I understand, a Lychee binary compiled without the
`email-check` feature could be distributed with file-based copyleft for the
MPL-licensed dependencies only. But that's out of scope here.
The benchmark shows a performance regression varying between 2% and 4.4% when
using Rustls instead of OpenSSL on my machine.
PS: The `ring` crate needs to be patched on OpenBSD 7.3 and later until the new
xonly patches have been upstreamed, see the `rust-ring` port.
* Use platform native certificates with Rustls
By default, reqwest uses the webpki-roots crate with Rustls, effectively
bundling Mozilla's root certificates.
This commit uses the rustls-native-certs crate instead to use locally
installed root certificates, to minimize the difference between the
native-tls and rustls-tls features.
* Document feature flags
2023-06-16 00:21:57 +00:00
|
|
|
"tokio-rustls",
|
2021-02-12 21:34:41 +00:00
|
|
|
"tokio-socks",
|
2022-06-15 21:52:30 +00:00
|
|
|
"tokio-util",
|
|
|
|
|
"tower-service",
|
2023-12-02 12:15:40 +00:00
|
|
|
"trust-dns-resolver 0.23.2",
|
2021-01-06 23:10:58 +00:00
|
|
|
"url",
|
|
|
|
|
"wasm-bindgen",
|
|
|
|
|
"wasm-bindgen-futures",
|
|
|
|
|
"web-sys",
|
2023-08-22 14:51:58 +00:00
|
|
|
"winreg",
|
2021-01-06 23:10:58 +00:00
|
|
|
]
|
|
|
|
|
|
2023-07-13 15:32:41 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "reqwest_cookie_store"
|
2023-07-15 11:41:55 +00:00
|
|
|
version = "0.6.0"
|
2023-07-13 15:32:41 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-07-15 11:41:55 +00:00
|
|
|
checksum = "ba529055ea150e42e4eb9c11dcd380a41025ad4d594b0cb4904ef28b037e1061"
|
2023-07-13 15:32:41 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"bytes",
|
2023-07-15 11:41:55 +00:00
|
|
|
"cookie_store 0.20.0",
|
2023-07-13 15:32:41 +00:00
|
|
|
"reqwest",
|
|
|
|
|
"url",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "resolv-conf"
|
2021-02-10 10:58:04 +00:00
|
|
|
version = "0.7.0"
|
2020-08-23 21:22:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-10 10:58:04 +00:00
|
|
|
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
|
2020-08-23 21:22:48 +00:00
|
|
|
dependencies = [
|
2022-08-11 12:13:37 +00:00
|
|
|
"hostname",
|
2020-08-23 21:22:48 +00:00
|
|
|
"quick-error",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2022-05-30 21:02:18 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "retain_mut"
|
|
|
|
|
version = "0.1.9"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "4389f1d5789befaf6029ebd9f7dac4af7f7e3d61b69d4f30e2ac02b57e7712b0"
|
|
|
|
|
|
2023-10-02 14:13:07 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "ring"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.17.7"
|
2023-10-02 14:13:07 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "688c63d65483050968b2a8937f7995f443e27041a0f7700aa59b0822aedebb74"
|
2023-10-02 14:13:07 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"cc",
|
2024-01-06 11:27:57 +00:00
|
|
|
"getrandom 0.2.11",
|
2023-10-02 14:13:07 +00:00
|
|
|
"libc",
|
2024-01-06 11:27:57 +00:00
|
|
|
"spin",
|
|
|
|
|
"untrusted",
|
2023-10-02 14:13:07 +00:00
|
|
|
"windows-sys 0.48.0",
|
|
|
|
|
]
|
|
|
|
|
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "rstest"
|
2023-10-02 14:13:07 +00:00
|
|
|
version = "0.18.2"
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-10-02 14:13:07 +00:00
|
|
|
checksum = "97eeab2f3c0a199bc4be135c36c924b6590b88c377d416494288c14f2db30199"
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"futures",
|
|
|
|
|
"futures-timer",
|
|
|
|
|
"rstest_macros",
|
|
|
|
|
"rustc_version",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "rstest_macros"
|
2023-10-02 14:13:07 +00:00
|
|
|
version = "0.18.2"
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-10-02 14:13:07 +00:00
|
|
|
checksum = "d428f8247852f894ee1be110b375111b586d4fa431f6c46e64ba5a0dcccbe605"
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"glob",
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
"regex",
|
|
|
|
|
"relative-path",
|
|
|
|
|
"rustc_version",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
"unicode-ident",
|
|
|
|
|
]
|
|
|
|
|
|
2022-02-11 22:43:47 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "rustc-demangle"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.1.23"
|
2022-02-11 22:43:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
2022-11-25 12:02:41 +00:00
|
|
|
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "rustc_version"
|
|
|
|
|
version = "0.4.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"semver",
|
|
|
|
|
]
|
|
|
|
|
|
2023-03-29 23:22:25 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "rustix"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.37.27"
|
2023-03-29 23:22:25 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
|
2023-03-29 23:22:25 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"bitflags 1.3.2",
|
2023-06-26 10:06:24 +00:00
|
|
|
"errno",
|
2023-03-29 23:22:25 +00:00
|
|
|
"io-lifetimes",
|
|
|
|
|
"libc",
|
2023-08-15 14:41:58 +00:00
|
|
|
"linux-raw-sys 0.3.8",
|
|
|
|
|
"windows-sys 0.48.0",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "rustix"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.38.28"
|
2023-08-15 14:41:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "72e572a5e8ca657d7366229cdde4bd14c4eb5499a9573d4d366fe1b599daa316"
|
2023-08-15 14:41:58 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"bitflags 2.4.1",
|
2023-08-15 14:41:58 +00:00
|
|
|
"errno",
|
|
|
|
|
"libc",
|
2023-12-02 12:15:40 +00:00
|
|
|
"linux-raw-sys 0.4.12",
|
|
|
|
|
"windows-sys 0.52.0",
|
2023-03-29 23:22:25 +00:00
|
|
|
]
|
|
|
|
|
|
2023-05-01 13:16:04 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "rustls"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.21.10"
|
2023-05-01 13:16:04 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "f9d5a6813c0759e4609cd494e8e725babae6a2ca7b62a5536a13daaec6fcb7ba"
|
2023-05-01 13:16:04 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"log",
|
2024-01-06 11:27:57 +00:00
|
|
|
"ring",
|
2023-05-01 13:16:04 +00:00
|
|
|
"rustls-webpki",
|
|
|
|
|
"sct",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "rustls-native-certs"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.6.3"
|
2023-05-01 13:16:04 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
|
2023-05-01 13:16:04 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"openssl-probe",
|
|
|
|
|
"rustls-pemfile",
|
|
|
|
|
"schannel",
|
|
|
|
|
"security-framework",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "rustls-pemfile"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.4"
|
2023-05-01 13:16:04 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
|
2023-05-01 13:16:04 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"base64 0.21.5",
|
2023-05-01 13:16:04 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "rustls-webpki"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.101.7"
|
2023-05-01 13:16:04 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
|
2023-05-01 13:16:04 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"ring",
|
|
|
|
|
"untrusted",
|
2023-05-01 13:16:04 +00:00
|
|
|
]
|
|
|
|
|
|
2023-03-27 22:45:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "rustversion"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "1.0.14"
|
2023-03-27 22:45:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "7ffc183a10b4478d04cbbbfc96d0873219d962dd5accaff2ffbd4ceb7df837f4"
|
2023-03-27 22:45:06 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "ryu"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.16"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "f98d2aa92eebf49b69786be48e4477826b256916e84a57ff2a4f21923b48eb4c"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2021-12-16 17:45:52 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "same-file"
|
|
|
|
|
version = "1.0.6"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"winapi-util",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "schannel"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.1.23"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"windows-sys 0.52.0",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "scopeguard"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "1.2.0"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
2020-08-21 22:36:03 +00:00
|
|
|
|
2023-05-01 13:16:04 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "sct"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.7.1"
|
2023-05-01 13:16:04 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
|
2023-05-01 13:16:04 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"ring",
|
|
|
|
|
"untrusted",
|
2023-05-01 13:16:04 +00:00
|
|
|
]
|
|
|
|
|
|
2022-02-13 12:53:46 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "secrecy"
|
|
|
|
|
version = "0.8.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9bd1c54ea06cfd2f6b63219704de0b9b4f72dcc2b8fdef820be6cd799780e91e"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"serde",
|
|
|
|
|
"zeroize",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "security-framework"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "2.9.2"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2023-03-20 12:59:13 +00:00
|
|
|
"bitflags 1.3.2",
|
2020-08-04 22:32:37 +00:00
|
|
|
"core-foundation",
|
|
|
|
|
"core-foundation-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
"security-framework-sys",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "security-framework-sys"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "2.9.1"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"core-foundation-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "semver"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.21"
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "b97ed7a9823b74f99c7742f5336af7be5ecd3eeafcb1507d1fa93347b1d589b0"
|
feat: Add support for ranges in the `--accept` option / config field (#1167)
Adds support for accept ranges discussed in #1157. This allows the user to specify custom HTTP status codes accepted during checking and thus will report as valid (not broken). The accept option only supports specifying status codes as a comma-separated list. With this PR, the option will accept a list of status code ranges formatted like this:
```toml
accept = ["100..=103", "200..=299", "403"]
```
These combinations will be supported: `..<end>`, ` ..=<end>`, `<start>..<end>` and `<start>..=<end>`.
The behavior is copied from the Rust Range like concepts:
```
..<end>, includes 0 to <end> (exclusive)
..=<end>, includes 0 to <end> (inclusive)
<start>..<end>, includes <start> to <end> (exclusive)
<start>..=<end>, includes <start> to <end> (inclusive)
```
- Foundation and enhancements for accept ranges, including support for comma-separated strings and integration into the CLI.
- Implementations and updates for AcceptSelector, including Default, Display, and serde defaults.
- Address and fix various errors: clippy, cargo fmt, and tests.
- Add more tests, address edge cases, and enhance error messaging, especially for TOML config parsing.
- Update dependencies.
2023-09-17 19:39:01 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "serde"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.195"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "63261df402c67811e9ac6def069e4786148c4563f4b50fd4bf30aa370d626b02"
|
2020-08-17 23:17:26 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"serde_derive",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "serde_derive"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.195"
|
2020-08-17 23:17:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "46fe8f8603d81ba86327b23a2e9cdf49e1255fb94a4c5f297f6ee0547178ea2c"
|
2020-08-17 23:17:26 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2020-08-17 23:17:26 +00:00
|
|
|
]
|
2020-08-04 22:32:37 +00:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "serde_json"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.111"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "176e46fa42316f18edd598015a5166857fc835ec732f5215eac6b7bdbf0a84f4"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2023-02-14 14:08:48 +00:00
|
|
|
"itoa",
|
2020-08-04 22:32:37 +00:00
|
|
|
"ryu",
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
2022-02-11 22:43:47 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "serde_path_to_error"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.1.15"
|
2022-02-11 22:43:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "ebd154a240de39fdebcf5775d2675c204d7c13cf39a4c697be6493c8e734337c"
|
2022-02-11 22:43:47 +00:00
|
|
|
dependencies = [
|
2023-08-15 14:41:58 +00:00
|
|
|
"itoa",
|
2022-02-11 22:43:47 +00:00
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
2020-10-16 13:29:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "serde_qs"
|
2021-11-03 22:45:42 +00:00
|
|
|
version = "0.8.5"
|
2020-10-16 13:29:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-03 22:45:42 +00:00
|
|
|
checksum = "c7715380eec75f029a4ef7de39a9200e0a63823176b759d055b613f5a87df6a6"
|
2020-10-16 13:29:13 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"percent-encoding",
|
|
|
|
|
"serde",
|
|
|
|
|
"thiserror",
|
|
|
|
|
]
|
|
|
|
|
|
2023-01-30 14:12:34 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "serde_spanned"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.6.5"
|
2023-01-30 14:12:34 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1"
|
2023-01-30 14:12:34 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
2020-10-16 13:29:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "serde_urlencoded"
|
2022-03-15 13:17:40 +00:00
|
|
|
version = "0.7.1"
|
2020-10-16 13:29:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-15 13:17:40 +00:00
|
|
|
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
2020-10-16 13:29:13 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"form_urlencoded",
|
2023-02-14 14:08:48 +00:00
|
|
|
"itoa",
|
2020-10-16 13:29:13 +00:00
|
|
|
"ryu",
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
2023-06-26 10:06:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "serde_with"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "3.4.0"
|
2023-06-26 10:06:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "64cd236ccc1b7a29e7e2739f27c0b2dd199804abc4290e32f59f3b68d6405c23"
|
2023-06-26 10:06:24 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"base64 0.21.5",
|
2023-06-26 10:06:24 +00:00
|
|
|
"chrono",
|
|
|
|
|
"hex",
|
2023-06-26 10:59:09 +00:00
|
|
|
"indexmap 1.9.3",
|
2024-01-06 11:27:57 +00:00
|
|
|
"indexmap 2.1.0",
|
2023-06-26 10:06:24 +00:00
|
|
|
"serde",
|
|
|
|
|
"serde_json",
|
|
|
|
|
"serde_with_macros",
|
|
|
|
|
"time",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "serde_with_macros"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "3.4.0"
|
2023-06-26 10:06:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "93634eb5f75a2323b16de4748022ac4297f9e76b6dced2be287a099f41b5e788"
|
2023-06-26 10:06:24 +00:00
|
|
|
dependencies = [
|
2023-08-15 14:41:58 +00:00
|
|
|
"darling 0.20.3",
|
2023-06-26 10:06:24 +00:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2023-06-26 10:06:24 +00:00
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "sha1"
|
|
|
|
|
version = "0.6.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "c1da05c97445caa12d05e848c4a4fcbbea29e748ac28f7e80e9b010392063770"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"sha1_smol",
|
|
|
|
|
]
|
|
|
|
|
|
2020-10-26 08:23:45 +00:00
|
|
|
[[package]]
|
2022-09-05 15:54:02 +00:00
|
|
|
name = "sha1"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.10.6"
|
2020-10-26 08:23:45 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
|
2020-10-26 08:23:45 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2021-11-03 22:45:42 +00:00
|
|
|
"cpufeatures",
|
2021-01-06 23:10:58 +00:00
|
|
|
"digest",
|
2020-10-26 08:23:45 +00:00
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "sha1_smol"
|
|
|
|
|
version = "1.0.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
|
|
|
|
|
|
2021-09-12 16:10:23 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "sharded-slab"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.1.7"
|
2021-09-12 16:10:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
|
2021-09-12 16:10:23 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"lazy_static",
|
|
|
|
|
]
|
|
|
|
|
|
2020-12-02 22:28:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "shellexpand"
|
2023-03-26 19:30:40 +00:00
|
|
|
version = "3.1.0"
|
2020-12-02 22:28:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-26 19:30:40 +00:00
|
|
|
checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
|
2020-12-02 22:28:37 +00:00
|
|
|
dependencies = [
|
2022-08-08 14:18:05 +00:00
|
|
|
"dirs",
|
2020-12-02 22:28:37 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-11 14:13:10 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "signal-hook-registry"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "1.4.1"
|
2020-08-11 14:13:10 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
|
2020-08-11 14:13:10 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2021-04-30 11:33:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "simple"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"lychee-lib",
|
|
|
|
|
"tokio",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
2020-08-17 23:17:26 +00:00
|
|
|
name = "simple_asn1"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.6.2"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
|
2020-08-17 23:17:26 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"num-bigint",
|
|
|
|
|
"num-traits",
|
2022-04-29 12:47:16 +00:00
|
|
|
"thiserror",
|
2022-12-28 16:21:52 +00:00
|
|
|
"time",
|
2020-08-17 23:17:26 +00:00
|
|
|
]
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2021-01-08 15:41:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "siphasher"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.3.11"
|
2021-01-08 15:41:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
2021-01-08 15:41:13 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
2020-08-17 23:17:26 +00:00
|
|
|
name = "slab"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.4.9"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
|
2022-11-05 23:21:00 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"autocfg",
|
|
|
|
|
]
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "smallvec"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.11.2"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970"
|
2020-08-21 22:36:03 +00:00
|
|
|
|
2022-02-11 22:43:47 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "snafu"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "0.7.5"
|
2022-02-11 22:43:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "e4de37ad025c587a29e8f3f5605c00f70b98715ef90b9061a815b9e59e9042d6"
|
2022-02-11 22:43:47 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"backtrace",
|
|
|
|
|
"doc-comment",
|
|
|
|
|
"snafu-derive",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "snafu-derive"
|
2023-08-15 14:41:58 +00:00
|
|
|
version = "0.7.5"
|
2022-02-11 22:43:47 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-08-15 14:41:58 +00:00
|
|
|
checksum = "990079665f075b699031e9c08fd3ab99be5029b96f3b78dc0709e8f77e4efebf"
|
2022-02-11 22:43:47 +00:00
|
|
|
dependencies = [
|
2023-04-11 15:50:36 +00:00
|
|
|
"heck",
|
2022-02-11 22:43:47 +00:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2023-06-26 10:06:24 +00:00
|
|
|
"syn 1.0.109",
|
2022-02-11 22:43:47 +00:00
|
|
|
]
|
|
|
|
|
|
2021-03-28 15:20:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "socket2"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.4.10"
|
2021-03-28 15:20:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
|
2021-03-28 15:20:03 +00:00
|
|
|
dependencies = [
|
2020-08-04 22:32:37 +00:00
|
|
|
"libc",
|
2021-02-12 21:34:41 +00:00
|
|
|
"winapi",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2023-06-26 10:06:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "socket2"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.5.5"
|
2023-06-26 10:06:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "7b5fac59a5cb5dd637972e5fca70daf0523c9067fcdc4842f053dae04a18f8e9"
|
2023-06-26 10:06:24 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
"windows-sys 0.48.0",
|
|
|
|
|
]
|
|
|
|
|
|
2021-12-01 17:25:11 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "spin"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.9.8"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"lock_api",
|
2021-12-01 17:25:11 +00:00
|
|
|
]
|
|
|
|
|
|
2021-01-08 15:41:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "string_cache"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.8.7"
|
2021-01-08 15:41:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "f91138e76242f575eb1d3b38b4f1362f10d3a43f47d182a5b359af488a02293b"
|
2021-01-08 15:41:13 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"new_debug_unreachable",
|
2022-05-30 21:02:18 +00:00
|
|
|
"once_cell",
|
2022-08-11 12:13:37 +00:00
|
|
|
"parking_lot",
|
2022-05-30 21:02:18 +00:00
|
|
|
"phf_shared",
|
2021-01-08 15:41:13 +00:00
|
|
|
"precomputed-hash",
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "string_cache_codegen"
|
2022-05-30 21:02:18 +00:00
|
|
|
version = "0.5.2"
|
2021-01-08 15:41:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-30 21:02:18 +00:00
|
|
|
checksum = "6bb30289b722be4ff74a408c3cc27edeaad656e06cb1fe8fa9231fa59c728988"
|
2021-01-08 15:41:13 +00:00
|
|
|
dependencies = [
|
2022-05-30 21:02:18 +00:00
|
|
|
"phf_generator",
|
|
|
|
|
"phf_shared",
|
2021-01-08 15:41:13 +00:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "strsim"
|
|
|
|
|
version = "0.9.3"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "6446ced80d6c486436db5c078dde11a9f73d42b57fb273121e160b84f63d894c"
|
|
|
|
|
|
2021-10-04 23:37:43 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "strsim"
|
2021-10-16 16:02:27 +00:00
|
|
|
version = "0.10.0"
|
2021-10-04 23:37:43 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-10-16 16:02:27 +00:00
|
|
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
2021-10-04 23:37:43 +00:00
|
|
|
|
2023-03-27 22:45:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "strum"
|
2023-06-19 13:12:11 +00:00
|
|
|
version = "0.25.0"
|
2023-03-27 22:45:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-19 13:12:11 +00:00
|
|
|
checksum = "290d54ea6f91c969195bdbcd7442c8c2a2ba87da8bf60a7ee86a235d4bc1e125"
|
2023-03-27 22:45:06 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"strum_macros",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "strum_macros"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.25.3"
|
2023-03-27 22:45:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "23dc1fa9ac9c169a78ba62f0b841814b7abae11bdd047b9c58f893439e309ea0"
|
2023-03-27 22:45:06 +00:00
|
|
|
dependencies = [
|
2023-04-11 15:50:36 +00:00
|
|
|
"heck",
|
2023-03-27 22:45:06 +00:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
"rustversion",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2023-03-27 22:45:06 +00:00
|
|
|
]
|
|
|
|
|
|
2022-04-25 17:19:36 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "supports-color"
|
2023-10-02 14:13:07 +00:00
|
|
|
version = "2.1.0"
|
2022-04-25 17:19:36 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-10-02 14:13:07 +00:00
|
|
|
checksum = "d6398cde53adc3c4557306a96ce67b302968513830a77a95b2b17305d9719a89"
|
2022-04-25 17:19:36 +00:00
|
|
|
dependencies = [
|
2022-12-19 14:05:53 +00:00
|
|
|
"is-terminal",
|
2022-04-25 17:19:36 +00:00
|
|
|
"is_ci",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "syn"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "1.0.109"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2022-05-30 21:02:18 +00:00
|
|
|
"unicode-ident",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2023-03-20 12:59:50 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "syn"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "2.0.48"
|
2023-03-20 12:59:50 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "0f3531638e407dfc0814761abb7c00a5b54992b849452a0646b7f65c9f770f3f"
|
2023-03-20 12:59:50 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
"unicode-ident",
|
|
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "system-configuration"
|
|
|
|
|
version = "0.5.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"bitflags 1.3.2",
|
|
|
|
|
"core-foundation",
|
|
|
|
|
"system-configuration-sys",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "system-configuration-sys"
|
|
|
|
|
version = "0.5.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"core-foundation-sys",
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2021-11-17 23:44:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tabled"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.15.0"
|
2021-11-17 23:44:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "4c998b0c8b921495196a48aabaf1901ff28be0760136e31604f7967b0792050e"
|
2021-11-17 23:44:48 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"papergrid",
|
|
|
|
|
"tabled_derive",
|
2022-08-03 21:22:08 +00:00
|
|
|
"unicode-width",
|
2021-11-17 23:44:48 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "tabled_derive"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "0.7.0"
|
2021-11-17 23:44:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "4c138f99377e5d653a371cdad263615634cfc8467685dfe8e73e2b8e98f44b17"
|
2021-11-17 23:44:48 +00:00
|
|
|
dependencies = [
|
2023-04-11 15:50:36 +00:00
|
|
|
"heck",
|
2022-08-03 21:22:08 +00:00
|
|
|
"proc-macro-error",
|
2021-11-17 23:44:48 +00:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2023-06-26 10:06:24 +00:00
|
|
|
"syn 1.0.109",
|
2021-11-17 23:44:48 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tempfile"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "3.9.0"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "01ce4141aa927a6d1bd34a041795abd0db1cccba5d5f24b009f694bdf3a1f3fa"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2024-01-06 11:27:57 +00:00
|
|
|
"fastrand 2.0.1",
|
|
|
|
|
"redox_syscall",
|
|
|
|
|
"rustix 0.38.28",
|
2024-01-05 14:46:43 +00:00
|
|
|
"windows-sys 0.52.0",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2021-01-08 15:41:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tendril"
|
2022-05-30 21:02:18 +00:00
|
|
|
version = "0.4.3"
|
2021-01-08 15:41:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-30 21:02:18 +00:00
|
|
|
checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0"
|
2021-01-08 15:41:13 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"futf",
|
|
|
|
|
"mac",
|
|
|
|
|
"utf-8",
|
|
|
|
|
]
|
|
|
|
|
|
2022-08-12 20:53:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "termcolor"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.4.0"
|
2022-08-12 20:53:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "ff1bc3d3f05aff0403e8ac0d92ced918ec05b666a43f83297ccef5bea8a3d449"
|
2022-08-12 20:53:13 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"winapi-util",
|
|
|
|
|
]
|
|
|
|
|
|
2021-11-03 22:45:42 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "termtree"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.4.1"
|
2022-08-12 20:53:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "3369f5ac52d5eb6ab48c6b4ffdc8efbcad6b89c765749064ba298f2c68a16a76"
|
2022-08-12 20:53:13 +00:00
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "thiserror"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.56"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "d54378c645627613241d077a3a79db965db602882668f9136ac42af9ecb730ad"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"thiserror-impl",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "thiserror-impl"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.56"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "fa0faa943b50f3db30a20aa7e265dbc66076993efed8463e8de414e5d06d3471"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2020-08-21 22:36:03 +00:00
|
|
|
]
|
|
|
|
|
|
2021-09-12 16:10:23 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "thread_local"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "1.1.7"
|
2021-09-12 16:10:23 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "3fdd6f064ccff2d6567adcb3873ca630700f00b5ad3f060c25b5dcfd9a4ce152"
|
2021-09-12 16:10:23 +00:00
|
|
|
dependencies = [
|
2023-06-26 10:06:24 +00:00
|
|
|
"cfg-if",
|
2021-09-12 16:10:23 +00:00
|
|
|
"once_cell",
|
|
|
|
|
]
|
|
|
|
|
|
2022-04-29 12:47:16 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "time"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.3.31"
|
2022-04-29 12:47:16 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "f657ba42c3f86e7680e53c8cd3af8abbe56b5491790b46e22e19c0d57463583e"
|
2022-04-29 12:47:16 +00:00
|
|
|
dependencies = [
|
2023-08-15 14:41:58 +00:00
|
|
|
"deranged",
|
2023-02-14 14:08:48 +00:00
|
|
|
"itoa",
|
2024-01-06 11:27:57 +00:00
|
|
|
"powerfmt",
|
2022-11-05 23:21:00 +00:00
|
|
|
"serde",
|
|
|
|
|
"time-core",
|
2022-04-29 12:47:16 +00:00
|
|
|
"time-macros",
|
|
|
|
|
]
|
|
|
|
|
|
2022-11-05 23:21:00 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "time-core"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.1.2"
|
2022-11-05 23:21:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
|
2022-11-05 23:21:00 +00:00
|
|
|
|
2022-04-29 12:47:16 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "time-macros"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.16"
|
2022-04-29 12:47:16 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "26197e33420244aeb70c3e8c78376ca46571bc4e701e4791c2cd9f57dcb3a43f"
|
2022-11-05 23:21:00 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"time-core",
|
|
|
|
|
]
|
2022-04-29 12:47:16 +00:00
|
|
|
|
2021-12-16 17:45:52 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tinytemplate"
|
|
|
|
|
version = "1.2.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_json",
|
|
|
|
|
]
|
|
|
|
|
|
2020-10-16 13:29:13 +00:00
|
|
|
[[package]]
|
2021-02-10 10:58:04 +00:00
|
|
|
name = "tinyvec"
|
2022-05-30 21:02:18 +00:00
|
|
|
version = "1.6.0"
|
2020-10-16 13:29:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-30 21:02:18 +00:00
|
|
|
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
2020-10-16 13:29:13 +00:00
|
|
|
dependencies = [
|
2021-02-10 10:58:04 +00:00
|
|
|
"tinyvec_macros",
|
2020-10-16 13:29:13 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
2021-02-10 10:58:04 +00:00
|
|
|
name = "tinyvec_macros"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.1.1"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2020-11-24 20:30:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tokio"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "1.35.1"
|
2020-11-24 20:30:06 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "c89b4efa943be685f629b149f53829423f8f5531ea21249408e8e2f8671ec104"
|
2020-11-24 20:30:06 +00:00
|
|
|
dependencies = [
|
2023-06-30 13:18:58 +00:00
|
|
|
"backtrace",
|
2021-02-12 21:34:41 +00:00
|
|
|
"bytes",
|
2021-01-06 23:10:58 +00:00
|
|
|
"libc",
|
2021-02-12 21:34:41 +00:00
|
|
|
"mio",
|
2021-01-06 23:10:58 +00:00
|
|
|
"num_cpus",
|
2022-08-11 12:13:37 +00:00
|
|
|
"parking_lot",
|
2021-02-12 21:34:41 +00:00
|
|
|
"pin-project-lite",
|
2021-01-06 23:10:58 +00:00
|
|
|
"signal-hook-registry",
|
2023-12-02 12:15:40 +00:00
|
|
|
"socket2 0.5.5",
|
2021-01-06 23:10:58 +00:00
|
|
|
"tokio-macros",
|
2023-05-05 14:02:39 +00:00
|
|
|
"windows-sys 0.48.0",
|
2020-11-24 20:30:06 +00:00
|
|
|
]
|
|
|
|
|
|
2023-04-17 21:14:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tokio-io-timeout"
|
|
|
|
|
version = "1.2.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "30b74022ada614a1b4834de765f9bb43877f910cc8ce4be40e89042c9223a8bf"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
"tokio",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-11 14:13:10 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tokio-macros"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "2.2.0"
|
2020-08-11 14:13:10 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "5b8a1e28f2deaa14e508979454cb3a223b10b938b45af148bc0986de36f1923b"
|
2020-08-11 14:13:10 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2020-08-11 14:13:10 +00:00
|
|
|
]
|
|
|
|
|
|
2021-01-06 23:10:58 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tokio-native-tls"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.3.1"
|
2021-01-06 23:10:58 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
|
2021-01-06 23:10:58 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"native-tls",
|
2021-02-12 21:34:41 +00:00
|
|
|
"tokio",
|
2021-01-06 23:10:58 +00:00
|
|
|
]
|
|
|
|
|
|
2023-05-01 13:16:04 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tokio-rustls"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.24.1"
|
2023-05-01 13:16:04 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
|
2023-05-01 13:16:04 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"rustls",
|
|
|
|
|
"tokio",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-23 21:22:48 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tokio-socks"
|
2021-02-12 21:34:41 +00:00
|
|
|
version = "0.5.1"
|
2020-08-23 21:22:48 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-02-12 21:34:41 +00:00
|
|
|
checksum = "51165dfa029d2a65969413a6cc96f354b86b464498702f174a4efa13608fd8c0"
|
2020-08-23 21:22:48 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"either",
|
2021-02-12 21:34:41 +00:00
|
|
|
"futures-util",
|
2020-08-23 21:22:48 +00:00
|
|
|
"thiserror",
|
2021-02-12 21:34:41 +00:00
|
|
|
"tokio",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2021-12-01 17:25:11 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tokio-stream"
|
2023-04-26 12:58:17 +00:00
|
|
|
version = "0.1.14"
|
2021-12-01 17:25:11 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-26 12:58:17 +00:00
|
|
|
checksum = "397c988d37662c7dda6d2208364a706264bf3d6138b11d436cbac0ad38832842"
|
2021-12-01 17:25:11 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"futures-core",
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
"tokio",
|
|
|
|
|
]
|
|
|
|
|
|
2022-05-30 21:02:18 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tokio-util"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.7.10"
|
2022-05-30 21:02:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "5419f34732d9eb6ee4c3578b7989078579b7f039cbbb9ca2c4da015749371e15"
|
2022-05-30 21:02:18 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"bytes",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-sink",
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
"tokio",
|
|
|
|
|
"tracing",
|
|
|
|
|
]
|
|
|
|
|
|
2020-10-21 00:10:25 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "toml"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.8.8"
|
2020-10-21 00:10:25 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "a1a195ec8c9da26928f773888e0742ca3ca1040c6cd859c919c9f59c1954ab35"
|
2020-10-21 00:10:25 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"serde",
|
2023-01-30 14:12:34 +00:00
|
|
|
"serde_spanned",
|
|
|
|
|
"toml_datetime",
|
|
|
|
|
"toml_edit",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "toml_datetime"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.6.5"
|
2023-01-30 14:12:34 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1"
|
2023-01-30 14:12:34 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"serde",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "toml_edit"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.21.0"
|
2023-01-30 14:12:34 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "d34d383cd00a163b4a5b85053df514d45bc330f6de7737edfe0a93311d1eaa03"
|
2023-01-30 14:12:34 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"indexmap 2.1.0",
|
2023-01-30 14:12:34 +00:00
|
|
|
"serde",
|
|
|
|
|
"serde_spanned",
|
|
|
|
|
"toml_datetime",
|
2023-03-14 12:59:18 +00:00
|
|
|
"winnow",
|
2020-10-21 00:10:25 +00:00
|
|
|
]
|
|
|
|
|
|
2023-04-17 21:14:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tower"
|
|
|
|
|
version = "0.4.13"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-util",
|
|
|
|
|
"pin-project",
|
|
|
|
|
"pin-project-lite",
|
|
|
|
|
"tokio",
|
|
|
|
|
"tokio-util",
|
|
|
|
|
"tower-layer",
|
|
|
|
|
"tower-service",
|
|
|
|
|
"tracing",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "tower-http"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.4.4"
|
2023-04-17 21:14:24 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140"
|
2023-04-17 21:14:24 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"bitflags 2.4.1",
|
2023-04-17 21:14:24 +00:00
|
|
|
"bytes",
|
|
|
|
|
"futures-core",
|
|
|
|
|
"futures-util",
|
2023-12-02 12:15:40 +00:00
|
|
|
"http 0.2.11",
|
2024-01-06 11:27:57 +00:00
|
|
|
"http-body 0.4.6",
|
2023-04-17 21:14:24 +00:00
|
|
|
"http-range-header",
|
2023-12-02 12:15:40 +00:00
|
|
|
"iri-string",
|
2023-04-17 21:14:24 +00:00
|
|
|
"pin-project-lite",
|
2023-12-02 12:15:40 +00:00
|
|
|
"tower",
|
2023-04-17 21:14:24 +00:00
|
|
|
"tower-layer",
|
|
|
|
|
"tower-service",
|
|
|
|
|
"tracing",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "tower-layer"
|
|
|
|
|
version = "0.3.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tower-service"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.3.2"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2020-08-18 22:10:59 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tracing"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.1.40"
|
2020-08-18 22:10:59 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
|
2020-08-18 22:10:59 +00:00
|
|
|
dependencies = [
|
2023-04-17 21:14:24 +00:00
|
|
|
"log",
|
2021-02-12 21:34:41 +00:00
|
|
|
"pin-project-lite",
|
2022-11-17 12:07:09 +00:00
|
|
|
"tracing-attributes",
|
2020-08-18 22:10:59 +00:00
|
|
|
"tracing-core",
|
|
|
|
|
]
|
|
|
|
|
|
2022-11-17 12:07:09 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tracing-attributes"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.1.27"
|
2022-11-17 12:07:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
|
2022-11-17 12:07:09 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2022-11-17 12:07:09 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-18 22:10:59 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tracing-core"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.1.32"
|
2020-08-18 22:10:59 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
|
2020-08-18 22:10:59 +00:00
|
|
|
dependencies = [
|
2022-07-04 12:26:40 +00:00
|
|
|
"once_cell",
|
2020-08-18 22:10:59 +00:00
|
|
|
]
|
|
|
|
|
|
2021-10-25 22:56:39 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "tracing-subscriber"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.3.18"
|
2021-10-25 22:56:39 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
|
2021-10-25 22:56:39 +00:00
|
|
|
dependencies = [
|
2021-10-28 01:15:44 +00:00
|
|
|
"matchers",
|
2022-07-04 12:26:40 +00:00
|
|
|
"once_cell",
|
2021-09-12 16:10:23 +00:00
|
|
|
"regex",
|
|
|
|
|
"sharded-slab",
|
|
|
|
|
"thread_local",
|
|
|
|
|
"tracing",
|
|
|
|
|
"tracing-core",
|
|
|
|
|
]
|
|
|
|
|
|
2022-06-15 21:52:30 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "trust-dns-proto"
|
|
|
|
|
version = "0.21.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9c31f240f59877c3d4bb3b3ea0ec5a6a0cff07323580ff8c7a605cd7d08b255d"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"async-trait",
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"data-encoding",
|
2022-11-17 12:07:09 +00:00
|
|
|
"enum-as-inner 0.4.0",
|
2021-02-12 21:34:41 +00:00
|
|
|
"futures-channel",
|
|
|
|
|
"futures-io",
|
|
|
|
|
"futures-util",
|
2023-03-24 12:59:36 +00:00
|
|
|
"idna 0.2.3",
|
2021-02-12 21:34:41 +00:00
|
|
|
"ipnet",
|
2020-08-23 21:22:48 +00:00
|
|
|
"lazy_static",
|
|
|
|
|
"log",
|
2022-03-03 13:14:41 +00:00
|
|
|
"rand 0.8.5",
|
2020-08-23 21:22:48 +00:00
|
|
|
"smallvec",
|
|
|
|
|
"thiserror",
|
2021-03-28 15:20:03 +00:00
|
|
|
"tinyvec",
|
2021-02-12 21:34:41 +00:00
|
|
|
"tokio",
|
2020-08-23 21:22:48 +00:00
|
|
|
"url",
|
|
|
|
|
]
|
|
|
|
|
|
2022-11-17 12:07:09 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "trust-dns-proto"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.23.2"
|
2022-11-17 12:07:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "3119112651c157f4488931a01e586aa459736e9d6046d3bd9105ffb69352d374"
|
2022-11-17 12:07:09 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"async-trait",
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"data-encoding",
|
2023-12-02 12:15:40 +00:00
|
|
|
"enum-as-inner 0.6.0",
|
2022-11-17 12:07:09 +00:00
|
|
|
"futures-channel",
|
|
|
|
|
"futures-io",
|
|
|
|
|
"futures-util",
|
2023-12-02 12:15:40 +00:00
|
|
|
"idna 0.4.0",
|
2022-11-17 12:07:09 +00:00
|
|
|
"ipnet",
|
2023-12-02 12:15:40 +00:00
|
|
|
"once_cell",
|
2022-11-17 12:07:09 +00:00
|
|
|
"rand 0.8.5",
|
|
|
|
|
"smallvec",
|
|
|
|
|
"thiserror",
|
|
|
|
|
"tinyvec",
|
|
|
|
|
"tokio",
|
|
|
|
|
"tracing",
|
|
|
|
|
"url",
|
|
|
|
|
]
|
|
|
|
|
|
2022-06-15 21:52:30 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "trust-dns-resolver"
|
|
|
|
|
version = "0.21.2"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "e4ba72c2ea84515690c9fcef4c6c660bb9df3036ed1051686de84605b74fd558"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"futures-util",
|
2022-08-11 12:13:37 +00:00
|
|
|
"ipconfig",
|
2022-06-15 21:52:30 +00:00
|
|
|
"lazy_static",
|
|
|
|
|
"log",
|
|
|
|
|
"lru-cache",
|
2022-08-11 12:13:37 +00:00
|
|
|
"parking_lot",
|
2022-06-15 21:52:30 +00:00
|
|
|
"resolv-conf",
|
|
|
|
|
"smallvec",
|
|
|
|
|
"thiserror",
|
2022-11-17 12:07:09 +00:00
|
|
|
"trust-dns-proto 0.21.2",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "trust-dns-resolver"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.23.2"
|
2022-11-17 12:07:09 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "10a3e6c3aff1718b3c73e395d1f35202ba2ffa847c6a62eea0db8fb4cfe30be6"
|
2022-11-17 12:07:09 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"futures-util",
|
|
|
|
|
"ipconfig",
|
|
|
|
|
"lru-cache",
|
2023-12-02 12:15:40 +00:00
|
|
|
"once_cell",
|
2022-11-17 12:07:09 +00:00
|
|
|
"parking_lot",
|
2023-12-02 12:15:40 +00:00
|
|
|
"rand 0.8.5",
|
2022-11-17 12:07:09 +00:00
|
|
|
"resolv-conf",
|
|
|
|
|
"smallvec",
|
|
|
|
|
"thiserror",
|
2022-01-14 14:25:51 +00:00
|
|
|
"tokio",
|
2022-11-17 12:07:09 +00:00
|
|
|
"tracing",
|
2023-12-02 12:15:40 +00:00
|
|
|
"trust-dns-proto 0.23.2",
|
2020-08-23 21:22:48 +00:00
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "try-lock"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.5"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2021-04-16 18:25:22 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "typed-builder"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.18.0"
|
2023-07-07 09:43:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "e47c0496149861b7c95198088cbf36645016b1a0734cf350c50e2a38e070f38a"
|
2023-07-07 09:43:31 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"typed-builder-macro",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "typed-builder-macro"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.18.0"
|
2021-04-16 18:25:22 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "982ee4197351b5c9782847ef5ec1fdcaf50503fb19d68f9771adae314e72b492"
|
2021-04-16 18:25:22 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2021-04-16 18:25:22 +00:00
|
|
|
]
|
|
|
|
|
|
2020-10-16 13:29:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "typenum"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.17.0"
|
2020-10-16 13:29:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
|
2020-10-16 13:29:13 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "unicase"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "2.7.0"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "f7d2d4dafb69621809a81864c9c1b864479e1235c0dd4e199924b9742439ed89"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"version_check",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "unicode-bidi"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.3.14"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "6f2528f27a9eb2b21e69c95319b30bd0efd85d09c379741b0f78ea1d86be2416"
|
2022-05-30 21:02:18 +00:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "unicode-ident"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.0.12"
|
2022-05-30 21:02:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "unicode-normalization"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.1.22"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"tinyvec",
|
|
|
|
|
]
|
|
|
|
|
|
2020-10-10 04:31:28 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "unicode-width"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.1.11"
|
2020-10-10 04:31:28 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
|
2020-10-10 04:31:28 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "unicode-xid"
|
2022-11-05 23:21:00 +00:00
|
|
|
version = "0.2.4"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-05 23:21:00 +00:00
|
|
|
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2023-10-02 14:13:07 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "untrusted"
|
|
|
|
|
version = "0.9.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "url"
|
2024-01-05 14:46:43 +00:00
|
|
|
version = "2.5.0"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-05 14:46:43 +00:00
|
|
|
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2020-11-29 20:41:55 +00:00
|
|
|
"form_urlencoded",
|
2024-01-05 14:46:43 +00:00
|
|
|
"idna 0.5.0",
|
2020-08-04 22:32:37 +00:00
|
|
|
"percent-encoding",
|
2020-10-16 13:29:13 +00:00
|
|
|
"serde",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
|
|
|
|
|
2021-01-08 15:41:13 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "utf-8"
|
2021-11-03 22:45:42 +00:00
|
|
|
version = "0.7.6"
|
2021-01-08 15:41:13 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-03 22:45:42 +00:00
|
|
|
checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9"
|
2021-01-08 15:41:13 +00:00
|
|
|
|
2023-06-26 10:06:24 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "utf8parse"
|
|
|
|
|
version = "0.2.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "uuid"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "1.6.1"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "5e395fcf16a7a3d8127ec99782007af141946b4795001f876d54fb0d55978560"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"getrandom 0.2.11",
|
2021-02-10 10:58:04 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "value-bag"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.4.3"
|
2021-02-10 10:58:04 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "62ce5bb364b23e66b528d03168df78b38c0f7b6fe17386928f29d5ab2e7cb2f7"
|
2020-08-21 22:36:03 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "vcpkg"
|
2021-11-03 22:45:42 +00:00
|
|
|
version = "0.2.15"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-03 22:45:42 +00:00
|
|
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
2020-08-21 22:36:03 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "version_check"
|
2022-01-10 21:35:37 +00:00
|
|
|
version = "0.9.4"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-10 21:35:37 +00:00
|
|
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2020-08-04 22:32:37 +00:00
|
|
|
|
2020-10-17 08:01:06 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "wait-timeout"
|
|
|
|
|
version = "0.2.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"libc",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "waker-fn"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.1.1"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "f3c4517f54858c779bbcbf228f4fca63d121bf85fbecb2dc578cdf4a39395690"
|
2020-08-21 22:36:03 +00:00
|
|
|
|
2021-12-16 17:45:52 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "walkdir"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "2.4.0"
|
2021-12-16 17:45:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
|
2021-12-16 17:45:52 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"same-file",
|
|
|
|
|
"winapi-util",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "want"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.3.1"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"try-lock",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wasi"
|
|
|
|
|
version = "0.9.0+wasi-snapshot-preview1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519"
|
|
|
|
|
|
2022-04-25 17:19:36 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "wasi"
|
|
|
|
|
version = "0.11.0+wasi-snapshot-preview1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "wasm-bindgen"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.89"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2020-08-04 22:32:37 +00:00
|
|
|
"wasm-bindgen-macro",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wasm-bindgen-backend"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.89"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"bumpalo",
|
|
|
|
|
"log",
|
2022-11-05 23:21:00 +00:00
|
|
|
"once_cell",
|
2020-08-04 22:32:37 +00:00
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2020-08-04 22:32:37 +00:00
|
|
|
"wasm-bindgen-shared",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wasm-bindgen-futures"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.4.39"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "ac36a15a220124ac510204aec1c3e5db8a22ab06fd6706d881dc6149f8ed9a12"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
2022-02-18 16:09:30 +00:00
|
|
|
"cfg-if",
|
2020-08-04 22:32:37 +00:00
|
|
|
"js-sys",
|
|
|
|
|
"wasm-bindgen",
|
|
|
|
|
"web-sys",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wasm-bindgen-macro"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.89"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"quote",
|
|
|
|
|
"wasm-bindgen-macro-support",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wasm-bindgen-macro-support"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.89"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
2024-01-06 11:27:57 +00:00
|
|
|
"syn 2.0.48",
|
2020-08-04 22:32:37 +00:00
|
|
|
"wasm-bindgen-backend",
|
|
|
|
|
"wasm-bindgen-shared",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "wasm-bindgen-shared"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.2.89"
|
2020-11-30 14:44:31 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f"
|
2020-11-30 14:44:31 +00:00
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "web-sys"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.3.66"
|
2020-08-04 22:32:37 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "50c24a44ec86bb68fbecd1b3efed7e85ea5621b39b35ef2766b66cd984f8010f"
|
2020-08-04 22:32:37 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"js-sys",
|
|
|
|
|
"wasm-bindgen",
|
|
|
|
|
]
|
|
|
|
|
|
2022-06-15 21:52:30 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "widestring"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "1.0.2"
|
2022-06-15 21:52:30 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "653f141f39ec16bba3c5abe400a0c60da7468261cc2cbf36805022876bc721a8"
|
2022-06-15 21:52:30 +00:00
|
|
|
|
2020-08-04 22:32:37 +00: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-12-16 17:45:52 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "winapi-util"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.1.6"
|
2021-12-16 17:45:52 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "f29e6f9198ba0d26b4c9f07dbe6f9ed633e1f3d5b8b414090084349e46a52596"
|
2021-12-16 17:45:52 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"winapi",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00: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-02-07 22:03:26 +00:00
|
|
|
[[package]]
|
2024-01-06 11:27:57 +00:00
|
|
|
name = "windows-core"
|
|
|
|
|
version = "0.52.0"
|
2022-02-07 22:03:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
|
2022-02-07 22:03:26 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"windows-targets 0.52.0",
|
2023-03-02 16:06:33 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "windows-sys"
|
|
|
|
|
version = "0.45.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
|
|
|
dependencies = [
|
2023-06-26 10:06:24 +00:00
|
|
|
"windows-targets 0.42.2",
|
2023-05-05 14:02:39 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "windows-sys"
|
|
|
|
|
version = "0.48.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"windows-targets 0.48.5",
|
2023-03-02 16:06:33 +00:00
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-sys"
|
|
|
|
|
version = "0.52.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows-targets 0.52.0",
|
|
|
|
|
]
|
|
|
|
|
|
2023-03-02 16:06:33 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-targets"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.42.2"
|
2023-03-02 16:06:33 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071"
|
2023-03-02 16:06:33 +00:00
|
|
|
dependencies = [
|
2023-06-26 10:06:24 +00:00
|
|
|
"windows_aarch64_gnullvm 0.42.2",
|
|
|
|
|
"windows_aarch64_msvc 0.42.2",
|
|
|
|
|
"windows_i686_gnu 0.42.2",
|
|
|
|
|
"windows_i686_msvc 0.42.2",
|
|
|
|
|
"windows_x86_64_gnu 0.42.2",
|
|
|
|
|
"windows_x86_64_gnullvm 0.42.2",
|
|
|
|
|
"windows_x86_64_msvc 0.42.2",
|
2022-11-05 23:21:00 +00:00
|
|
|
]
|
|
|
|
|
|
2023-05-05 14:02:39 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-targets"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.48.5"
|
2023-05-05 14:02:39 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
|
2023-05-05 14:02:39 +00:00
|
|
|
dependencies = [
|
2024-01-06 11:27:57 +00:00
|
|
|
"windows_aarch64_gnullvm 0.48.5",
|
|
|
|
|
"windows_aarch64_msvc 0.48.5",
|
|
|
|
|
"windows_i686_gnu 0.48.5",
|
|
|
|
|
"windows_i686_msvc 0.48.5",
|
|
|
|
|
"windows_x86_64_gnu 0.48.5",
|
|
|
|
|
"windows_x86_64_gnullvm 0.48.5",
|
|
|
|
|
"windows_x86_64_msvc 0.48.5",
|
2023-05-05 14:02:39 +00:00
|
|
|
]
|
|
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows-targets"
|
|
|
|
|
version = "0.52.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "8a18201040b24831fbb9e4eb208f8892e1f50a37feb53cc7ff887feb8f50e7cd"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"windows_aarch64_gnullvm 0.52.0",
|
|
|
|
|
"windows_aarch64_msvc 0.52.0",
|
|
|
|
|
"windows_i686_gnu 0.52.0",
|
|
|
|
|
"windows_i686_msvc 0.52.0",
|
|
|
|
|
"windows_x86_64_gnu 0.52.0",
|
|
|
|
|
"windows_x86_64_gnullvm 0.52.0",
|
|
|
|
|
"windows_x86_64_msvc 0.52.0",
|
|
|
|
|
]
|
|
|
|
|
|
2022-11-05 23:21:00 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_aarch64_gnullvm"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.42.2"
|
2022-11-05 23:21:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8"
|
2022-11-05 23:21:00 +00:00
|
|
|
|
2023-05-05 14:02:39 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_aarch64_gnullvm"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.48.5"
|
2023-05-05 14:02:39 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
|
2023-05-05 14:02:39 +00:00
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_aarch64_gnullvm"
|
|
|
|
|
version = "0.52.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "cb7764e35d4db8a7921e09562a0304bf2f93e0a51bfccee0bd0bb0b666b015ea"
|
|
|
|
|
|
2022-02-07 22:03:26 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_aarch64_msvc"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.42.2"
|
2022-11-05 23:21:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43"
|
2022-11-05 23:21:00 +00:00
|
|
|
|
2023-05-05 14:02:39 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_aarch64_msvc"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.48.5"
|
2023-05-05 14:02:39 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
|
2023-05-05 14:02:39 +00:00
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_aarch64_msvc"
|
|
|
|
|
version = "0.52.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "bbaa0368d4f1d2aaefc55b6fcfee13f41544ddf36801e793edbbfd7d7df075ef"
|
|
|
|
|
|
2022-02-07 22:03:26 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_gnu"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.42.2"
|
2022-02-07 22:03:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f"
|
2022-11-05 23:21:00 +00:00
|
|
|
|
2023-05-05 14:02:39 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_gnu"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.48.5"
|
2023-05-05 14:02:39 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
|
2023-05-05 14:02:39 +00:00
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_gnu"
|
|
|
|
|
version = "0.52.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "a28637cb1fa3560a16915793afb20081aba2c92ee8af57b4d5f28e4b3e7df313"
|
|
|
|
|
|
2022-02-07 22:03:26 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_msvc"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.42.2"
|
2022-11-05 23:21:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060"
|
2022-11-05 23:21:00 +00:00
|
|
|
|
2023-05-05 14:02:39 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_msvc"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.48.5"
|
2023-05-05 14:02:39 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
|
2023-05-05 14:02:39 +00:00
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_i686_msvc"
|
|
|
|
|
version = "0.52.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "ffe5e8e31046ce6230cc7215707b816e339ff4d4d67c65dffa206fd0f7aa7b9a"
|
|
|
|
|
|
2022-02-07 22:03:26 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_gnu"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.42.2"
|
2022-02-07 22:03:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36"
|
2022-11-05 23:21:00 +00:00
|
|
|
|
2023-05-05 14:02:39 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_gnu"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.48.5"
|
2023-05-05 14:02:39 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
|
2023-05-05 14:02:39 +00:00
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_gnu"
|
|
|
|
|
version = "0.52.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "3d6fa32db2bc4a2f5abeacf2b69f7992cd09dca97498da74a151a3132c26befd"
|
|
|
|
|
|
2022-11-05 23:21:00 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_gnullvm"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.42.2"
|
2022-11-05 23:21:00 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3"
|
2022-11-05 23:21:00 +00:00
|
|
|
|
2023-05-05 14:02:39 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_gnullvm"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.48.5"
|
2023-05-05 14:02:39 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
|
2023-05-05 14:02:39 +00:00
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_gnullvm"
|
|
|
|
|
version = "0.52.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "1a657e1e9d3f514745a572a6846d3c7aa7dbe1658c056ed9c3344c4109a6949e"
|
|
|
|
|
|
2022-02-07 22:03:26 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_msvc"
|
2023-06-26 10:06:24 +00:00
|
|
|
version = "0.42.2"
|
2022-02-07 22:03:26 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-26 10:06:24 +00:00
|
|
|
checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0"
|
2022-11-05 23:21:00 +00:00
|
|
|
|
2023-05-05 14:02:39 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_msvc"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.48.5"
|
2023-05-05 14:02:39 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
|
2023-05-05 14:02:39 +00:00
|
|
|
|
2023-12-02 12:15:40 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "windows_x86_64_msvc"
|
|
|
|
|
version = "0.52.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "dff9641d1cd4be8d1a070daf9e3773c5f67e78b4d9d42263020c057706765c04"
|
|
|
|
|
|
2023-03-14 12:59:18 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "winnow"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "0.5.32"
|
2023-03-14 12:59:18 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "8434aeec7b290e8da5c3f0d628cb0eac6cabcb31d14bb74f779a08109a5914d6"
|
2023-03-14 12:59:18 +00:00
|
|
|
dependencies = [
|
|
|
|
|
"memchr",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-04 22:32:37 +00:00
|
|
|
[[package]]
|
2023-06-26 10:06:24 +00:00
|
|
|
name = "winreg"
|
|
|
|
|
version = "0.50.0"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"cfg-if",
|
|
|
|
|
"windows-sys 0.48.0",
|
|
|
|
|
]
|
|
|
|
|
|
2020-08-21 22:36:03 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "wiremock"
|
2023-12-02 12:15:40 +00:00
|
|
|
version = "0.5.22"
|
2020-08-21 22:36:03 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-12-02 12:15:40 +00:00
|
|
|
checksum = "13a3a53eaf34f390dd30d7b1b078287dd05df2aa2e21a589ccb80f5c7253c2e9"
|
2020-08-21 22:36:03 +00:00
|
|
|
dependencies = [
|
2022-01-10 17:15:58 +00:00
|
|
|
"assert-json-diff",
|
2021-01-06 23:10:58 +00:00
|
|
|
"async-trait",
|
2024-01-06 11:27:57 +00:00
|
|
|
"base64 0.21.5",
|
2021-12-01 17:25:11 +00:00
|
|
|
"deadpool",
|
2021-01-06 23:10:58 +00:00
|
|
|
"futures",
|
2020-08-21 22:36:03 +00:00
|
|
|
"futures-timer",
|
|
|
|
|
"http-types",
|
2024-01-06 11:27:57 +00:00
|
|
|
"hyper 0.14.28",
|
2020-08-21 22:36:03 +00:00
|
|
|
"log",
|
2021-01-06 23:10:58 +00:00
|
|
|
"once_cell",
|
2020-08-21 22:36:03 +00:00
|
|
|
"regex",
|
|
|
|
|
"serde",
|
|
|
|
|
"serde_json",
|
2021-02-12 21:34:41 +00:00
|
|
|
"tokio",
|
2020-08-04 22:32:37 +00:00
|
|
|
]
|
2022-02-13 12:53:46 +00:00
|
|
|
|
2022-11-13 20:10:32 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "yansi"
|
|
|
|
|
version = "0.5.1"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
|
|
|
|
|
|
2024-01-06 11:27:57 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "zerocopy"
|
|
|
|
|
version = "0.7.32"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "74d4d3961e53fa4c9a25a8637fc2bfaf2595b3d3ae34875568a5cf64787716be"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"zerocopy-derive",
|
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
|
name = "zerocopy-derive"
|
|
|
|
|
version = "0.7.32"
|
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
|
checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6"
|
|
|
|
|
dependencies = [
|
|
|
|
|
"proc-macro2",
|
|
|
|
|
"quote",
|
|
|
|
|
"syn 2.0.48",
|
|
|
|
|
]
|
|
|
|
|
|
2022-02-13 12:53:46 +00:00
|
|
|
[[package]]
|
|
|
|
|
name = "zeroize"
|
2024-01-06 11:27:57 +00:00
|
|
|
version = "1.7.0"
|
2022-02-13 12:53:46 +00:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-01-06 11:27:57 +00:00
|
|
|
checksum = "525b4ec142c6b68a2d10f01f7bbf6755599ca3f81ea53b8431b7dd348f5fdb2d"
|