2020-03-20 22:13:32 +03:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
2021-12-06 19:22:21 +03:00
|
|
|
version = 3
|
2020-06-11 04:40:05 +03:00
|
|
|
|
2023-05-25 08:35:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "addr2line"
|
|
|
|
version = "0.19.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a76fd60b23679b7d19bd066031410fb7e458ccc5e958eb5c325888ce4baedc97"
|
|
|
|
dependencies = [
|
|
|
|
"gimli",
|
|
|
|
]
|
|
|
|
|
2020-12-08 08:07:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "adler"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "1.0.2"
|
2020-12-08 08:07:09 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
|
2020-12-08 08:07:09 +03:00
|
|
|
|
2016-05-12 22:03:37 +03:00
|
|
|
[[package]]
|
|
|
|
name = "aho-corasick"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.7.20"
|
2016-05-12 22:03:37 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "cc936419f96fa211c1b9166887b38e5e40b19958e5b895be7c1f93adec7071ac"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-09 11:44:58 +03:00
|
|
|
"memchr",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-05-12 22:03:37 +03:00
|
|
|
|
2023-06-12 21:00:19 +03:00
|
|
|
[[package]]
|
|
|
|
name = "android-tzdata"
|
|
|
|
version = "0.1.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
|
|
|
|
|
2022-08-10 15:58:24 +03:00
|
|
|
[[package]]
|
|
|
|
name = "android_system_properties"
|
2022-08-30 23:46:02 +03:00
|
|
|
version = "0.1.5"
|
2022-08-10 15:58:24 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-08-30 23:46:02 +03:00
|
|
|
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
|
2022-08-10 15:58:24 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2023-03-27 21:44:58 +03:00
|
|
|
[[package]]
|
|
|
|
name = "anstyle"
|
|
|
|
version = "0.3.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "23ea9e81bd02e310c216d080f6223c179012256e5151c41db88d12c88a1684d2"
|
|
|
|
|
Change error handling from `error-chain` to `anyhow`.
Because `anyhow` is what seems to be the most common error library for
applications these days.
- The global `Result` type is now `anyhow::Result`.
- In errors.rs, there's no need for any boilerplate to wrap all the foreign
errors seen: `hyper::Error`, `io:Error`, etc.
- The internal errors that we care about are now separate types, rather
than within an enum, because that works better when we need to check for them
by downcasting an `anyhow::Error`. And it's nice to write
`Err(ProcessError(output))` rather than
`Err(ErrorKind::ProcessError(output))`.
- The `Which` error was unused and is removed.
- The most common change is that `.chain_err()` is changed to
`.context`/`.with_context()`.
- `anyhow!` is used where necessary, mostly to promote a string to an
`anyhow::Error`.
- Errors within futures: `FutureChainErr`/`.chain_err()` is changed to
`FutureContext`/`fcontext`/`fwith_context`. The `f` prefix is because I found
it helpful to distinguish these cases from the simple error cases.
- `BuilderIncoming`, `SchedulerIncoming`, `ServerIncoming` no longer have an
`Error` associated type, we just use `anyhow::Error` uniformly.
- `e.display_chain()` changes to `format!("{:?}")`, because they both print the
full cause chain, and the backtrace (if present).
- A few places where the old code was doing something weird or more
complicated than seemed necessary, I generally tried to replace it with
something simpler and more typical. Two places used `with_boxed_chain()`,
which doesn't have an equivalent in `anyhow`, so I did my best to do
something reasonable.
- In `src/server.rs` we now import `std::task::Context` as `TaskContext` to
avoid overshadowing the `anyhow::Context` trait :(
2020-06-02 10:22:31 +03:00
|
|
|
[[package]]
|
|
|
|
name = "anyhow"
|
2023-03-18 18:10:26 +03:00
|
|
|
version = "1.0.70"
|
Change error handling from `error-chain` to `anyhow`.
Because `anyhow` is what seems to be the most common error library for
applications these days.
- The global `Result` type is now `anyhow::Result`.
- In errors.rs, there's no need for any boilerplate to wrap all the foreign
errors seen: `hyper::Error`, `io:Error`, etc.
- The internal errors that we care about are now separate types, rather
than within an enum, because that works better when we need to check for them
by downcasting an `anyhow::Error`. And it's nice to write
`Err(ProcessError(output))` rather than
`Err(ErrorKind::ProcessError(output))`.
- The `Which` error was unused and is removed.
- The most common change is that `.chain_err()` is changed to
`.context`/`.with_context()`.
- `anyhow!` is used where necessary, mostly to promote a string to an
`anyhow::Error`.
- Errors within futures: `FutureChainErr`/`.chain_err()` is changed to
`FutureContext`/`fcontext`/`fwith_context`. The `f` prefix is because I found
it helpful to distinguish these cases from the simple error cases.
- `BuilderIncoming`, `SchedulerIncoming`, `ServerIncoming` no longer have an
`Error` associated type, we just use `anyhow::Error` uniformly.
- `e.display_chain()` changes to `format!("{:?}")`, because they both print the
full cause chain, and the backtrace (if present).
- A few places where the old code was doing something weird or more
complicated than seemed necessary, I generally tried to replace it with
something simpler and more typical. Two places used `with_boxed_chain()`,
which doesn't have an equivalent in `anyhow`, so I did my best to do
something reasonable.
- In `src/server.rs` we now import `std::task::Context` as `TaskContext` to
avoid overshadowing the `anyhow::Context` trait :(
2020-06-02 10:22:31 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-18 18:10:26 +03:00
|
|
|
checksum = "7de8ce5e0f9f8d88245311066a578d72b7af3e7088f32783804676302df237e4"
|
2023-05-25 08:35:00 +03:00
|
|
|
dependencies = [
|
|
|
|
"backtrace",
|
|
|
|
]
|
Change error handling from `error-chain` to `anyhow`.
Because `anyhow` is what seems to be the most common error library for
applications these days.
- The global `Result` type is now `anyhow::Result`.
- In errors.rs, there's no need for any boilerplate to wrap all the foreign
errors seen: `hyper::Error`, `io:Error`, etc.
- The internal errors that we care about are now separate types, rather
than within an enum, because that works better when we need to check for them
by downcasting an `anyhow::Error`. And it's nice to write
`Err(ProcessError(output))` rather than
`Err(ErrorKind::ProcessError(output))`.
- The `Which` error was unused and is removed.
- The most common change is that `.chain_err()` is changed to
`.context`/`.with_context()`.
- `anyhow!` is used where necessary, mostly to promote a string to an
`anyhow::Error`.
- Errors within futures: `FutureChainErr`/`.chain_err()` is changed to
`FutureContext`/`fcontext`/`fwith_context`. The `f` prefix is because I found
it helpful to distinguish these cases from the simple error cases.
- `BuilderIncoming`, `SchedulerIncoming`, `ServerIncoming` no longer have an
`Error` associated type, we just use `anyhow::Error` uniformly.
- `e.display_chain()` changes to `format!("{:?}")`, because they both print the
full cause chain, and the backtrace (if present).
- A few places where the old code was doing something weird or more
complicated than seemed necessary, I generally tried to replace it with
something simpler and more typical. Two places used `with_boxed_chain()`,
which doesn't have an equivalent in `anyhow`, so I did my best to do
something reasonable.
- In `src/server.rs` we now import `std::task::Context` as `TaskContext` to
avoid overshadowing the `anyhow::Context` trait :(
2020-06-02 10:22:31 +03:00
|
|
|
|
2018-09-04 22:36:28 +03:00
|
|
|
[[package]]
|
|
|
|
name = "ar"
|
2022-02-12 17:48:30 +03:00
|
|
|
version = "0.9.0"
|
2018-09-04 22:36:28 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 17:48:30 +03:00
|
|
|
checksum = "d67af77d68a931ecd5cbd8a3b5987d63a1d1d1278f7f6a60ae33db485cdebb69"
|
2018-09-04 22:36:28 +03:00
|
|
|
|
2022-12-27 06:36:39 +03:00
|
|
|
[[package]]
|
|
|
|
name = "arc-swap"
|
|
|
|
version = "1.5.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "983cd8b9d4b02a6dc6ffa557262eb5858a27a0038ffffe21a0f133eaa819a164"
|
|
|
|
|
2019-12-10 00:17:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "arrayref"
|
2020-04-28 07:55:50 +03:00
|
|
|
version = "0.3.6"
|
2018-09-27 17:30:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-04-28 07:55:50 +03:00
|
|
|
checksum = "a4c527152e37cf757a3f78aae5a06fbeefdb07ccc535c980a3208ee3060dd544"
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2018-08-27 17:23:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "arrayvec"
|
2020-12-08 08:07:09 +03:00
|
|
|
version = "0.5.2"
|
2018-08-27 17:23:32 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-12-08 08:07:09 +03:00
|
|
|
checksum = "23b62fc65de8e4e7f52534fb52b0f3ed04746ae267519eef2a83941e8085068b"
|
2018-08-27 17:23:32 +03:00
|
|
|
|
2022-05-05 17:47:19 +03:00
|
|
|
[[package]]
|
|
|
|
name = "arrayvec"
|
|
|
|
version = "0.7.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8da52d66c7071e2e3fa2a1e5c6d088fec47b593032b254f5e980de8ea54454d6"
|
|
|
|
|
2018-08-27 17:23:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "ascii"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.1.0"
|
2018-08-27 17:23:32 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "d92bec98840b8f03a5ff5413de5293bfcd8bf96467cf5452609f939ec6f5de16"
|
2018-08-27 17:23:32 +03:00
|
|
|
|
2017-10-25 21:09:27 +03:00
|
|
|
[[package]]
|
2018-07-26 22:52:50 +03:00
|
|
|
name = "assert_cmd"
|
2023-03-27 22:05:51 +03:00
|
|
|
version = "2.0.10"
|
2017-10-25 21:09:27 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-27 22:05:51 +03:00
|
|
|
checksum = "ec0b2340f55d9661d76793b2bfc2eb0e62689bd79d067a95707ea762afd5e9dd"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2023-03-27 22:05:51 +03:00
|
|
|
"anstyle",
|
2021-11-12 15:28:26 +03:00
|
|
|
"bstr",
|
update test harness crates
This patch looks like a routine crate version update, but it fixes
something very fundamentally wrong with the tests: `escargot`, to find
the `sccache` binary during tests, would actually run `cargo build` and
parse the output. There were all manner of hacks to try and build the
binary with the correct set of features, none of which were reliable,
and the hacks were not reliably present in all places, either.
When the hacks were not present, `escargot` would rebuild the entire
sccache crate, which was responsible for the `sccache_cargo` test taking
entirely too long. When the hacks failed utterly, perfectly fine
patches would mysteriously fail, as seen in #774.
We can get rid of `escargot` because `assert-cmd` has been updated to a)
not use `escargot` under the hood; and b) do something smarter to locate
the target binary. The upshot is fewer mysterious test failures and
significantly faster running tests.
2020-06-05 01:34:11 +03:00
|
|
|
"doc-comment",
|
2023-03-27 22:05:51 +03:00
|
|
|
"predicates",
|
2020-03-20 22:13:32 +03:00
|
|
|
"predicates-core",
|
|
|
|
"predicates-tree",
|
update test harness crates
This patch looks like a routine crate version update, but it fixes
something very fundamentally wrong with the tests: `escargot`, to find
the `sccache` binary during tests, would actually run `cargo build` and
parse the output. There were all manner of hacks to try and build the
binary with the correct set of features, none of which were reliable,
and the hacks were not reliably present in all places, either.
When the hacks were not present, `escargot` would rebuild the entire
sccache crate, which was responsible for the `sccache_cargo` test taking
entirely too long. When the hacks failed utterly, perfectly fine
patches would mysteriously fail, as seen in #774.
We can get rid of `escargot` because `assert-cmd` has been updated to a)
not use `escargot` under the hood; and b) do something smarter to locate
the target binary. The upshot is fewer mysterious test failures and
significantly faster running tests.
2020-06-05 01:34:11 +03:00
|
|
|
"wait-timeout",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2017-10-25 21:09:27 +03:00
|
|
|
|
2022-12-11 15:23:27 +03:00
|
|
|
[[package]]
|
|
|
|
name = "async-compat"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9b48b4ff0c2026db683dea961cd8ea874737f56cffca86fa84415eaddc51c00d"
|
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
|
|
|
"futures-io",
|
|
|
|
"once_cell",
|
|
|
|
"pin-project-lite",
|
|
|
|
"tokio",
|
|
|
|
]
|
|
|
|
|
2020-12-09 11:44:58 +03:00
|
|
|
[[package]]
|
|
|
|
name = "async-trait"
|
2023-04-10 21:02:57 +03:00
|
|
|
version = "0.1.68"
|
2020-12-09 11:44:58 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-10 21:02:57 +03:00
|
|
|
checksum = "b9ccdd8f2a161be9bd5c023df56f1b2a0bd1d83872ae53b71a84a12c9bf6e842"
|
2020-12-09 11:44:58 +03:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
2020-04-29 16:48:55 +03:00
|
|
|
"quote",
|
2023-04-10 21:02:57 +03:00
|
|
|
"syn 2.0.13",
|
2020-12-09 11:44:58 +03:00
|
|
|
]
|
|
|
|
|
2020-04-28 07:55:50 +03:00
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
2022-02-12 22:19:08 +03:00
|
|
|
version = "1.1.0"
|
2020-04-28 07:55:50 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 22:19:08 +03:00
|
|
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa"
|
2020-04-28 07:55:50 +03:00
|
|
|
|
2022-01-03 03:22:14 +03:00
|
|
|
[[package]]
|
2022-12-11 15:23:27 +03:00
|
|
|
name = "backon"
|
2023-02-14 11:48:41 +03:00
|
|
|
version = "0.4.0"
|
2022-01-03 03:22:14 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-14 11:48:41 +03:00
|
|
|
checksum = "f34fac4d7cdaefa2deded0eda2d5d59dbfd43370ff3f856209e72340ae84c294"
|
2022-01-03 03:22:14 +03:00
|
|
|
dependencies = [
|
2022-12-11 15:23:27 +03:00
|
|
|
"futures",
|
|
|
|
"pin-project",
|
2023-05-09 06:44:41 +03:00
|
|
|
"rand",
|
2022-01-03 03:22:14 +03:00
|
|
|
"tokio",
|
|
|
|
]
|
|
|
|
|
2023-05-25 08:35:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "backtrace"
|
|
|
|
version = "0.3.67"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "233d376d6d185f2a3093e58f283f60f880315b6c60075b01f36b3b85154564ca"
|
|
|
|
dependencies = [
|
|
|
|
"addr2line",
|
|
|
|
"cc",
|
|
|
|
"cfg-if 1.0.0",
|
|
|
|
"libc",
|
2023-05-30 10:59:07 +03:00
|
|
|
"miniz_oxide 0.6.2",
|
2023-05-25 08:35:00 +03:00
|
|
|
"object",
|
|
|
|
"rustc-demangle",
|
|
|
|
]
|
|
|
|
|
2022-01-03 03:22:14 +03:00
|
|
|
[[package]]
|
2022-12-11 15:23:27 +03:00
|
|
|
name = "base64"
|
|
|
|
version = "0.13.1"
|
2022-01-03 03:22:14 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-11 15:23:27 +03:00
|
|
|
checksum = "9e1b586273c5702936fe7b7d6896644d8be71e6314cfe09d3167c95f712589e8"
|
2022-01-03 03:22:14 +03:00
|
|
|
|
2023-01-12 23:41:38 +03:00
|
|
|
[[package]]
|
|
|
|
name = "base64"
|
|
|
|
version = "0.21.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a4a4ddaa51a5bc52a6948f74c06d20aaaddb71924eab79b8c97a8c556e942d6a"
|
|
|
|
|
2023-03-03 14:42:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "base64ct"
|
|
|
|
version = "1.6.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
|
|
|
|
|
2023-01-14 04:43:01 +03:00
|
|
|
[[package]]
|
|
|
|
name = "bb8"
|
|
|
|
version = "0.8.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1627eccf3aa91405435ba240be23513eeca466b5dc33866422672264de061582"
|
|
|
|
dependencies = [
|
|
|
|
"async-trait",
|
|
|
|
"futures-channel",
|
|
|
|
"futures-util",
|
|
|
|
"parking_lot",
|
|
|
|
"tokio",
|
|
|
|
]
|
|
|
|
|
2022-01-03 03:22:14 +03:00
|
|
|
[[package]]
|
2022-12-11 15:23:27 +03:00
|
|
|
name = "bincode"
|
|
|
|
version = "1.3.3"
|
2022-01-03 03:22:14 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-11 15:23:27 +03:00
|
|
|
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
2022-01-03 03:22:14 +03:00
|
|
|
dependencies = [
|
2022-12-11 15:23:27 +03:00
|
|
|
"serde",
|
2022-01-03 03:22:14 +03:00
|
|
|
]
|
|
|
|
|
2017-06-14 18:20:12 +03:00
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "1.3.2"
|
2019-11-11 00:25:05 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
2020-01-17 09:29:27 +03:00
|
|
|
|
2023-03-28 12:27:58 +03:00
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
|
|
|
version = "2.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "487f1e0fcbe47deb8b0574e646def1c903389d95241dd1bbcc6ce4a715dfc0c1"
|
|
|
|
|
2020-01-17 09:29:27 +03:00
|
|
|
[[package]]
|
|
|
|
name = "blake3"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.3.3"
|
2020-01-17 09:29:27 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "42ae2468a89544a466886840aa467a25b766499f4f04bf7d9fcd10ecee9fccef"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"arrayref",
|
2022-05-05 17:47:19 +03:00
|
|
|
"arrayvec 0.7.2",
|
2020-03-20 22:13:32 +03:00
|
|
|
"cc",
|
2022-05-05 17:47:19 +03:00
|
|
|
"cfg-if 1.0.0",
|
2020-03-20 22:13:32 +03:00
|
|
|
"constant_time_eq",
|
2022-05-05 17:47:19 +03:00
|
|
|
"digest",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2019-12-10 00:17:20 +03:00
|
|
|
|
2022-02-12 18:26:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "block-buffer"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.10.3"
|
2022-02-12 18:26:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "69cce20737498f97b993470a6e536b8523f0af7892a4f928cceb1ac5e52ebe7e"
|
2022-02-12 18:26:46 +03:00
|
|
|
dependencies = [
|
|
|
|
"generic-array",
|
|
|
|
]
|
|
|
|
|
2021-11-12 15:28:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "bstr"
|
2022-11-10 23:11:30 +03:00
|
|
|
version = "1.0.1"
|
2021-11-12 15:28:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-10 23:11:30 +03:00
|
|
|
checksum = "fca0852af221f458706eb0725c03e4ed6c46af9ac98e6a689d5e634215d594dd"
|
2021-11-12 15:28:26 +03:00
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
2022-11-10 23:11:30 +03:00
|
|
|
"once_cell",
|
2021-11-12 15:28:26 +03:00
|
|
|
"regex-automata",
|
2022-11-10 23:11:30 +03:00
|
|
|
"serde",
|
2021-11-12 15:28:26 +03:00
|
|
|
]
|
|
|
|
|
2018-07-12 02:38:16 +03:00
|
|
|
[[package]]
|
|
|
|
name = "buf_redux"
|
2020-12-09 11:44:58 +03:00
|
|
|
version = "0.8.4"
|
2018-07-12 02:38:16 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-12-09 11:44:58 +03:00
|
|
|
checksum = "b953a6887648bb07a535631f2bc00fbdb2a2216f135552cb3f534ed136b9c07f"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-09 11:44:58 +03:00
|
|
|
"memchr",
|
|
|
|
"safemem",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-07-12 02:38:16 +03:00
|
|
|
|
2020-12-09 10:46:21 +03:00
|
|
|
[[package]]
|
|
|
|
name = "bumpalo"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "3.11.1"
|
2020-12-09 10:46:21 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "572f695136211188308f16ad2ca5c851a712c464060ae6974944458eb83880ba"
|
2020-12-09 10:46:21 +03:00
|
|
|
|
2017-02-02 03:30:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "byteorder"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "1.4.3"
|
2017-02-02 03:30:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "14c189c53d098945499cdfa7ecc63567cf3886b3332b312a5b4585d8d3a6a610"
|
2017-02-02 03:30:26 +03:00
|
|
|
|
2021-01-08 10:26:06 +03:00
|
|
|
[[package]]
|
|
|
|
name = "bytes"
|
2023-02-12 00:49:41 +03:00
|
|
|
version = "1.4.0"
|
2021-01-08 10:26:06 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-12 00:49:41 +03:00
|
|
|
checksum = "89b2fd2a0dcf38d7971e2194b6b6eebab45ae01067456a7fd93d5547a61b70be"
|
2022-01-03 03:22:14 +03:00
|
|
|
|
2017-10-25 21:09:27 +03:00
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
2023-02-12 10:48:14 +03:00
|
|
|
version = "1.0.79"
|
2017-10-25 21:09:27 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-12 10:48:14 +03:00
|
|
|
checksum = "50d30906286121d95be3d479533b458f87493b30a4b5f79a607db8f5d11aa91f"
|
2020-06-05 19:59:57 +03:00
|
|
|
dependencies = [
|
|
|
|
"jobserver",
|
|
|
|
]
|
2017-10-25 21:09:27 +03:00
|
|
|
|
2016-05-12 22:03:37 +03:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
2019-11-11 00:25:05 +03:00
|
|
|
version = "0.1.10"
|
2016-05-12 22:03:37 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-18 18:07:45 +03:00
|
|
|
checksum = "4785bdd1c96b2a846b2bd7cc02e86b6b3dbf14e7e53446c4f54c92a361040822"
|
2016-05-12 22:03:37 +03:00
|
|
|
|
2020-12-08 08:07:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
|
|
2018-01-07 18:33:04 +03:00
|
|
|
[[package]]
|
|
|
|
name = "chrono"
|
2023-06-12 21:00:19 +03:00
|
|
|
version = "0.4.26"
|
2016-06-03 22:09:38 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-12 21:00:19 +03:00
|
|
|
checksum = "ec837a71355b28f6556dbd569b37b3f363091c0bd4b2e735674521b4c5fd9bc5"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2023-06-12 21:00:19 +03:00
|
|
|
"android-tzdata",
|
2022-08-10 15:58:24 +03:00
|
|
|
"iana-time-zone",
|
2022-08-04 23:27:33 +03:00
|
|
|
"js-sys",
|
2020-04-29 16:48:55 +03:00
|
|
|
"num-traits",
|
2021-12-06 19:22:21 +03:00
|
|
|
"serde",
|
2022-11-30 08:59:42 +03:00
|
|
|
"time 0.1.43",
|
2022-08-04 23:27:33 +03:00
|
|
|
"wasm-bindgen",
|
2022-11-29 20:32:24 +03:00
|
|
|
"winapi",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-06-03 22:09:38 +03:00
|
|
|
|
2018-07-12 02:38:16 +03:00
|
|
|
[[package]]
|
|
|
|
name = "chunked_transfer"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "1.4.0"
|
2018-07-12 02:38:16 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "fff857943da45f546682664a79488be82e69e43c1a7a2307679ab9afb3a66d2e"
|
2018-07-12 02:38:16 +03:00
|
|
|
|
2016-05-12 22:03:37 +03:00
|
|
|
[[package]]
|
|
|
|
name = "clap"
|
2023-03-28 12:27:58 +03:00
|
|
|
version = "4.1.11"
|
2016-05-12 22:03:37 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-28 12:27:58 +03:00
|
|
|
checksum = "42dfd32784433290c51d92c438bb72ea5063797fc3cc9a21a8c4346bebbb2098"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2023-03-28 12:27:58 +03:00
|
|
|
"bitflags 2.0.2",
|
2022-03-11 07:33:09 +03:00
|
|
|
"clap_derive",
|
|
|
|
"clap_lex",
|
2022-12-14 22:24:55 +03:00
|
|
|
"is-terminal",
|
2022-03-11 07:33:09 +03:00
|
|
|
"once_cell",
|
2020-03-20 22:13:32 +03:00
|
|
|
"strsim",
|
2022-03-11 07:33:09 +03:00
|
|
|
"termcolor",
|
2022-04-01 06:38:11 +03:00
|
|
|
"terminal_size",
|
2022-03-11 07:33:09 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "clap_derive"
|
2023-03-28 12:27:58 +03:00
|
|
|
version = "4.1.9"
|
2022-03-11 07:33:09 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-28 12:27:58 +03:00
|
|
|
checksum = "fddf67631444a3a3e3e5ac51c36a5e01335302de677bd78759eaa90ab1f46644"
|
2022-03-11 07:33:09 +03:00
|
|
|
dependencies = [
|
|
|
|
"heck",
|
|
|
|
"proc-macro-error",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-04-03 21:03:41 +03:00
|
|
|
"syn 1.0.104",
|
2022-03-11 07:33:09 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "clap_lex"
|
2022-12-14 22:24:55 +03:00
|
|
|
version = "0.3.0"
|
2022-03-11 07:33:09 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-14 22:24:55 +03:00
|
|
|
checksum = "0d4198f73e42b4936b35b5bb248d81d2b595ecb170da0bac7655c54eedfa8da8"
|
2022-03-11 07:33:09 +03:00
|
|
|
dependencies = [
|
|
|
|
"os_str_bytes",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-05-12 22:03:37 +03:00
|
|
|
|
2018-08-27 17:23:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "combine"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "4.6.6"
|
2017-06-14 18:20:12 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "35ed6e9d84f0b51a7f52daf1c7d71dd136fd7a3f41a8462b8cdb8c78d920fad4"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2022-11-14 08:25:38 +03:00
|
|
|
"bytes",
|
2021-11-12 15:28:26 +03:00
|
|
|
"futures-core",
|
2020-12-09 11:44:58 +03:00
|
|
|
"memchr",
|
2022-02-16 08:40:31 +03:00
|
|
|
"pin-project-lite",
|
|
|
|
"tokio",
|
2022-11-27 06:11:42 +03:00
|
|
|
"tokio-util",
|
2021-01-05 07:08:33 +03:00
|
|
|
]
|
|
|
|
|
2023-03-03 14:42:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "const-oid"
|
|
|
|
version = "0.9.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "520fbf3c07483f94e3e3ca9d0cfd913d7718ef2483d2cfd91c0d9e91474ab913"
|
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "const-random"
|
|
|
|
version = "0.1.15"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "368a7a772ead6ce7e1de82bfb04c485f3db8ec744f72925af5735e29a22cc18e"
|
|
|
|
dependencies = [
|
|
|
|
"const-random-macro",
|
|
|
|
"proc-macro-hack",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "const-random-macro"
|
|
|
|
version = "0.1.15"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9d7d6ab3c3a2282db210df5f02c4dab6e0a7057af0fb7ebd4070f30fe05c0ddb"
|
|
|
|
dependencies = [
|
|
|
|
"getrandom",
|
|
|
|
"once_cell",
|
|
|
|
"proc-macro-hack",
|
|
|
|
"tiny-keccak",
|
|
|
|
]
|
|
|
|
|
2019-11-11 00:25:05 +03:00
|
|
|
[[package]]
|
2019-12-10 00:17:20 +03:00
|
|
|
name = "constant_time_eq"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.4"
|
2019-12-10 00:17:20 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "f3ad85c1f65dc7b37604eb0e89748faf0b9653065f2a8ef69f96a687ec1e9279"
|
2019-12-10 00:17:20 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "core-foundation"
|
2022-02-12 22:19:08 +03:00
|
|
|
version = "0.9.3"
|
2019-11-11 00:25:05 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 22:19:08 +03:00
|
|
|
checksum = "194a7a9e6de53fa55116934067c844d9d749312f75c6f6d0980e8c252f8c2146"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"core-foundation-sys",
|
|
|
|
"libc",
|
|
|
|
]
|
2019-11-11 00:25:05 +03:00
|
|
|
|
2019-12-10 00:17:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "core-foundation-sys"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "0.8.3"
|
2019-12-10 00:17:20 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "5827cebf4670468b8772dd191856768aedcb1b0278a04f989f7766351917b9dc"
|
2019-12-10 00:17:20 +03:00
|
|
|
|
2022-05-20 18:00:35 +03:00
|
|
|
[[package]]
|
|
|
|
name = "core_affinity"
|
2023-02-27 21:16:02 +03:00
|
|
|
version = "0.8.0"
|
2022-05-20 18:00:35 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-27 21:16:02 +03:00
|
|
|
checksum = "4436406e93f52cce33bfba4be067a9f7229da44a634c385e4b22cdfaca5f84cc"
|
2022-05-20 18:00:35 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"num_cpus",
|
2022-11-29 20:32:24 +03:00
|
|
|
"winapi",
|
2022-05-20 18:00:35 +03:00
|
|
|
]
|
|
|
|
|
2020-12-10 01:39:52 +03:00
|
|
|
[[package]]
|
2021-11-12 15:28:26 +03:00
|
|
|
name = "cpufeatures"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.5"
|
2020-12-10 01:39:52 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "28d997bd5e24a5928dd43e46dc529867e207907fe0b239c3477d924f7f2ca320"
|
2021-11-12 15:28:26 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
2020-12-10 01:39:52 +03:00
|
|
|
|
2019-10-14 22:58:56 +03:00
|
|
|
[[package]]
|
|
|
|
name = "crc32fast"
|
2022-02-12 22:19:08 +03:00
|
|
|
version = "1.3.2"
|
2019-10-14 22:58:56 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 22:19:08 +03:00
|
|
|
checksum = "b540bd8bc810d3885c6ea91e2018302f68baba2129ab3e88f32389ee9370880d"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-08 08:07:09 +03:00
|
|
|
"cfg-if 1.0.0",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2019-10-14 22:58:56 +03:00
|
|
|
|
2020-12-08 08:07:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "crossbeam-utils"
|
2023-03-27 21:58:53 +03:00
|
|
|
version = "0.8.15"
|
2020-12-08 08:07:09 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-27 21:58:53 +03:00
|
|
|
checksum = "3c063cd8cc95f5c377ed0d4b49a4b21f632396ff690e8470c29b3359b346984b"
|
2020-12-08 08:07:09 +03:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if 1.0.0",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "crunchy"
|
|
|
|
version = "0.2.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
|
|
|
|
|
2022-02-12 18:26:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "crypto-common"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.1.6"
|
2019-10-25 02:43:35 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-10 01:39:52 +03:00
|
|
|
"generic-array",
|
2022-05-05 17:47:19 +03:00
|
|
|
"typenum",
|
2020-12-08 08:07:09 +03:00
|
|
|
]
|
|
|
|
|
2016-10-26 23:22:52 +03:00
|
|
|
[[package]]
|
|
|
|
name = "daemonize"
|
2023-03-06 21:10:20 +03:00
|
|
|
version = "0.5.0"
|
2016-10-26 23:22:52 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-06 21:10:20 +03:00
|
|
|
checksum = "ab8bfdaacb3c887a54d41bdf48d3af8873b3f5566469f8ba21b92057509f116e"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
2017-10-25 21:09:27 +03:00
|
|
|
|
2022-08-11 11:13:27 +03:00
|
|
|
[[package]]
|
|
|
|
name = "dashmap"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "5.4.0"
|
2022-08-11 11:13:27 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "907076dfda823b0b36d2a1bb5f90c96660a5bbcd7729e10727f07858f22c4edc"
|
2022-08-11 11:13:27 +03:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if 1.0.0",
|
2023-05-09 18:25:20 +03:00
|
|
|
"hashbrown 0.12.3",
|
2022-11-27 06:11:42 +03:00
|
|
|
"lock_api",
|
|
|
|
"once_cell",
|
|
|
|
"parking_lot_core",
|
2022-08-11 11:13:27 +03:00
|
|
|
]
|
|
|
|
|
2023-04-19 15:30:29 +03:00
|
|
|
[[package]]
|
|
|
|
name = "data-encoding"
|
|
|
|
version = "2.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "23d8666cb01533c39dde32bcbab8e227b4ed6679b2c925eba05feabea39508fb"
|
|
|
|
|
2023-03-03 14:42:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "der"
|
2023-06-07 03:13:10 +03:00
|
|
|
version = "0.7.6"
|
2023-03-03 14:42:32 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-07 03:13:10 +03:00
|
|
|
checksum = "56acb310e15652100da43d130af8d97b509e95af61aab1c5a7939ef24337ee17"
|
2023-03-03 14:42:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"const-oid",
|
|
|
|
"pem-rfc7468",
|
|
|
|
"zeroize",
|
|
|
|
]
|
|
|
|
|
2021-11-12 15:28:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "difflib"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6184e33543162437515c2e2b48714794e37845ec9851711914eec9d308f6ebe8"
|
|
|
|
|
2020-12-08 08:07:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "digest"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.10.6"
|
2022-02-12 18:26:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "8168378f4e5023e7218c89c891c0fd8ecdb5e5e4f18cb78f38cf245dd021e76f"
|
2022-02-12 18:26:46 +03:00
|
|
|
dependencies = [
|
2022-02-14 22:44:46 +03:00
|
|
|
"block-buffer",
|
2023-03-03 14:42:32 +03:00
|
|
|
"const-oid",
|
2022-02-12 18:26:46 +03:00
|
|
|
"crypto-common",
|
2022-02-14 22:44:46 +03:00
|
|
|
"subtle",
|
2022-02-12 18:26:46 +03:00
|
|
|
]
|
|
|
|
|
2018-03-21 15:52:55 +03:00
|
|
|
[[package]]
|
|
|
|
name = "directories"
|
2023-04-24 11:05:58 +03:00
|
|
|
version = "5.0.0"
|
2018-03-21 15:52:55 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-24 11:05:58 +03:00
|
|
|
checksum = "74be3be809c18e089de43bdc504652bb2bc473fca8756131f8689db8cf079ba9"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2023-05-09 18:25:20 +03:00
|
|
|
"dirs-sys",
|
2020-06-11 06:10:33 +03:00
|
|
|
]
|
|
|
|
|
2023-04-24 11:05:58 +03:00
|
|
|
[[package]]
|
|
|
|
name = "dirs-sys"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "04414300db88f70d74c5ff54e50f9e1d1737d9a5b90f53fcf2e95ca2a9ab554b"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"redox_users",
|
|
|
|
"windows-sys 0.45.0",
|
|
|
|
]
|
|
|
|
|
2021-12-06 19:22:21 +03:00
|
|
|
[[package]]
|
|
|
|
name = "displaydoc"
|
|
|
|
version = "0.1.7"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "adc2ab4d5a16117f9029e9a6b5e4e79f4c67f6519bc134210d4d4a04ba31f41b"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-04-03 21:03:41 +03:00
|
|
|
"syn 1.0.104",
|
2021-12-06 19:22:21 +03:00
|
|
|
]
|
|
|
|
|
2022-12-11 15:23:27 +03:00
|
|
|
[[package]]
|
|
|
|
name = "dlv-list"
|
2023-05-09 18:25:20 +03:00
|
|
|
version = "0.5.0"
|
2022-12-11 15:23:27 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-09 18:25:20 +03:00
|
|
|
checksum = "d529fd73d344663edfd598ccb3f344e46034db51ebd103518eae34338248ad73"
|
|
|
|
dependencies = [
|
|
|
|
"const-random",
|
|
|
|
]
|
2022-12-11 15:23:27 +03:00
|
|
|
|
update test harness crates
This patch looks like a routine crate version update, but it fixes
something very fundamentally wrong with the tests: `escargot`, to find
the `sccache` binary during tests, would actually run `cargo build` and
parse the output. There were all manner of hacks to try and build the
binary with the correct set of features, none of which were reliable,
and the hacks were not reliably present in all places, either.
When the hacks were not present, `escargot` would rebuild the entire
sccache crate, which was responsible for the `sccache_cargo` test taking
entirely too long. When the hacks failed utterly, perfectly fine
patches would mysteriously fail, as seen in #774.
We can get rid of `escargot` because `assert-cmd` has been updated to a)
not use `escargot` under the hood; and b) do something smarter to locate
the target binary. The upshot is fewer mysterious test failures and
significantly faster running tests.
2020-06-05 01:34:11 +03:00
|
|
|
[[package]]
|
|
|
|
name = "doc-comment"
|
|
|
|
version = "0.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "fea41bba32d969b513997752735605054bc0dfa92b4c56bf1189f2e174be7a10"
|
|
|
|
|
2017-04-03 17:21:13 +03:00
|
|
|
[[package]]
|
|
|
|
name = "either"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.8.0"
|
2017-04-03 17:21:13 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "90e5c1c8368803113bf0c9584fc495a58b86dc8a29edbf8fe877d21d9507e797"
|
2017-04-03 17:21:13 +03:00
|
|
|
|
2023-02-16 01:13:47 +03:00
|
|
|
[[package]]
|
|
|
|
name = "encoding"
|
|
|
|
version = "0.2.33"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6b0d943856b990d12d3b55b359144ff341533e516d94098b1d3fc1ac666d36ec"
|
|
|
|
dependencies = [
|
|
|
|
"encoding-index-japanese",
|
|
|
|
"encoding-index-korean",
|
|
|
|
"encoding-index-simpchinese",
|
|
|
|
"encoding-index-singlebyte",
|
|
|
|
"encoding-index-tradchinese",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "encoding-index-japanese"
|
|
|
|
version = "1.20141219.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "04e8b2ff42e9a05335dbf8b5c6f7567e5591d0d916ccef4e0b1710d32a0d0c91"
|
|
|
|
dependencies = [
|
|
|
|
"encoding_index_tests",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "encoding-index-korean"
|
|
|
|
version = "1.20141219.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4dc33fb8e6bcba213fe2f14275f0963fd16f0a02c878e3095ecfdf5bee529d81"
|
|
|
|
dependencies = [
|
|
|
|
"encoding_index_tests",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "encoding-index-simpchinese"
|
|
|
|
version = "1.20141219.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d87a7194909b9118fc707194baa434a4e3b0fb6a5a757c73c3adb07aa25031f7"
|
|
|
|
dependencies = [
|
|
|
|
"encoding_index_tests",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "encoding-index-singlebyte"
|
|
|
|
version = "1.20141219.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3351d5acffb224af9ca265f435b859c7c01537c0849754d3db3fdf2bfe2ae84a"
|
|
|
|
dependencies = [
|
|
|
|
"encoding_index_tests",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "encoding-index-tradchinese"
|
|
|
|
version = "1.20141219.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "fd0e20d5688ce3cab59eb3ef3a2083a5c77bf496cb798dc6fcdb75f323890c18"
|
|
|
|
dependencies = [
|
|
|
|
"encoding_index_tests",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "encoding_index_tests"
|
|
|
|
version = "0.1.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a246d82be1c9d791c5dfde9a2bd045fc3cbba3fa2b11ad558f27d01712f00569"
|
|
|
|
|
2018-07-12 02:38:16 +03:00
|
|
|
[[package]]
|
|
|
|
name = "encoding_rs"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.8.31"
|
2018-07-12 02:38:16 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "9852635589dc9f9ea1b6fe9f05b50ef208c85c834a562f0c6abb1c475736ec2b"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-08 08:07:09 +03:00
|
|
|
"cfg-if 1.0.0",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-07-12 02:38:16 +03:00
|
|
|
|
2023-04-19 15:30:29 +03:00
|
|
|
[[package]]
|
|
|
|
name = "enum-as-inner"
|
|
|
|
version = "0.5.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c9720bba047d567ffc8a3cba48bf19126600e249ab7f128e9233e6376976a116"
|
|
|
|
dependencies = [
|
|
|
|
"heck",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn 1.0.104",
|
|
|
|
]
|
|
|
|
|
2016-05-12 22:03:37 +03:00
|
|
|
[[package]]
|
|
|
|
name = "env_logger"
|
2022-12-05 20:07:58 +03:00
|
|
|
version = "0.10.0"
|
2016-05-12 22:03:37 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-05 20:07:58 +03:00
|
|
|
checksum = "85cdab6a89accf66733ad5a1693a4dcced6aeff64602b634530dd73c1f3ee9f0"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"humantime",
|
2022-12-05 20:07:58 +03:00
|
|
|
"is-terminal",
|
2021-11-12 15:28:26 +03:00
|
|
|
"log",
|
2020-03-20 22:13:32 +03:00
|
|
|
"regex",
|
|
|
|
"termcolor",
|
|
|
|
]
|
2016-05-12 22:03:37 +03:00
|
|
|
|
2022-04-01 06:38:11 +03:00
|
|
|
[[package]]
|
|
|
|
name = "errno"
|
|
|
|
version = "0.2.8"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f639046355ee4f37944e44f60642c6f3a7efa3cf6b78c78a0d989a8ce6c396a1"
|
|
|
|
dependencies = [
|
|
|
|
"errno-dragonfly",
|
|
|
|
"libc",
|
2022-11-29 20:32:24 +03:00
|
|
|
"winapi",
|
2022-04-01 06:38:11 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "errno-dragonfly"
|
|
|
|
version = "0.1.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "aa68f1b12764fab894d2755d2518754e71b4fd80ecfb822714a1206c2aab39bf"
|
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2017-10-25 21:09:27 +03:00
|
|
|
[[package]]
|
|
|
|
name = "error-chain"
|
2020-12-08 08:07:09 +03:00
|
|
|
version = "0.12.4"
|
2017-10-25 21:09:27 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-12-08 08:07:09 +03:00
|
|
|
checksum = "2d2f06b9cac1506ece98fe3231e3cc9c4410ec3d5b1f24ae1c8946f0742cdefc"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2021-11-12 15:28:26 +03:00
|
|
|
"version_check",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-07-26 17:16:55 +03:00
|
|
|
|
2022-02-12 22:19:08 +03:00
|
|
|
[[package]]
|
|
|
|
name = "fastrand"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.8.0"
|
2022-02-12 22:19:08 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "a7a407cfaa3385c4ae6b23e84623d48c2798d06e3e6a1878f7f59f17b3f86499"
|
2022-02-12 22:19:08 +03:00
|
|
|
dependencies = [
|
|
|
|
"instant",
|
|
|
|
]
|
|
|
|
|
2018-04-12 04:25:15 +03:00
|
|
|
[[package]]
|
|
|
|
name = "filetime"
|
2023-03-03 14:42:31 +03:00
|
|
|
version = "0.2.20"
|
2018-04-12 04:25:15 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-03 14:42:31 +03:00
|
|
|
checksum = "8a3de6e8d11b22ff9edc6d916f890800597d60f8b2da1caf2955c274638d6412"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-08 08:07:09 +03:00
|
|
|
"cfg-if 1.0.0",
|
2020-03-20 22:13:32 +03:00
|
|
|
"libc",
|
2021-12-06 19:22:21 +03:00
|
|
|
"redox_syscall",
|
2023-03-03 14:42:31 +03:00
|
|
|
"windows-sys 0.45.0",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-04-12 04:25:15 +03:00
|
|
|
|
2022-12-11 15:23:27 +03:00
|
|
|
[[package]]
|
|
|
|
name = "flagset"
|
|
|
|
version = "0.4.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "cda653ca797810c02f7ca4b804b40b8b95ae046eb989d356bce17919a8c25499"
|
|
|
|
|
2016-05-21 21:14:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "flate2"
|
2023-05-30 10:59:07 +03:00
|
|
|
version = "1.0.26"
|
2018-09-27 17:30:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-30 10:59:07 +03:00
|
|
|
checksum = "3b9429470923de8e8cbd4d2dc513535400b4b3fef0319fb5c4e1f520a7bef743"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"crc32fast",
|
2023-05-30 10:59:07 +03:00
|
|
|
"miniz_oxide 0.7.1",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-05-21 21:14:26 +03:00
|
|
|
|
2018-07-26 22:52:50 +03:00
|
|
|
[[package]]
|
|
|
|
name = "float-cmp"
|
2022-02-12 19:58:37 +03:00
|
|
|
version = "0.9.0"
|
2018-07-26 22:52:50 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 19:58:37 +03:00
|
|
|
checksum = "98de4bbd547a563b716d8dfa9aad1cb19bfab00f4fa09a6a4ed21dbcf44ce9c4"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-04-29 16:48:55 +03:00
|
|
|
"num-traits",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-07-26 22:52:50 +03:00
|
|
|
|
2022-05-20 18:00:35 +03:00
|
|
|
[[package]]
|
|
|
|
name = "flume"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.10.14"
|
2022-05-20 18:00:35 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "1657b4441c3403d9f7b3409e47575237dac27b1b5726df654a6ecbf92f0f7577"
|
2022-05-20 18:00:35 +03:00
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
"nanorand",
|
|
|
|
"pin-project",
|
2022-11-27 06:11:42 +03:00
|
|
|
"spin 0.9.4",
|
2022-05-20 18:00:35 +03:00
|
|
|
]
|
|
|
|
|
2018-09-27 17:30:22 +03:00
|
|
|
[[package]]
|
|
|
|
name = "fnv"
|
2020-06-11 04:40:05 +03:00
|
|
|
version = "1.0.7"
|
2018-09-27 17:30:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-11 04:40:05 +03:00
|
|
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2017-05-18 23:53:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "foreign-types"
|
2018-01-07 18:33:04 +03:00
|
|
|
version = "0.3.2"
|
2017-05-18 23:53:00 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-18 18:07:45 +03:00
|
|
|
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"foreign-types-shared",
|
|
|
|
]
|
2017-05-18 23:53:00 +03:00
|
|
|
|
2016-11-03 00:15:14 +03:00
|
|
|
[[package]]
|
2018-01-07 18:33:04 +03:00
|
|
|
name = "foreign-types-shared"
|
|
|
|
version = "0.1.1"
|
2016-11-03 00:15:14 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-18 18:07:45 +03:00
|
|
|
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
|
2016-11-03 00:15:14 +03:00
|
|
|
|
2020-12-08 08:07:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "form_urlencoded"
|
2023-03-06 21:11:10 +03:00
|
|
|
version = "1.1.0"
|
2020-12-08 08:07:09 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-06 21:11:10 +03:00
|
|
|
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
|
2020-12-08 08:07:09 +03:00
|
|
|
dependencies = [
|
2022-02-12 20:46:53 +03:00
|
|
|
"percent-encoding",
|
2020-12-08 08:07:09 +03:00
|
|
|
]
|
|
|
|
|
2023-02-21 10:37:42 +03:00
|
|
|
[[package]]
|
|
|
|
name = "fs-err"
|
|
|
|
version = "2.9.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0845fa252299212f0389d64ba26f34fa32cfe41588355f21ed507c59a0f64541"
|
|
|
|
|
2020-05-08 08:31:33 +03:00
|
|
|
[[package]]
|
|
|
|
name = "futures"
|
2023-03-13 21:08:05 +03:00
|
|
|
version = "0.3.27"
|
2020-05-08 08:31:33 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-13 21:08:05 +03:00
|
|
|
checksum = "531ac96c6ff5fd7c62263c5e3c67a603af4fcaee2e1a0ae5565ba3a11e69e549"
|
2020-05-08 08:31:33 +03:00
|
|
|
dependencies = [
|
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-executor",
|
|
|
|
"futures-io",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-task",
|
|
|
|
"futures-util",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-channel"
|
2023-03-13 21:08:05 +03:00
|
|
|
version = "0.3.27"
|
2020-05-08 08:31:33 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-13 21:08:05 +03:00
|
|
|
checksum = "164713a5a0dcc3e7b4b1ed7d3b433cabc18025386f9339346e8daf15963cf7ac"
|
2020-05-08 08:31:33 +03:00
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
]
|
|
|
|
|
2020-04-28 08:28:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "futures-core"
|
2023-03-13 21:08:05 +03:00
|
|
|
version = "0.3.27"
|
2020-04-28 08:28:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-13 21:08:05 +03:00
|
|
|
checksum = "86d7a0c1aa76363dac491de0ee99faf6941128376f1cf96f07db7603b7de69dd"
|
2020-04-28 08:28:17 +03:00
|
|
|
|
2020-05-08 08:31:33 +03:00
|
|
|
[[package]]
|
|
|
|
name = "futures-executor"
|
2023-03-13 21:08:05 +03:00
|
|
|
version = "0.3.27"
|
2020-05-08 08:31:33 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-13 21:08:05 +03:00
|
|
|
checksum = "1997dd9df74cdac935c76252744c1ed5794fac083242ea4fe77ef3ed60ba0f83"
|
2020-05-08 08:31:33 +03:00
|
|
|
dependencies = [
|
|
|
|
"futures-core",
|
|
|
|
"futures-task",
|
|
|
|
"futures-util",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-io"
|
2023-03-13 21:08:05 +03:00
|
|
|
version = "0.3.27"
|
2020-05-08 08:31:33 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-13 21:08:05 +03:00
|
|
|
checksum = "89d422fa3cbe3b40dca574ab087abb5bc98258ea57eea3fd6f1fa7162c778b91"
|
2020-05-08 08:31:33 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-macro"
|
2023-03-13 21:08:05 +03:00
|
|
|
version = "0.3.27"
|
2020-05-08 08:31:33 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-13 21:08:05 +03:00
|
|
|
checksum = "3eb14ed937631bd8b8b8977f2c198443447a8355b6e3ca599f38c975e5a963b6"
|
2020-05-08 08:31:33 +03:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
2020-04-29 16:48:55 +03:00
|
|
|
"quote",
|
2023-04-03 21:03:41 +03:00
|
|
|
"syn 1.0.104",
|
2020-05-08 08:31:33 +03:00
|
|
|
]
|
|
|
|
|
2020-04-28 08:28:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "futures-sink"
|
2023-03-13 21:08:05 +03:00
|
|
|
version = "0.3.27"
|
2020-04-28 08:28:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-13 21:08:05 +03:00
|
|
|
checksum = "ec93083a4aecafb2a80a885c9de1f0ccae9dbd32c2bb54b0c3a65690e0b8d2f2"
|
2020-04-28 08:28:17 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-task"
|
2023-03-13 21:08:05 +03:00
|
|
|
version = "0.3.27"
|
2020-04-28 08:28:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-13 21:08:05 +03:00
|
|
|
checksum = "fd65540d33b37b16542a0438c12e6aeead10d4ac5d05bd3f805b8f35ab592879"
|
2020-04-28 08:28:17 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "futures-util"
|
2023-03-13 21:08:05 +03:00
|
|
|
version = "0.3.27"
|
2020-04-28 08:28:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-13 21:08:05 +03:00
|
|
|
checksum = "3ef6b17e481503ec85211fed8f39d1970f128935ca1f814cd32ac4a6842e84ab"
|
2020-04-28 08:28:17 +03:00
|
|
|
dependencies = [
|
2020-05-08 08:31:33 +03:00
|
|
|
"futures-channel",
|
2020-04-28 08:28:17 +03:00
|
|
|
"futures-core",
|
2020-05-08 08:31:33 +03:00
|
|
|
"futures-io",
|
|
|
|
"futures-macro",
|
2020-04-28 08:28:17 +03:00
|
|
|
"futures-sink",
|
|
|
|
"futures-task",
|
2020-12-09 11:44:58 +03:00
|
|
|
"memchr",
|
2022-02-16 08:40:31 +03:00
|
|
|
"pin-project-lite",
|
2020-04-28 08:28:17 +03:00
|
|
|
"pin-utils",
|
|
|
|
"slab",
|
|
|
|
]
|
|
|
|
|
2020-12-08 08:07:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "generic-array"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.14.6"
|
2020-12-08 08:07:09 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
|
2020-12-08 08:07:09 +03:00
|
|
|
dependencies = [
|
|
|
|
"typenum",
|
2021-11-12 15:28:26 +03:00
|
|
|
"version_check",
|
2020-12-08 08:07:09 +03:00
|
|
|
]
|
|
|
|
|
2020-06-11 04:40:05 +03:00
|
|
|
[[package]]
|
2021-11-12 15:28:26 +03:00
|
|
|
name = "getrandom"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.8"
|
2020-06-11 04:40:05 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
|
2021-11-12 15:28:26 +03:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if 1.0.0",
|
2022-05-20 18:00:35 +03:00
|
|
|
"js-sys",
|
2021-11-12 15:28:26 +03:00
|
|
|
"libc",
|
2023-05-09 06:44:41 +03:00
|
|
|
"wasi",
|
2022-05-20 18:00:35 +03:00
|
|
|
"wasm-bindgen",
|
|
|
|
]
|
|
|
|
|
2023-05-25 08:35:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "gimli"
|
|
|
|
version = "0.27.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ad0a93d233ebf96623465aad4046a8d3aa4da22d4f4beba5388838c8a434bbb4"
|
|
|
|
|
2022-05-20 18:00:35 +03:00
|
|
|
[[package]]
|
|
|
|
name = "gzp"
|
2023-02-27 21:16:02 +03:00
|
|
|
version = "0.11.3"
|
2022-05-20 18:00:35 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-27 21:16:02 +03:00
|
|
|
checksum = "e7c65d1899521a11810501b50b898464d133e1afc96703cff57726964cfa7baf"
|
2022-05-20 18:00:35 +03:00
|
|
|
dependencies = [
|
|
|
|
"byteorder",
|
2022-11-14 08:25:38 +03:00
|
|
|
"bytes",
|
2022-05-20 18:00:35 +03:00
|
|
|
"core_affinity",
|
|
|
|
"flate2",
|
|
|
|
"flume",
|
|
|
|
"num_cpus",
|
|
|
|
"thiserror",
|
2021-11-12 15:28:26 +03:00
|
|
|
]
|
2020-06-11 04:40:05 +03:00
|
|
|
|
2021-04-08 21:30:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "h2"
|
2023-04-13 20:05:35 +03:00
|
|
|
version = "0.3.17"
|
2021-04-08 21:30:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-13 20:05:35 +03:00
|
|
|
checksum = "66b91535aa35fea1523ad1b86cb6b53c28e0ae566ba4a460f4457e936cad7c6f"
|
2021-04-08 21:30:17 +03:00
|
|
|
dependencies = [
|
2022-11-14 08:25:38 +03:00
|
|
|
"bytes",
|
2021-04-08 21:30:17 +03:00
|
|
|
"fnv",
|
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
"futures-util",
|
2022-02-12 20:46:53 +03:00
|
|
|
"http",
|
2021-04-08 21:30:17 +03:00
|
|
|
"indexmap",
|
|
|
|
"slab",
|
2022-02-16 08:40:31 +03:00
|
|
|
"tokio",
|
2022-11-27 06:11:42 +03:00
|
|
|
"tokio-util",
|
2021-04-08 21:30:17 +03:00
|
|
|
"tracing",
|
|
|
|
]
|
|
|
|
|
2020-12-08 08:07:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.12.3"
|
2020-12-08 08:07:09 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
2023-05-09 18:25:20 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
|
|
|
version = "0.13.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e"
|
2020-12-08 08:07:09 +03:00
|
|
|
|
2022-03-11 07:33:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "heck"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2540771e65fc8cb83cd6e8a237f70c319bd5c29f78ed1084ba5d50eeac86f7f9"
|
|
|
|
|
2019-12-10 00:17:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
2023-03-28 19:56:42 +03:00
|
|
|
version = "0.2.6"
|
2019-12-10 00:17:20 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-28 19:56:42 +03:00
|
|
|
checksum = "ee512640fe35acbfb4bb779db6f0d80704c2cacfa2e39b601ef3e3f47d1ae4c7"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
2019-12-10 00:17:20 +03:00
|
|
|
|
2022-12-05 20:07:58 +03:00
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
2023-03-28 19:56:42 +03:00
|
|
|
version = "0.3.1"
|
2022-12-05 20:07:58 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-28 19:56:42 +03:00
|
|
|
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"
|
2022-12-05 20:07:58 +03:00
|
|
|
|
2022-01-03 03:22:14 +03:00
|
|
|
[[package]]
|
|
|
|
name = "hex"
|
|
|
|
version = "0.4.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
|
|
|
|
|
2019-10-25 02:43:35 +03:00
|
|
|
[[package]]
|
|
|
|
name = "hmac"
|
2022-05-05 17:47:19 +03:00
|
|
|
version = "0.12.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
|
|
|
|
dependencies = [
|
|
|
|
"digest",
|
|
|
|
]
|
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "home"
|
|
|
|
version = "0.5.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5444c27eef6923071f7ebcc33e3444508466a76f7a2b93da00ed6e19f30c1ddb"
|
|
|
|
dependencies = [
|
|
|
|
"windows-sys 0.48.0",
|
|
|
|
]
|
|
|
|
|
2022-05-05 17:47:19 +03:00
|
|
|
[[package]]
|
|
|
|
name = "hostname"
|
|
|
|
version = "0.3.1"
|
2019-10-25 02:43:35 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-05 17:47:19 +03:00
|
|
|
checksum = "3c731c3e10504cc8ed35cfe2f1db4c9274c3d35fa486e3b31df46f068ef3e867"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2022-05-05 17:47:19 +03:00
|
|
|
"libc",
|
|
|
|
"match_cfg",
|
2022-11-29 20:32:24 +03:00
|
|
|
"winapi",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2019-10-25 02:43:35 +03:00
|
|
|
|
2021-04-08 21:30:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "http"
|
2023-03-03 15:22:11 +03:00
|
|
|
version = "0.2.9"
|
2021-04-08 21:30:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-03 15:22:11 +03:00
|
|
|
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
|
2021-04-08 21:30:17 +03:00
|
|
|
dependencies = [
|
2022-11-14 08:25:38 +03:00
|
|
|
"bytes",
|
2021-04-08 21:30:17 +03:00
|
|
|
"fnv",
|
2022-11-27 06:11:42 +03:00
|
|
|
"itoa",
|
2021-04-08 21:30:17 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "http-body"
|
2022-01-03 03:22:14 +03:00
|
|
|
version = "0.4.5"
|
2021-04-08 21:30:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-03 03:22:14 +03:00
|
|
|
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
|
2021-04-08 21:30:17 +03:00
|
|
|
dependencies = [
|
2022-11-14 08:25:38 +03:00
|
|
|
"bytes",
|
2022-02-12 20:46:53 +03:00
|
|
|
"http",
|
2022-02-16 08:40:31 +03:00
|
|
|
"pin-project-lite",
|
2021-04-08 21:30:17 +03:00
|
|
|
]
|
|
|
|
|
2016-06-03 22:09:38 +03:00
|
|
|
[[package]]
|
|
|
|
name = "httparse"
|
2022-11-14 08:25:38 +03:00
|
|
|
version = "1.8.0"
|
2022-01-03 03:22:14 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-14 08:25:38 +03:00
|
|
|
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"
|
2016-06-03 22:09:38 +03:00
|
|
|
|
2021-04-08 21:30:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "httpdate"
|
2022-02-12 22:19:08 +03:00
|
|
|
version = "1.0.2"
|
2021-04-08 21:30:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 22:19:08 +03:00
|
|
|
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"
|
2021-04-08 21:30:17 +03:00
|
|
|
|
2018-08-28 14:41:11 +03:00
|
|
|
[[package]]
|
|
|
|
name = "humantime"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "2.1.0"
|
2018-08-28 14:41:11 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
|
2018-08-28 14:41:11 +03:00
|
|
|
|
2021-04-08 21:30:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "hyper"
|
2023-04-03 21:05:27 +03:00
|
|
|
version = "0.14.25"
|
2021-04-08 21:30:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-03 21:05:27 +03:00
|
|
|
checksum = "cc5e554ff619822309ffd57d8734d77cd5ce6238bc956f037ea06c58238c9899"
|
2021-04-08 21:30:17 +03:00
|
|
|
dependencies = [
|
2022-11-14 08:25:38 +03:00
|
|
|
"bytes",
|
2021-04-08 21:30:17 +03:00
|
|
|
"futures-channel",
|
|
|
|
"futures-core",
|
|
|
|
"futures-util",
|
2021-12-06 19:22:21 +03:00
|
|
|
"h2",
|
2022-02-12 20:46:53 +03:00
|
|
|
"http",
|
2021-12-06 19:22:21 +03:00
|
|
|
"http-body",
|
2021-04-08 21:30:17 +03:00
|
|
|
"httparse",
|
2022-11-14 08:25:38 +03:00
|
|
|
"httpdate",
|
2022-11-27 06:11:42 +03:00
|
|
|
"itoa",
|
2022-11-14 08:25:38 +03:00
|
|
|
"pin-project-lite",
|
2021-04-08 21:30:17 +03:00
|
|
|
"socket2",
|
2022-02-16 08:40:31 +03:00
|
|
|
"tokio",
|
2021-04-08 21:30:17 +03:00
|
|
|
"tower-service",
|
|
|
|
"tracing",
|
2021-12-06 19:22:21 +03:00
|
|
|
"want",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2022-01-03 03:22:14 +03:00
|
|
|
[[package]]
|
|
|
|
name = "hyper-rustls"
|
2023-06-07 03:13:10 +03:00
|
|
|
version = "0.24.0"
|
2022-01-03 03:22:14 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-07 03:13:10 +03:00
|
|
|
checksum = "0646026eb1b3eea4cd9ba47912ea5ce9cc07713d105b1a14698f4e6433d348b7"
|
2022-01-03 03:22:14 +03:00
|
|
|
dependencies = [
|
2022-11-14 08:25:38 +03:00
|
|
|
"http",
|
2022-01-03 03:22:14 +03:00
|
|
|
"hyper",
|
2023-06-07 03:13:10 +03:00
|
|
|
"rustls 0.21.1",
|
2022-01-03 03:22:14 +03:00
|
|
|
"tokio",
|
2023-06-07 03:13:10 +03:00
|
|
|
"tokio-rustls 0.24.0",
|
2022-01-03 03:22:14 +03:00
|
|
|
]
|
|
|
|
|
2022-12-02 10:58:24 +03:00
|
|
|
[[package]]
|
|
|
|
name = "hyper-tls"
|
|
|
|
version = "0.5.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
|
|
|
|
dependencies = [
|
|
|
|
"bytes",
|
|
|
|
"hyper",
|
|
|
|
"native-tls",
|
|
|
|
"tokio",
|
|
|
|
"tokio-native-tls",
|
|
|
|
]
|
|
|
|
|
2022-08-10 15:58:24 +03:00
|
|
|
[[package]]
|
|
|
|
name = "iana-time-zone"
|
2022-11-30 08:59:42 +03:00
|
|
|
version = "0.1.47"
|
2022-08-10 15:58:24 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-30 08:59:42 +03:00
|
|
|
checksum = "4c495f162af0bf17656d0014a0eded5f3cd2f365fdd204548c2869db89359dc7"
|
2022-08-10 15:58:24 +03:00
|
|
|
dependencies = [
|
|
|
|
"android_system_properties",
|
2022-08-15 20:45:25 +03:00
|
|
|
"core-foundation-sys",
|
2022-08-10 15:58:24 +03:00
|
|
|
"js-sys",
|
2022-11-30 08:59:42 +03:00
|
|
|
"once_cell",
|
2022-08-10 15:58:24 +03:00
|
|
|
"wasm-bindgen",
|
2022-11-29 20:32:24 +03:00
|
|
|
"winapi",
|
2022-08-10 15:58:24 +03:00
|
|
|
]
|
|
|
|
|
2023-04-19 15:30:29 +03:00
|
|
|
[[package]]
|
|
|
|
name = "idna"
|
|
|
|
version = "0.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "418a0a6fab821475f634efe3ccc45c013f742efe03d853e8d3355d5cb850ecf8"
|
|
|
|
dependencies = [
|
|
|
|
"matches",
|
|
|
|
"unicode-bidi",
|
|
|
|
"unicode-normalization",
|
|
|
|
]
|
|
|
|
|
2019-12-10 00:17:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "idna"
|
2023-03-06 21:11:10 +03:00
|
|
|
version = "0.3.0"
|
2019-12-10 00:17:20 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-06 21:11:10 +03:00
|
|
|
checksum = "e14ddfc70884202db2244c223200c204c2bda1bc6e0998d11b5e024d657209e6"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"unicode-bidi",
|
|
|
|
"unicode-normalization",
|
|
|
|
]
|
2017-03-09 21:00:18 +03:00
|
|
|
|
2018-09-27 17:30:22 +03:00
|
|
|
[[package]]
|
|
|
|
name = "indexmap"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.9.2"
|
2018-09-27 17:30:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2021-12-06 19:22:21 +03:00
|
|
|
"autocfg",
|
2023-05-09 18:25:20 +03:00
|
|
|
"hashbrown 0.12.3",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2022-02-12 22:19:08 +03:00
|
|
|
[[package]]
|
|
|
|
name = "instant"
|
|
|
|
version = "0.1.12"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if 1.0.0",
|
|
|
|
]
|
|
|
|
|
2022-04-01 06:38:11 +03:00
|
|
|
[[package]]
|
|
|
|
name = "io-lifetimes"
|
2022-11-30 08:59:42 +03:00
|
|
|
version = "0.7.5"
|
2022-04-01 06:38:11 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-30 08:59:42 +03:00
|
|
|
checksum = "59ce5ef949d49ee85593fc4d3f3f95ad61657076395cbbce23e2121fc5542074"
|
2022-04-01 06:38:11 +03:00
|
|
|
|
2022-12-05 20:07:58 +03:00
|
|
|
[[package]]
|
|
|
|
name = "io-lifetimes"
|
|
|
|
version = "1.0.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "46112a93252b123d31a119a8d1a1ac19deac4fac6e0e8b0df58f0d4e5870e63c"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"windows-sys 0.42.0",
|
|
|
|
]
|
|
|
|
|
2023-04-19 15:30:29 +03:00
|
|
|
[[package]]
|
|
|
|
name = "ipconfig"
|
|
|
|
version = "0.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "bd302af1b90f2463a98fa5ad469fc212c8e3175a41c3068601bfa2727591c5be"
|
|
|
|
dependencies = [
|
|
|
|
"socket2",
|
|
|
|
"widestring",
|
|
|
|
"winapi",
|
|
|
|
"winreg",
|
|
|
|
]
|
|
|
|
|
2021-04-08 21:30:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "ipnet"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "2.5.1"
|
2017-04-03 17:21:13 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "f88c5561171189e69df9d98bcf18fd5f9558300f7ea7b801eb8a0fd748bd8745"
|
2017-04-03 17:21:13 +03:00
|
|
|
|
2022-12-05 20:07:58 +03:00
|
|
|
[[package]]
|
|
|
|
name = "is-terminal"
|
2023-03-28 19:56:42 +03:00
|
|
|
version = "0.4.5"
|
2022-12-05 20:07:58 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-28 19:56:42 +03:00
|
|
|
checksum = "8687c819457e979cc940d09cb16e42a1bf70aa6b60a549de6d3a62a0ee90c69e"
|
2022-12-05 20:07:58 +03:00
|
|
|
dependencies = [
|
2023-03-28 19:56:42 +03:00
|
|
|
"hermit-abi 0.3.1",
|
2022-12-05 20:07:58 +03:00
|
|
|
"io-lifetimes 1.0.3",
|
|
|
|
"rustix 0.36.4",
|
2023-03-28 19:56:42 +03:00
|
|
|
"windows-sys 0.45.0",
|
2022-12-05 20:07:58 +03:00
|
|
|
]
|
|
|
|
|
2021-01-08 10:28:43 +03:00
|
|
|
[[package]]
|
|
|
|
name = "itertools"
|
2022-09-30 12:55:16 +03:00
|
|
|
version = "0.10.5"
|
2021-01-08 10:28:43 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-30 12:55:16 +03:00
|
|
|
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
2021-01-08 10:28:43 +03:00
|
|
|
dependencies = [
|
|
|
|
"either",
|
|
|
|
]
|
|
|
|
|
2022-02-12 22:19:08 +03:00
|
|
|
[[package]]
|
|
|
|
name = "itoa"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.0.4"
|
2022-11-14 14:54:39 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
|
2022-02-12 22:19:08 +03:00
|
|
|
|
Add jobserver support to sccache
This commit alters the main sccache server to operate and orchestrate its own
GNU make style jobserver. This is primarily intended for interoperation with
rustc itself.
The Rust compiler currently has a multithreaded mode where it will execute code
generation and optimization on the LLVM side of things in parallel. This
parallelism, however, can overload a machine quickly if not properly accounted
for (e.g. if 10 rustcs all spawn 10 threads...). The usage of a GNU make style
jobserver is intended to arbitrate and rate limit all these rustc instances to
ensure that one build's maximal parallelism never exceeds a particular amount.
Currently for Rust Cargo is the primary driver for setting up a jobserver. Cargo
will create this and manage this per compilation, ensuring that any one `cargo
build` invocation never exceeds a maximal parallelism. When sccache enters the
picture, however, the story gets slightly more odd.
The jobserver implementation on Unix relies on inheritance of file descriptors
in spawned processes. With sccache, however, there's no inheritance as the
actual rustc invocation is spawned by the server, not the client. In this case
the env vars used to configure the jobsever are usually incorrect.
To handle this problem this commit bakes a jobserver directly into sccache
itself. The jobserver then overrides whatever jobserver the client has
configured in its own env vars to ensure correct operation. The settings of each
jobserver may be misconfigured (there's no way to configure sccache's jobserver
right now), but hopefully that's not too much of a problem for the forseeable
future.
The implementation here was to provide a thin wrapper around the `jobserver`
crate with a futures-based interface. This interface was then hooked into the
mock command infrastructure to automatically acquire a jobserver token when
spawning a process and automatically drop the token when the process exits.
Additionally, all spawned processes will now automatically receive a configured
jobserver.
cc rust-lang/rust#42867, the original motivation for this commit
2017-09-27 19:14:51 +03:00
|
|
|
[[package]]
|
|
|
|
name = "jobserver"
|
2023-03-06 21:11:34 +03:00
|
|
|
version = "0.1.26"
|
Add jobserver support to sccache
This commit alters the main sccache server to operate and orchestrate its own
GNU make style jobserver. This is primarily intended for interoperation with
rustc itself.
The Rust compiler currently has a multithreaded mode where it will execute code
generation and optimization on the LLVM side of things in parallel. This
parallelism, however, can overload a machine quickly if not properly accounted
for (e.g. if 10 rustcs all spawn 10 threads...). The usage of a GNU make style
jobserver is intended to arbitrate and rate limit all these rustc instances to
ensure that one build's maximal parallelism never exceeds a particular amount.
Currently for Rust Cargo is the primary driver for setting up a jobserver. Cargo
will create this and manage this per compilation, ensuring that any one `cargo
build` invocation never exceeds a maximal parallelism. When sccache enters the
picture, however, the story gets slightly more odd.
The jobserver implementation on Unix relies on inheritance of file descriptors
in spawned processes. With sccache, however, there's no inheritance as the
actual rustc invocation is spawned by the server, not the client. In this case
the env vars used to configure the jobsever are usually incorrect.
To handle this problem this commit bakes a jobserver directly into sccache
itself. The jobserver then overrides whatever jobserver the client has
configured in its own env vars to ensure correct operation. The settings of each
jobserver may be misconfigured (there's no way to configure sccache's jobserver
right now), but hopefully that's not too much of a problem for the forseeable
future.
The implementation here was to provide a thin wrapper around the `jobserver`
crate with a futures-based interface. This interface was then hooked into the
mock command infrastructure to automatically acquire a jobserver token when
spawning a process and automatically drop the token when the process exits.
Additionally, all spawned processes will now automatically receive a configured
jobserver.
cc rust-lang/rust#42867, the original motivation for this commit
2017-09-27 19:14:51 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-06 21:11:34 +03:00
|
|
|
checksum = "936cfd212a0155903bcbc060e316fb6cc7cbf2e1907329391ebadc1fe0ce77c2"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
Add jobserver support to sccache
This commit alters the main sccache server to operate and orchestrate its own
GNU make style jobserver. This is primarily intended for interoperation with
rustc itself.
The Rust compiler currently has a multithreaded mode where it will execute code
generation and optimization on the LLVM side of things in parallel. This
parallelism, however, can overload a machine quickly if not properly accounted
for (e.g. if 10 rustcs all spawn 10 threads...). The usage of a GNU make style
jobserver is intended to arbitrate and rate limit all these rustc instances to
ensure that one build's maximal parallelism never exceeds a particular amount.
Currently for Rust Cargo is the primary driver for setting up a jobserver. Cargo
will create this and manage this per compilation, ensuring that any one `cargo
build` invocation never exceeds a maximal parallelism. When sccache enters the
picture, however, the story gets slightly more odd.
The jobserver implementation on Unix relies on inheritance of file descriptors
in spawned processes. With sccache, however, there's no inheritance as the
actual rustc invocation is spawned by the server, not the client. In this case
the env vars used to configure the jobsever are usually incorrect.
To handle this problem this commit bakes a jobserver directly into sccache
itself. The jobserver then overrides whatever jobserver the client has
configured in its own env vars to ensure correct operation. The settings of each
jobserver may be misconfigured (there's no way to configure sccache's jobserver
right now), but hopefully that's not too much of a problem for the forseeable
future.
The implementation here was to provide a thin wrapper around the `jobserver`
crate with a futures-based interface. This interface was then hooked into the
mock command infrastructure to automatically acquire a jobserver token when
spawning a process and automatically drop the token when the process exits.
Additionally, all spawned processes will now automatically receive a configured
jobserver.
cc rust-lang/rust#42867, the original motivation for this commit
2017-09-27 19:14:51 +03:00
|
|
|
|
2020-12-09 10:46:21 +03:00
|
|
|
[[package]]
|
|
|
|
name = "js-sys"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.3.60"
|
2020-12-09 10:46:21 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
|
2020-12-09 10:46:21 +03:00
|
|
|
dependencies = [
|
|
|
|
"wasm-bindgen",
|
|
|
|
]
|
|
|
|
|
2017-05-06 03:02:48 +03:00
|
|
|
[[package]]
|
|
|
|
name = "jsonwebtoken"
|
2022-12-12 20:12:01 +03:00
|
|
|
version = "8.2.0"
|
2019-10-31 20:57:15 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-12 20:12:01 +03:00
|
|
|
checksum = "09f4f04699947111ec1733e71778d763555737579e44b85844cae8e1940a1828"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2022-12-13 15:18:36 +03:00
|
|
|
"base64 0.13.1",
|
2020-12-09 10:46:21 +03:00
|
|
|
"pem",
|
2020-03-20 22:13:32 +03:00
|
|
|
"ring",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2020-12-09 10:46:21 +03:00
|
|
|
"simple_asn1",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2017-05-06 03:02:48 +03:00
|
|
|
|
2018-01-07 18:33:04 +03:00
|
|
|
[[package]]
|
|
|
|
name = "lazy_static"
|
2019-12-10 00:17:20 +03:00
|
|
|
version = "1.4.0"
|
Rewrite the server module with Tokio
This commit rewrites the `server` module of sccache to be backed with Tokio. The
previous version was written with `mio`, which Tokio is built on, but is
unfortunately less ergonomic. Tokio is the state-of-the-art for asynchronous
programming in Rust and sccache serves as a great testing ground for ergonomics!
It's intended that the support added here will eventually extend to many other
operations that sccache does as well. For example thread spawning has all been
replaced with `CpuPool` to have a shared pool for I/O operations and such
(namely the filesystem). Eventually the HTTP requests made by the S3 backend can
be integrated with the Tokio branch of Hyper as well to run that on the event
loop instead of in a worker thread. I'd also like to eventually extend this with
`tokio-process` as well to move process spawning off helper threads as well, but
I'm leaving that to a future commit as well.
Overall I found the transition was quite smooth, with the high level
architecture look like:
* The `tokio-proto` crate is used in streaming mode. The streaming part is used
for the one RPC sccache gets which requires a second response to be sent later
on. This second response is the "response body" in tokio-proto terms.
* All of sccache's logic is manifested in an implementation of the `Service`
trait.
* The transport layer is provided with `tokio_core::io::{Framed, Codec}`, and
simple deserialization/serialization is performed with protobuf.
Some differences in design are:
* The `SccacheService` for now is just a bunch of reference-counted pointers,
making it cheap to clone. As the futures it returns progress they will each
retain a reference to a cloned copy of the `SccacheService`. Before all this
data was just stored and manipulated in a struct directly, but it's now
directly managed through shared memory.
* The storage backends share a thread pool with the main server instead of
spawning threads.
And finally, some things I've learned along the way:
* Sharing data between futures isn't a trivial operation. It took an explicit
decision to use `Rc` and I'm not sure I'm 100% happy with how the ergonomics
played out.
* Shutdown is pretty tricky here. I've tried to carry over all the previous
logic but it definitely required not using `TcpServer` in tokio-proto at the
very least, and otherwise required a few custom futures and such to track the
various states. I have a hunch that tokio-proto could provide more options out
of the box for something like this.
2017-01-31 04:04:03 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-18 18:07:45 +03:00
|
|
|
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
|
2023-03-03 14:42:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"spin 0.5.2",
|
|
|
|
]
|
Rewrite the server module with Tokio
This commit rewrites the `server` module of sccache to be backed with Tokio. The
previous version was written with `mio`, which Tokio is built on, but is
unfortunately less ergonomic. Tokio is the state-of-the-art for asynchronous
programming in Rust and sccache serves as a great testing ground for ergonomics!
It's intended that the support added here will eventually extend to many other
operations that sccache does as well. For example thread spawning has all been
replaced with `CpuPool` to have a shared pool for I/O operations and such
(namely the filesystem). Eventually the HTTP requests made by the S3 backend can
be integrated with the Tokio branch of Hyper as well to run that on the event
loop instead of in a worker thread. I'd also like to eventually extend this with
`tokio-process` as well to move process spawning off helper threads as well, but
I'm leaving that to a future commit as well.
Overall I found the transition was quite smooth, with the high level
architecture look like:
* The `tokio-proto` crate is used in streaming mode. The streaming part is used
for the one RPC sccache gets which requires a second response to be sent later
on. This second response is the "response body" in tokio-proto terms.
* All of sccache's logic is manifested in an implementation of the `Service`
trait.
* The transport layer is provided with `tokio_core::io::{Framed, Codec}`, and
simple deserialization/serialization is performed with protobuf.
Some differences in design are:
* The `SccacheService` for now is just a bunch of reference-counted pointers,
making it cheap to clone. As the futures it returns progress they will each
retain a reference to a cloned copy of the `SccacheService`. Before all this
data was just stored and manipulated in a struct directly, but it's now
directly managed through shared memory.
* The storage backends share a thread pool with the main server instead of
spawning threads.
And finally, some things I've learned along the way:
* Sharing data between futures isn't a trivial operation. It took an explicit
decision to use `Rc` and I'm not sure I'm 100% happy with how the ergonomics
played out.
* Shutdown is pretty tricky here. I've tried to carry over all the previous
logic but it definitely required not using `TcpServer` in tokio-proto at the
very least, and otherwise required a few custom futures and such to track the
various states. I have a hunch that tokio-proto could provide more options out
of the box for something like this.
2017-01-31 04:04:03 +03:00
|
|
|
|
2016-05-12 22:03:37 +03:00
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2023-03-13 21:08:23 +03:00
|
|
|
version = "0.2.140"
|
2016-05-12 22:03:37 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-13 21:08:23 +03:00
|
|
|
checksum = "99227334921fae1a979cf0bfdfcc6b3e5ce376ef57e16fb6fb3ea2ed6095f80c"
|
2016-05-12 22:03:37 +03:00
|
|
|
|
2023-03-03 14:42:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "libm"
|
|
|
|
version = "0.2.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "348108ab3fba42ec82ff6e9564fc4ca0247bdccdc68dd8af9764bbc79c3c8ffb"
|
|
|
|
|
2018-07-15 16:37:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "libmount"
|
2019-12-10 00:17:20 +03:00
|
|
|
version = "0.1.15"
|
2018-07-15 16:37:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-18 18:07:45 +03:00
|
|
|
checksum = "23c4c2ad2d5cbd2f5a05620c3daf45930add53ec207fa99ce5eec971089dc35f"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"nix 0.14.1",
|
|
|
|
"quick-error",
|
|
|
|
]
|
2018-07-15 16:37:46 +03:00
|
|
|
|
2016-11-29 03:59:42 +03:00
|
|
|
[[package]]
|
|
|
|
name = "linked-hash-map"
|
2022-06-27 22:46:28 +03:00
|
|
|
version = "0.5.6"
|
2016-11-29 03:59:42 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-06-27 22:46:28 +03:00
|
|
|
checksum = "0717cef1bc8b636c6e1c1bbdefc09e6322da8a9321966e8928ef80d20f7f770f"
|
2016-11-29 03:59:42 +03:00
|
|
|
|
2022-04-01 06:38:11 +03:00
|
|
|
[[package]]
|
|
|
|
name = "linux-raw-sys"
|
2022-11-30 08:59:42 +03:00
|
|
|
version = "0.0.46"
|
2022-04-01 06:38:11 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-30 08:59:42 +03:00
|
|
|
checksum = "d4d2456c373231a208ad294c33dc5bff30051eafd954cd4caae83a712b12854d"
|
2022-04-01 06:38:11 +03:00
|
|
|
|
2022-12-05 20:07:58 +03:00
|
|
|
[[package]]
|
|
|
|
name = "linux-raw-sys"
|
|
|
|
version = "0.1.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8f9f08d8963a6c613f4b1a78f4f4a4dbfadf8e6545b2d72861731e4858b8b47f"
|
|
|
|
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
[[package]]
|
|
|
|
name = "lock_api"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.4.9"
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
dependencies = [
|
2022-11-27 06:11:42 +03:00
|
|
|
"autocfg",
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
"scopeguard",
|
|
|
|
]
|
|
|
|
|
2016-05-12 22:03:37 +03:00
|
|
|
[[package]]
|
|
|
|
name = "log"
|
2023-06-12 21:02:14 +03:00
|
|
|
version = "0.4.19"
|
2017-10-06 02:40:25 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-12 21:02:14 +03:00
|
|
|
checksum = "b06a4cde4c0f271a446782e3eff8de789548ce57dbc8eca9292c27f4a42004b4"
|
2017-10-06 02:40:25 +03:00
|
|
|
|
2023-04-19 15:30:29 +03: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",
|
|
|
|
]
|
|
|
|
|
2022-05-05 17:47:19 +03:00
|
|
|
[[package]]
|
|
|
|
name = "match_cfg"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ffbee8634e0d45d258acb448e7eaab3fce7a0a467395d4d9f228e3c1f01fb2e4"
|
|
|
|
|
2023-04-19 15:30:29 +03:00
|
|
|
[[package]]
|
|
|
|
name = "matches"
|
|
|
|
version = "0.1.10"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5"
|
|
|
|
|
2019-10-25 02:43:35 +03:00
|
|
|
[[package]]
|
|
|
|
name = "md-5"
|
2022-09-23 23:39:24 +03:00
|
|
|
version = "0.10.5"
|
2019-10-25 02:43:35 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-23 23:39:24 +03:00
|
|
|
checksum = "6365506850d44bff6e2fbcb5176cf63650e48bd45ef2fe2665ae1570e0f4b9ca"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2022-05-05 17:47:19 +03:00
|
|
|
"digest",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2019-10-25 02:43:35 +03:00
|
|
|
|
2016-05-12 22:03:37 +03:00
|
|
|
[[package]]
|
|
|
|
name = "memchr"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "2.5.0"
|
2017-02-02 03:30:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d"
|
2017-02-02 03:30:26 +03:00
|
|
|
|
2023-05-27 01:01:19 +03:00
|
|
|
[[package]]
|
|
|
|
name = "memmap2"
|
|
|
|
version = "0.6.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6d28bba84adfe6646737845bc5ebbfa2c08424eb1c37e94a1fd2a82adb56a872"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2022-02-12 20:15:15 +03:00
|
|
|
[[package]]
|
|
|
|
name = "memoffset"
|
2022-12-05 20:07:50 +03:00
|
|
|
version = "0.7.1"
|
2022-02-12 20:15:15 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-05 20:07:50 +03:00
|
|
|
checksum = "5de893c32cde5f383baa4c04c5d6dbdd735cfd4a794b0debdb2bb1b421da5ff4"
|
2022-02-12 20:15:15 +03:00
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
|
|
|
|
2016-06-03 22:09:38 +03:00
|
|
|
[[package]]
|
|
|
|
name = "mime"
|
2023-03-20 21:05:59 +03:00
|
|
|
version = "0.3.17"
|
2016-06-03 22:09:38 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-20 21:05:59 +03:00
|
|
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
2016-06-03 22:09:38 +03:00
|
|
|
|
2018-07-12 02:38:16 +03:00
|
|
|
[[package]]
|
|
|
|
name = "mime_guess"
|
2022-05-05 17:47:19 +03:00
|
|
|
version = "2.0.4"
|
2018-07-12 02:38:16 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-05 17:47:19 +03:00
|
|
|
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2021-11-12 15:28:26 +03:00
|
|
|
"mime",
|
|
|
|
"unicase",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-07-12 02:38:16 +03:00
|
|
|
|
2020-12-08 08:07:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "miniz_oxide"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.6.2"
|
2020-12-08 08:07:09 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "b275950c28b37e794e8c55d88aeb5e139d0ce23fdbbeda68f8d7174abdf9e8fa"
|
2020-12-08 08:07:09 +03:00
|
|
|
dependencies = [
|
|
|
|
"adler",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-05-12 22:03:37 +03:00
|
|
|
|
2023-05-30 10:59:07 +03:00
|
|
|
[[package]]
|
|
|
|
name = "miniz_oxide"
|
|
|
|
version = "0.7.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
|
|
|
|
dependencies = [
|
|
|
|
"adler",
|
|
|
|
]
|
|
|
|
|
2017-02-01 03:19:35 +03:00
|
|
|
[[package]]
|
2021-11-12 15:28:26 +03:00
|
|
|
name = "mio"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.8.5"
|
2017-02-01 03:19:35 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
2021-11-12 15:28:26 +03:00
|
|
|
"log",
|
2023-05-09 06:44:41 +03:00
|
|
|
"wasi",
|
2022-11-27 06:11:42 +03:00
|
|
|
"windows-sys 0.42.0",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-01-07 18:33:04 +03:00
|
|
|
|
2018-07-12 02:38:16 +03:00
|
|
|
[[package]]
|
|
|
|
name = "multipart"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "0.18.0"
|
2018-07-12 02:38:16 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"buf_redux",
|
|
|
|
"httparse",
|
2021-11-12 15:28:26 +03:00
|
|
|
"log",
|
|
|
|
"mime",
|
|
|
|
"mime_guess",
|
2020-12-09 11:44:58 +03:00
|
|
|
"quick-error",
|
2023-05-09 06:44:41 +03:00
|
|
|
"rand",
|
2020-12-09 11:44:58 +03:00
|
|
|
"safemem",
|
2021-11-12 15:28:26 +03:00
|
|
|
"tempfile",
|
2020-03-20 22:13:32 +03:00
|
|
|
"twoway",
|
|
|
|
]
|
2018-07-12 02:38:16 +03:00
|
|
|
|
2022-05-20 18:00:35 +03:00
|
|
|
[[package]]
|
|
|
|
name = "nanorand"
|
|
|
|
version = "0.7.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6a51313c5820b0b02bd422f4b44776fbf47961755c74ce64afc73bfad10226c3"
|
|
|
|
dependencies = [
|
2023-05-09 06:44:41 +03:00
|
|
|
"getrandom",
|
2022-05-20 18:00:35 +03:00
|
|
|
]
|
|
|
|
|
2018-09-27 17:30:22 +03:00
|
|
|
[[package]]
|
|
|
|
name = "native-tls"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.11"
|
2018-09-27 17:30:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
|
|
|
"libc",
|
2021-11-12 15:28:26 +03:00
|
|
|
"log",
|
2020-03-20 22:13:32 +03:00
|
|
|
"openssl",
|
|
|
|
"openssl-probe",
|
|
|
|
"openssl-sys",
|
|
|
|
"schannel",
|
|
|
|
"security-framework",
|
|
|
|
"security-framework-sys",
|
|
|
|
"tempfile",
|
|
|
|
]
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2018-07-15 16:37:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "nix"
|
2020-06-11 06:10:33 +03:00
|
|
|
version = "0.14.1"
|
2018-07-15 16:37:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-11 06:10:33 +03:00
|
|
|
checksum = "6c722bee1037d430d0f8e687bbdbf222f27cc6e4e68d5caf630857bb2b6dbdce"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2023-03-28 12:27:58 +03:00
|
|
|
"bitflags 1.3.2",
|
2020-03-20 22:13:32 +03:00
|
|
|
"cc",
|
2020-12-08 08:07:09 +03:00
|
|
|
"cfg-if 0.1.10",
|
2020-03-20 22:13:32 +03:00
|
|
|
"libc",
|
|
|
|
"void",
|
|
|
|
]
|
2018-07-15 16:37:46 +03:00
|
|
|
|
2018-08-27 17:23:32 +03:00
|
|
|
[[package]]
|
2019-12-10 00:17:20 +03:00
|
|
|
name = "nix"
|
2023-01-18 11:51:12 +03:00
|
|
|
version = "0.26.2"
|
2018-08-27 17:23:32 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-18 11:51:12 +03:00
|
|
|
checksum = "bfdda3d196821d6af13126e40375cdf7da646a96114af134d5f417a9a1dc8e1a"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2023-03-28 12:27:58 +03:00
|
|
|
"bitflags 1.3.2",
|
2020-12-10 01:56:41 +03:00
|
|
|
"cfg-if 1.0.0",
|
2020-03-20 22:13:32 +03:00
|
|
|
"libc",
|
2022-02-12 20:15:15 +03:00
|
|
|
"memoffset",
|
2022-08-15 20:45:30 +03:00
|
|
|
"pin-utils",
|
2022-12-05 20:07:50 +03:00
|
|
|
"static_assertions",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-08-27 17:23:32 +03:00
|
|
|
|
2018-08-28 14:29:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "normalize-line-endings"
|
update test harness crates
This patch looks like a routine crate version update, but it fixes
something very fundamentally wrong with the tests: `escargot`, to find
the `sccache` binary during tests, would actually run `cargo build` and
parse the output. There were all manner of hacks to try and build the
binary with the correct set of features, none of which were reliable,
and the hacks were not reliably present in all places, either.
When the hacks were not present, `escargot` would rebuild the entire
sccache crate, which was responsible for the `sccache_cargo` test taking
entirely too long. When the hacks failed utterly, perfectly fine
patches would mysteriously fail, as seen in #774.
We can get rid of `escargot` because `assert-cmd` has been updated to a)
not use `escargot` under the hood; and b) do something smarter to locate
the target binary. The upshot is fewer mysterious test failures and
significantly faster running tests.
2020-06-05 01:34:11 +03:00
|
|
|
version = "0.3.0"
|
2018-08-28 14:29:00 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
update test harness crates
This patch looks like a routine crate version update, but it fixes
something very fundamentally wrong with the tests: `escargot`, to find
the `sccache` binary during tests, would actually run `cargo build` and
parse the output. There were all manner of hacks to try and build the
binary with the correct set of features, none of which were reliable,
and the hacks were not reliably present in all places, either.
When the hacks were not present, `escargot` would rebuild the entire
sccache crate, which was responsible for the `sccache_cargo` test taking
entirely too long. When the hacks failed utterly, perfectly fine
patches would mysteriously fail, as seen in #774.
We can get rid of `escargot` because `assert-cmd` has been updated to a)
not use `escargot` under the hood; and b) do something smarter to locate
the target binary. The upshot is fewer mysterious test failures and
significantly faster running tests.
2020-06-05 01:34:11 +03:00
|
|
|
checksum = "61807f77802ff30975e01f4f071c8ba10c022052f98b3294119f3e615d13e5be"
|
2018-08-28 14:29:00 +03:00
|
|
|
|
2020-12-09 10:46:21 +03:00
|
|
|
[[package]]
|
|
|
|
name = "num-bigint"
|
2022-05-05 17:47:19 +03:00
|
|
|
version = "0.4.3"
|
2020-12-09 10:46:21 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-05 17:47:19 +03:00
|
|
|
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
|
2020-12-09 10:46:21 +03:00
|
|
|
dependencies = [
|
2021-12-06 19:22:21 +03:00
|
|
|
"autocfg",
|
2020-12-09 10:46:21 +03:00
|
|
|
"num-integer",
|
2020-04-29 16:48:55 +03:00
|
|
|
"num-traits",
|
2020-12-09 10:46:21 +03:00
|
|
|
]
|
|
|
|
|
2023-03-03 14:42:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "num-bigint-dig"
|
|
|
|
version = "0.8.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2399c9463abc5f909349d8aa9ba080e0b88b3ce2885389b60b993f39b1a56905"
|
|
|
|
dependencies = [
|
|
|
|
"byteorder",
|
|
|
|
"lazy_static",
|
|
|
|
"libm",
|
|
|
|
"num-integer",
|
|
|
|
"num-iter",
|
|
|
|
"num-traits",
|
2023-05-09 06:44:41 +03:00
|
|
|
"rand",
|
2023-03-03 14:42:32 +03:00
|
|
|
"smallvec",
|
|
|
|
"zeroize",
|
|
|
|
]
|
|
|
|
|
2016-05-12 22:46:22 +03:00
|
|
|
[[package]]
|
|
|
|
name = "num-integer"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.1.45"
|
2016-05-12 22:46:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2021-12-06 19:22:21 +03:00
|
|
|
"autocfg",
|
2020-04-29 16:48:55 +03:00
|
|
|
"num-traits",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-05-12 22:46:22 +03:00
|
|
|
|
2023-03-03 14:42:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "num-iter"
|
|
|
|
version = "0.1.43"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7d03e6c028c5dc5cac6e2dec0efda81fc887605bb3d884578bb6d6bf7514e252"
|
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
"num-integer",
|
|
|
|
"num-traits",
|
|
|
|
]
|
|
|
|
|
2018-07-26 22:52:50 +03:00
|
|
|
[[package]]
|
|
|
|
name = "num-traits"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.15"
|
2018-07-26 22:52:50 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2021-12-06 19:22:21 +03:00
|
|
|
"autocfg",
|
2023-03-03 14:42:32 +03:00
|
|
|
"libm",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-07-26 22:52:50 +03:00
|
|
|
|
2016-06-03 22:09:38 +03:00
|
|
|
[[package]]
|
|
|
|
name = "num_cpus"
|
2023-01-02 20:09:00 +03:00
|
|
|
version = "1.15.0"
|
2016-06-03 22:09:38 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-02 20:09:00 +03:00
|
|
|
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2023-01-02 20:09:00 +03:00
|
|
|
"hermit-abi 0.2.6",
|
2020-03-20 22:13:32 +03:00
|
|
|
"libc",
|
|
|
|
]
|
2016-06-03 22:09:38 +03:00
|
|
|
|
2022-05-05 17:47:19 +03:00
|
|
|
[[package]]
|
|
|
|
name = "num_threads"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.1.6"
|
2022-05-05 17:47:19 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "2819ce041d2ee131036f4fc9d6ae7ae125a3a40e97ba64d04fe799ad9dabbb44"
|
2022-05-05 17:47:19 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2016-05-12 22:46:22 +03:00
|
|
|
[[package]]
|
|
|
|
name = "number_prefix"
|
2020-12-10 02:03:49 +03:00
|
|
|
version = "0.4.0"
|
2016-05-12 22:46:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-12-10 02:03:49 +03:00
|
|
|
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
|
2016-05-12 22:46:22 +03:00
|
|
|
|
2023-05-25 08:35:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "object"
|
|
|
|
version = "0.30.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ea86265d3d3dcb6a27fc51bd29a4bf387fae9d2986b823079d4986af253eb439"
|
|
|
|
dependencies = [
|
2023-05-27 01:01:19 +03:00
|
|
|
"flate2",
|
2023-05-25 08:35:00 +03:00
|
|
|
"memchr",
|
|
|
|
]
|
|
|
|
|
2020-06-11 04:40:05 +03:00
|
|
|
[[package]]
|
|
|
|
name = "once_cell"
|
2023-04-10 21:02:23 +03:00
|
|
|
version = "1.17.1"
|
2020-06-11 04:40:05 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-10 21:02:23 +03:00
|
|
|
checksum = "b7e5500299e16ebb147ae15a00a942af264cf3688f47923b8fc2cd5858f23ad3"
|
2020-06-11 04:40:05 +03:00
|
|
|
|
2022-12-11 15:23:27 +03:00
|
|
|
[[package]]
|
|
|
|
name = "opendal"
|
2023-06-07 03:13:10 +03:00
|
|
|
version = "0.37.0"
|
2022-12-11 15:23:27 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-07 03:13:10 +03:00
|
|
|
checksum = "6a37de9fe637d53550bf3f76d5c731f69cb6f9685ada6afd390ada98994a3f91"
|
2022-12-11 15:23:27 +03:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"async-compat",
|
|
|
|
"async-trait",
|
|
|
|
"backon",
|
2023-01-12 23:41:38 +03:00
|
|
|
"base64 0.21.0",
|
2023-01-14 04:43:01 +03:00
|
|
|
"bb8",
|
2022-12-11 15:23:27 +03:00
|
|
|
"bytes",
|
2023-05-09 18:25:20 +03:00
|
|
|
"chrono",
|
2022-12-11 15:23:27 +03:00
|
|
|
"flagset",
|
|
|
|
"futures",
|
|
|
|
"http",
|
2023-02-12 00:49:41 +03:00
|
|
|
"hyper",
|
2022-12-11 15:23:27 +03:00
|
|
|
"log",
|
|
|
|
"md-5",
|
|
|
|
"once_cell",
|
|
|
|
"parking_lot",
|
|
|
|
"percent-encoding",
|
|
|
|
"pin-project",
|
2023-03-27 22:05:30 +03:00
|
|
|
"quick-xml 0.27.1",
|
2022-12-27 06:36:39 +03:00
|
|
|
"redis",
|
2022-12-11 15:23:27 +03:00
|
|
|
"reqsign",
|
|
|
|
"reqwest",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2023-06-07 03:13:10 +03:00
|
|
|
"sha2",
|
2022-12-11 15:23:27 +03:00
|
|
|
"tokio",
|
|
|
|
"uuid",
|
|
|
|
]
|
|
|
|
|
2018-08-28 15:25:42 +03:00
|
|
|
[[package]]
|
|
|
|
name = "openssl"
|
2023-04-03 21:05:09 +03:00
|
|
|
version = "0.10.49"
|
2018-08-28 15:25:42 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-03 21:05:09 +03:00
|
|
|
checksum = "4d2f106ab837a24e03672c59b1239669a0596406ff657c3c0835b6b7f0f35a33"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2023-03-28 12:27:58 +03:00
|
|
|
"bitflags 1.3.2",
|
2020-12-10 03:19:32 +03:00
|
|
|
"cfg-if 1.0.0",
|
2020-03-20 22:13:32 +03:00
|
|
|
"foreign-types",
|
|
|
|
"libc",
|
2021-11-12 15:28:26 +03:00
|
|
|
"once_cell",
|
2022-06-22 08:25:47 +03:00
|
|
|
"openssl-macros",
|
2020-03-20 22:13:32 +03:00
|
|
|
"openssl-sys",
|
|
|
|
]
|
2018-08-28 15:25:42 +03:00
|
|
|
|
2022-06-22 08:25:47 +03:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-macros"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-04-03 21:03:41 +03:00
|
|
|
"syn 1.0.104",
|
2022-06-22 08:25:47 +03:00
|
|
|
]
|
|
|
|
|
2018-09-27 17:30:22 +03:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-probe"
|
2022-02-12 22:19:08 +03:00
|
|
|
version = "0.1.5"
|
2018-09-27 17:30:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 22:19:08 +03:00
|
|
|
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2023-03-10 03:07:45 +03:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-src"
|
|
|
|
version = "111.25.1+1.1.1t"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1ef9a9cc6ea7d9d5e7c4a913dc4b48d0e359eddf01af1dfec96ba7064b4aba10"
|
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
]
|
|
|
|
|
2017-02-02 03:30:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "openssl-sys"
|
2023-04-03 21:05:09 +03:00
|
|
|
version = "0.9.84"
|
2017-02-02 03:30:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-03 21:05:09 +03:00
|
|
|
checksum = "3a20eace9dc2d82904039cb76dcf50fb1a0bba071cfd1629720b5d6f1ddba0fa"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
2023-03-10 03:07:45 +03:00
|
|
|
"openssl-src",
|
2020-03-20 22:13:32 +03:00
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
|
|
|
]
|
2018-08-28 14:29:00 +03:00
|
|
|
|
2022-12-11 15:23:27 +03:00
|
|
|
[[package]]
|
|
|
|
name = "ordered-multimap"
|
2023-05-09 18:25:20 +03:00
|
|
|
version = "0.6.0"
|
2022-12-11 15:23:27 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-09 18:25:20 +03:00
|
|
|
checksum = "4ed8acf08e98e744e5384c8bc63ceb0364e68a6854187221c18df61c4797690e"
|
2022-12-11 15:23:27 +03:00
|
|
|
dependencies = [
|
|
|
|
"dlv-list",
|
2023-05-09 18:25:20 +03:00
|
|
|
"hashbrown 0.13.2",
|
2022-12-11 15:23:27 +03:00
|
|
|
]
|
|
|
|
|
2022-03-11 07:33:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "os_str_bytes"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "6.4.1"
|
2022-03-11 07:33:09 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "9b7820b9daea5457c9f21c69448905d723fbd21136ccf521748f23fd49e723ee"
|
2022-03-11 07:33:09 +03:00
|
|
|
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
[[package]]
|
|
|
|
name = "parking_lot"
|
2022-06-22 08:26:49 +03:00
|
|
|
version = "0.12.1"
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-06-22 08:26:49 +03:00
|
|
|
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
dependencies = [
|
|
|
|
"lock_api",
|
|
|
|
"parking_lot_core",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "parking_lot_core"
|
2022-11-30 08:59:42 +03:00
|
|
|
version = "0.9.4"
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-30 08:59:42 +03:00
|
|
|
checksum = "4dc9e0dc2adc1c69d09143aff38d3d30c5c3f0df0dad82e6d25547af174ebec0"
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if 1.0.0",
|
|
|
|
"libc",
|
|
|
|
"redox_syscall",
|
|
|
|
"smallvec",
|
2022-11-27 06:11:42 +03:00
|
|
|
"windows-sys 0.42.0",
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
]
|
|
|
|
|
2020-12-09 10:46:21 +03:00
|
|
|
[[package]]
|
|
|
|
name = "pem"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.1.0"
|
2020-12-09 10:46:21 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "03c64931a1a212348ec4f3b4362585eca7159d0d09cbdf4a7f74f02173596fd4"
|
2020-12-09 10:46:21 +03:00
|
|
|
dependencies = [
|
2022-12-13 15:18:36 +03:00
|
|
|
"base64 0.13.1",
|
2020-12-09 10:46:21 +03:00
|
|
|
]
|
|
|
|
|
2023-03-03 14:42:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "pem-rfc7468"
|
2023-06-07 03:13:10 +03:00
|
|
|
version = "0.7.0"
|
2023-03-03 14:42:32 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-07 03:13:10 +03:00
|
|
|
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
|
2023-03-03 14:42:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"base64ct",
|
|
|
|
]
|
|
|
|
|
2019-12-10 00:17:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "percent-encoding"
|
2023-03-06 21:11:10 +03:00
|
|
|
version = "2.2.0"
|
2019-12-10 00:17:20 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-06 21:11:10 +03:00
|
|
|
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"
|
2019-12-10 00:17:20 +03:00
|
|
|
|
2021-04-08 21:30:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "pin-project"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.0.12"
|
2020-04-29 16:48:55 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
|
2020-04-29 16:48:55 +03:00
|
|
|
dependencies = [
|
2021-11-12 15:28:26 +03:00
|
|
|
"pin-project-internal",
|
2020-04-29 16:48:55 +03:00
|
|
|
]
|
|
|
|
|
2021-04-08 21:30:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "pin-project-internal"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.0.12"
|
2021-04-08 21:30:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
|
2021-04-08 21:30:17 +03:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-04-03 21:03:41 +03:00
|
|
|
"syn 1.0.104",
|
2021-04-08 21:30:17 +03:00
|
|
|
]
|
|
|
|
|
2020-12-08 08:07:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "pin-project-lite"
|
2022-01-03 03:22:14 +03:00
|
|
|
version = "0.2.9"
|
2020-12-08 08:07:09 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-03 03:22:14 +03:00
|
|
|
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"
|
2020-04-28 08:28:17 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pin-utils"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
|
|
|
|
|
2023-03-03 14:42:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "pkcs1"
|
2023-06-07 03:13:10 +03:00
|
|
|
version = "0.7.5"
|
2023-03-03 14:42:32 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-07 03:13:10 +03:00
|
|
|
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
|
2023-03-03 14:42:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"der",
|
|
|
|
"pkcs8",
|
|
|
|
"spki",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "pkcs8"
|
2023-06-07 03:13:10 +03:00
|
|
|
version = "0.10.2"
|
2023-03-03 14:42:32 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-07 03:13:10 +03:00
|
|
|
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
|
2023-03-03 14:42:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"der",
|
|
|
|
"spki",
|
|
|
|
]
|
|
|
|
|
2017-02-02 03:30:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "pkg-config"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.3.26"
|
2017-02-02 03:30:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "6ac9a59f73473f1b8d852421e59e64809f025994837ef743615c6d0c5b305160"
|
2016-05-21 21:14:26 +03:00
|
|
|
|
2019-12-10 00:17:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "ppv-lite86"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.17"
|
2019-12-10 00:17:20 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
|
2019-12-10 00:17:20 +03:00
|
|
|
|
2023-03-27 21:44:58 +03:00
|
|
|
[[package]]
|
|
|
|
name = "predicates"
|
|
|
|
version = "3.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c575290b64d24745b6c57a12a31465f0a66f3a4799686a6921526a33b0797965"
|
|
|
|
dependencies = [
|
|
|
|
"anstyle",
|
2022-02-12 19:58:37 +03:00
|
|
|
"difflib",
|
2020-03-20 22:13:32 +03:00
|
|
|
"float-cmp",
|
2022-02-12 19:58:37 +03:00
|
|
|
"itertools",
|
2020-03-20 22:13:32 +03:00
|
|
|
"normalize-line-endings",
|
|
|
|
"predicates-core",
|
|
|
|
"regex",
|
|
|
|
]
|
2018-08-28 14:29:00 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "predicates-core"
|
2023-03-27 22:05:51 +03:00
|
|
|
version = "1.0.6"
|
2018-08-28 14:29:00 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-27 22:05:51 +03:00
|
|
|
checksum = "b794032607612e7abeb4db69adb4e33590fa6cf1149e95fd7cb00e634b92f174"
|
2018-08-28 14:29:00 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "predicates-tree"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.0.7"
|
2018-08-28 14:29:00 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "54ff541861505aabf6ea722d2131ee980b8276e10a1297b94e896dd8b621850d"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"predicates-core",
|
2021-11-12 15:28:26 +03:00
|
|
|
"termtree",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-08-28 14:29:00 +03:00
|
|
|
|
2022-05-05 17:47:19 +03: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-04-03 21:03:41 +03:00
|
|
|
"syn 1.0.104",
|
2022-05-05 17:47:19 +03: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",
|
|
|
|
]
|
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-hack"
|
|
|
|
version = "0.5.20+deprecated"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
|
|
|
|
|
2018-08-28 14:29:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2023-04-03 21:03:41 +03:00
|
|
|
version = "1.0.56"
|
2018-08-28 14:29:00 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-03 21:03:41 +03:00
|
|
|
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2022-06-21 15:44:46 +03:00
|
|
|
"unicode-ident",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2019-11-11 00:25:05 +03:00
|
|
|
|
2018-07-15 16:37:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "quick-error"
|
2020-04-28 07:55:50 +03:00
|
|
|
version = "1.2.3"
|
2018-07-15 16:37:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-04-28 07:55:50 +03:00
|
|
|
checksum = "a1d01941d82fa2ab50be1e79e6714289dd7cde78eba4c074bc5a4374f650dfe0"
|
2018-07-15 16:37:46 +03:00
|
|
|
|
2022-12-11 15:23:27 +03:00
|
|
|
[[package]]
|
|
|
|
name = "quick-xml"
|
2023-01-08 15:59:36 +03:00
|
|
|
version = "0.27.1"
|
2022-12-11 15:23:27 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-08 15:59:36 +03:00
|
|
|
checksum = "ffc053f057dd768a56f62cd7e434c42c831d296968997e9ac1f76ea7c2d14c41"
|
2022-12-11 15:23:27 +03:00
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2023-03-27 22:05:30 +03:00
|
|
|
[[package]]
|
|
|
|
name = "quick-xml"
|
|
|
|
version = "0.28.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e5c1a97b1bc42b1d550bfb48d4262153fe400a12bab1511821736f7eac76d7e2"
|
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2018-08-28 14:29:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "quote"
|
2023-04-03 21:03:41 +03:00
|
|
|
version = "1.0.26"
|
2018-08-28 14:29:00 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-03 21:03:41 +03:00
|
|
|
checksum = "4424af4bf778aae2051a77b60283332f386554255d722233d09fbfc7e30da2fc"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
]
|
2018-08-28 14:29:00 +03:00
|
|
|
|
2021-11-12 15:28:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "rand"
|
2022-05-05 17:47:19 +03:00
|
|
|
version = "0.8.5"
|
2021-11-12 15:28:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-05 17:47:19 +03:00
|
|
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
|
2021-11-12 15:28:26 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
2023-05-09 06:44:41 +03:00
|
|
|
"rand_chacha",
|
|
|
|
"rand_core",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-05-12 22:03:37 +03:00
|
|
|
|
2021-11-12 15:28:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "rand_chacha"
|
|
|
|
version = "0.3.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
|
|
|
|
dependencies = [
|
|
|
|
"ppv-lite86",
|
2023-05-09 06:44:41 +03:00
|
|
|
"rand_core",
|
2021-11-12 15:28:26 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rand_core"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.6.4"
|
2021-11-12 15:28:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
|
2021-11-12 15:28:26 +03:00
|
|
|
dependencies = [
|
2023-05-09 06:44:41 +03:00
|
|
|
"getrandom",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2017-02-16 22:56:41 +03:00
|
|
|
[[package]]
|
|
|
|
name = "redis"
|
2022-12-27 06:36:39 +03:00
|
|
|
version = "0.22.1"
|
2017-02-16 22:56:41 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-27 06:36:39 +03:00
|
|
|
checksum = "513b3649f1a111c17954296e4a3b9eecb108b766c803e2b99f179ebe27005985"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2022-12-27 06:36:39 +03:00
|
|
|
"arc-swap",
|
2020-12-09 11:44:58 +03:00
|
|
|
"async-trait",
|
2022-11-14 08:25:38 +03:00
|
|
|
"bytes",
|
2020-03-20 22:13:32 +03:00
|
|
|
"combine",
|
2022-12-27 06:36:39 +03:00
|
|
|
"futures",
|
2020-04-29 11:59:38 +03:00
|
|
|
"futures-util",
|
2022-11-27 06:11:42 +03:00
|
|
|
"itoa",
|
2022-02-12 20:46:53 +03:00
|
|
|
"percent-encoding",
|
2022-02-16 08:40:31 +03:00
|
|
|
"pin-project-lite",
|
2022-11-27 06:11:42 +03:00
|
|
|
"ryu",
|
2022-12-27 06:36:39 +03:00
|
|
|
"sha1_smol",
|
2022-02-16 08:40:31 +03:00
|
|
|
"tokio",
|
2022-11-27 06:11:42 +03:00
|
|
|
"tokio-util",
|
2021-12-06 19:22:21 +03:00
|
|
|
"url",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2017-02-16 22:56:41 +03:00
|
|
|
|
2021-11-12 15:28:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "redox_syscall"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.16"
|
2021-11-12 15:28:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "fb5a58c1855b4b6819d59012155603f0b22ad30cad752600aadfcb695265519a"
|
2021-11-12 15:28:26 +03:00
|
|
|
dependencies = [
|
2023-03-28 12:27:58 +03:00
|
|
|
"bitflags 1.3.2",
|
2021-11-12 15:28:26 +03:00
|
|
|
]
|
|
|
|
|
2018-01-07 18:33:04 +03:00
|
|
|
[[package]]
|
2019-12-10 00:17:20 +03:00
|
|
|
name = "redox_users"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.4.3"
|
2018-01-07 18:33:04 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2023-05-09 06:44:41 +03:00
|
|
|
"getrandom",
|
2021-12-06 19:22:21 +03:00
|
|
|
"redox_syscall",
|
2022-11-27 06:11:42 +03:00
|
|
|
"thiserror",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-01-07 18:33:04 +03:00
|
|
|
|
2018-07-26 22:52:50 +03:00
|
|
|
[[package]]
|
|
|
|
name = "regex"
|
2023-03-27 21:24:53 +03:00
|
|
|
version = "1.7.3"
|
2018-07-26 22:52:50 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-27 21:24:53 +03:00
|
|
|
checksum = "8b1f693b24f6ac912f4893ef08244d70b6067480d2f1a46e950c9691e6749d1d"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"aho-corasick",
|
2020-12-09 11:44:58 +03:00
|
|
|
"memchr",
|
2020-03-20 22:13:32 +03:00
|
|
|
"regex-syntax",
|
|
|
|
]
|
2018-07-26 22:52:50 +03:00
|
|
|
|
2021-11-12 15:28:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "regex-automata"
|
|
|
|
version = "0.1.10"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
|
|
|
|
|
2018-07-26 22:52:50 +03:00
|
|
|
[[package]]
|
|
|
|
name = "regex-syntax"
|
2023-03-27 21:24:53 +03:00
|
|
|
version = "0.6.29"
|
2018-07-26 22:52:50 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-27 21:24:53 +03:00
|
|
|
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
|
2018-07-26 22:52:50 +03:00
|
|
|
|
2022-12-11 15:23:27 +03:00
|
|
|
[[package]]
|
|
|
|
name = "reqsign"
|
2023-06-07 03:13:10 +03:00
|
|
|
version = "0.13.0"
|
2022-12-11 15:23:27 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-07 03:13:10 +03:00
|
|
|
checksum = "b6cb65eb3405f9c2de5c18bfc37338d6bbdb2c35eb8eb0e946208cbb564e4833"
|
2022-12-11 15:23:27 +03:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
2023-05-09 18:25:20 +03:00
|
|
|
"async-trait",
|
2023-02-12 00:49:41 +03:00
|
|
|
"base64 0.21.0",
|
2023-05-09 18:25:20 +03:00
|
|
|
"chrono",
|
2022-12-11 15:23:27 +03:00
|
|
|
"form_urlencoded",
|
|
|
|
"hex",
|
|
|
|
"hmac",
|
2023-05-09 18:25:20 +03:00
|
|
|
"home",
|
2022-12-11 15:23:27 +03:00
|
|
|
"http",
|
|
|
|
"jsonwebtoken",
|
|
|
|
"log",
|
|
|
|
"once_cell",
|
|
|
|
"percent-encoding",
|
2023-03-27 22:05:30 +03:00
|
|
|
"quick-xml 0.28.1",
|
2023-05-09 06:44:41 +03:00
|
|
|
"rand",
|
2023-05-09 18:25:20 +03:00
|
|
|
"reqwest",
|
2023-03-03 14:42:32 +03:00
|
|
|
"rsa",
|
2022-12-11 15:23:27 +03:00
|
|
|
"rust-ini",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
"sha1",
|
|
|
|
"sha2",
|
2023-05-09 18:25:20 +03:00
|
|
|
"tokio",
|
2022-12-11 15:23:27 +03:00
|
|
|
]
|
|
|
|
|
2021-04-08 21:30:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "reqwest"
|
2023-06-07 03:13:10 +03:00
|
|
|
version = "0.11.18"
|
2021-04-08 21:30:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-07 03:13:10 +03:00
|
|
|
checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55"
|
2021-04-08 21:30:17 +03:00
|
|
|
dependencies = [
|
2023-02-26 08:37:18 +03:00
|
|
|
"base64 0.21.0",
|
2022-11-14 08:25:38 +03:00
|
|
|
"bytes",
|
2021-04-08 21:30:17 +03:00
|
|
|
"encoding_rs",
|
|
|
|
"futures-core",
|
|
|
|
"futures-util",
|
2022-02-12 22:19:08 +03:00
|
|
|
"h2",
|
2022-02-12 20:46:53 +03:00
|
|
|
"http",
|
2021-12-06 19:22:21 +03:00
|
|
|
"http-body",
|
|
|
|
"hyper",
|
2022-12-11 15:23:27 +03:00
|
|
|
"hyper-rustls",
|
2022-12-02 10:58:24 +03:00
|
|
|
"hyper-tls",
|
2021-04-08 21:30:17 +03:00
|
|
|
"ipnet",
|
|
|
|
"js-sys",
|
2021-11-12 15:28:26 +03:00
|
|
|
"log",
|
|
|
|
"mime",
|
2022-12-02 10:58:24 +03:00
|
|
|
"native-tls",
|
2022-11-14 08:25:38 +03:00
|
|
|
"once_cell",
|
2022-02-12 20:46:53 +03:00
|
|
|
"percent-encoding",
|
2022-02-16 08:40:31 +03:00
|
|
|
"pin-project-lite",
|
2023-06-07 03:13:10 +03:00
|
|
|
"rustls 0.21.1",
|
2022-12-11 15:23:27 +03:00
|
|
|
"rustls-native-certs",
|
2023-04-19 16:04:37 +03:00
|
|
|
"rustls-pemfile",
|
2021-04-08 21:30:17 +03:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2021-12-06 19:22:21 +03:00
|
|
|
"serde_urlencoded",
|
2022-02-16 08:40:31 +03:00
|
|
|
"tokio",
|
2022-12-02 10:58:24 +03:00
|
|
|
"tokio-native-tls",
|
2023-06-07 03:13:10 +03:00
|
|
|
"tokio-rustls 0.24.0",
|
2022-11-27 06:11:42 +03:00
|
|
|
"tokio-util",
|
2022-11-14 08:25:38 +03:00
|
|
|
"tower-service",
|
2023-04-19 15:30:29 +03:00
|
|
|
"trust-dns-resolver",
|
2021-12-06 19:22:21 +03:00
|
|
|
"url",
|
2021-04-08 21:30:17 +03:00
|
|
|
"wasm-bindgen",
|
|
|
|
"wasm-bindgen-futures",
|
2023-02-26 08:37:18 +03:00
|
|
|
"wasm-streams",
|
2021-04-08 21:30:17 +03:00
|
|
|
"web-sys",
|
2023-04-19 15:30:29 +03:00
|
|
|
"webpki-roots",
|
2021-12-06 19:22:21 +03:00
|
|
|
"winreg",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2023-04-19 15:30:29 +03:00
|
|
|
[[package]]
|
|
|
|
name = "resolv-conf"
|
|
|
|
version = "0.7.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
|
|
|
|
dependencies = [
|
|
|
|
"hostname",
|
|
|
|
"quick-error",
|
|
|
|
]
|
|
|
|
|
2016-05-12 22:03:37 +03:00
|
|
|
[[package]]
|
|
|
|
name = "retry"
|
2022-09-19 20:44:22 +03:00
|
|
|
version = "2.0.0"
|
2016-05-12 22:03:37 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-19 20:44:22 +03:00
|
|
|
checksum = "9166d72162de3575f950507683fac47e30f6f2c3836b71b7fbc61aa517c9c5f4"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2023-05-09 06:44:41 +03:00
|
|
|
"rand",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-05-12 22:03:37 +03:00
|
|
|
|
2017-04-21 07:09:15 +03:00
|
|
|
[[package]]
|
|
|
|
name = "ring"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "0.16.20"
|
2017-04-21 07:09:15 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
2020-12-09 10:46:21 +03:00
|
|
|
"once_cell",
|
2022-05-20 18:00:35 +03:00
|
|
|
"spin 0.5.2",
|
2020-12-09 11:44:58 +03:00
|
|
|
"untrusted",
|
2020-12-09 10:46:21 +03:00
|
|
|
"web-sys",
|
2022-11-29 20:32:24 +03:00
|
|
|
"winapi",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-01-07 18:33:04 +03:00
|
|
|
|
2018-07-12 02:38:16 +03:00
|
|
|
[[package]]
|
|
|
|
name = "rouille"
|
2022-11-27 06:48:49 +03:00
|
|
|
version = "3.6.1"
|
2018-09-04 22:36:28 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:48:49 +03:00
|
|
|
checksum = "4f86e4c51a773f953f02bbab5fd049f004bfd384341d62da2a079aff812ab176"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2022-12-13 15:18:36 +03:00
|
|
|
"base64 0.13.1",
|
2020-03-20 22:13:32 +03:00
|
|
|
"chrono",
|
2020-07-14 13:28:11 +03:00
|
|
|
"filetime",
|
2020-03-20 22:13:32 +03:00
|
|
|
"multipart",
|
|
|
|
"num_cpus",
|
2022-02-12 20:46:53 +03:00
|
|
|
"percent-encoding",
|
2023-05-09 06:44:41 +03:00
|
|
|
"rand",
|
2020-03-20 22:13:32 +03:00
|
|
|
"serde",
|
|
|
|
"serde_derive",
|
|
|
|
"serde_json",
|
2022-11-27 06:48:49 +03:00
|
|
|
"sha1",
|
2020-03-20 22:13:32 +03:00
|
|
|
"threadpool",
|
2022-11-27 06:11:42 +03:00
|
|
|
"time 0.3.17",
|
2020-09-17 03:51:29 +03:00
|
|
|
"tiny_http",
|
2021-12-06 19:22:21 +03:00
|
|
|
"url",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2023-03-03 14:42:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "rsa"
|
2023-06-07 03:13:10 +03:00
|
|
|
version = "0.9.2"
|
2023-03-03 14:42:32 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-07 03:13:10 +03:00
|
|
|
checksum = "6ab43bb47d23c1a631b4b680199a45255dce26fa9ab2fa902581f624ff13e6a8"
|
2023-03-03 14:42:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"byteorder",
|
2023-06-07 03:13:10 +03:00
|
|
|
"const-oid",
|
2023-03-03 14:42:32 +03:00
|
|
|
"digest",
|
|
|
|
"num-bigint-dig",
|
|
|
|
"num-integer",
|
|
|
|
"num-iter",
|
|
|
|
"num-traits",
|
|
|
|
"pkcs1",
|
|
|
|
"pkcs8",
|
2023-05-09 06:44:41 +03:00
|
|
|
"rand_core",
|
2023-03-03 14:42:32 +03:00
|
|
|
"signature",
|
2023-06-07 03:13:10 +03:00
|
|
|
"spki",
|
2023-03-03 14:42:32 +03:00
|
|
|
"subtle",
|
|
|
|
"zeroize",
|
|
|
|
]
|
|
|
|
|
2022-01-03 03:22:14 +03:00
|
|
|
[[package]]
|
2022-12-11 15:23:27 +03:00
|
|
|
name = "rust-ini"
|
2023-05-09 18:25:20 +03:00
|
|
|
version = "0.19.0"
|
2022-01-03 03:22:14 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-09 18:25:20 +03:00
|
|
|
checksum = "7e2a3bcec1f113553ef1c88aae6c020a369d03d55b58de9869a0908930385091"
|
2022-01-03 03:22:14 +03:00
|
|
|
dependencies = [
|
2022-12-11 15:23:27 +03:00
|
|
|
"cfg-if 1.0.0",
|
|
|
|
"ordered-multimap",
|
2022-01-03 03:22:14 +03:00
|
|
|
]
|
|
|
|
|
2023-05-25 08:35:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "rustc-demangle"
|
|
|
|
version = "0.1.23"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"
|
|
|
|
|
2022-04-01 06:38:11 +03:00
|
|
|
[[package]]
|
|
|
|
name = "rustix"
|
2022-11-30 08:59:42 +03:00
|
|
|
version = "0.35.13"
|
2022-04-01 06:38:11 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-30 08:59:42 +03:00
|
|
|
checksum = "727a1a6d65f786ec22df8a81ca3121107f235970dc1705ed681d3e6e8b9cd5f9"
|
2022-04-01 06:38:11 +03:00
|
|
|
dependencies = [
|
2023-03-28 12:27:58 +03:00
|
|
|
"bitflags 1.3.2",
|
2022-04-01 06:38:11 +03:00
|
|
|
"errno",
|
2022-12-05 20:07:58 +03:00
|
|
|
"io-lifetimes 0.7.5",
|
|
|
|
"libc",
|
|
|
|
"linux-raw-sys 0.0.46",
|
|
|
|
"windows-sys 0.42.0",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rustix"
|
|
|
|
version = "0.36.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "cb93e85278e08bb5788653183213d3a60fc242b10cb9be96586f5a73dcb67c23"
|
|
|
|
dependencies = [
|
2023-03-28 12:27:58 +03:00
|
|
|
"bitflags 1.3.2",
|
2022-12-05 20:07:58 +03:00
|
|
|
"errno",
|
|
|
|
"io-lifetimes 1.0.3",
|
2022-04-01 06:38:11 +03:00
|
|
|
"libc",
|
2022-12-05 20:07:58 +03:00
|
|
|
"linux-raw-sys 0.1.3",
|
2022-11-27 06:11:42 +03:00
|
|
|
"windows-sys 0.42.0",
|
2022-01-03 03:22:14 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "rustls"
|
2022-11-14 08:25:38 +03:00
|
|
|
version = "0.20.7"
|
2022-01-03 03:22:14 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-14 08:25:38 +03:00
|
|
|
checksum = "539a2bfe908f471bfa933876bd1eb6a19cf2176d375f82ef7f99530a40e48c2c"
|
2022-01-03 03:22:14 +03:00
|
|
|
dependencies = [
|
|
|
|
"log",
|
|
|
|
"ring",
|
|
|
|
"sct",
|
|
|
|
"webpki",
|
|
|
|
]
|
|
|
|
|
2023-06-07 03:13:10 +03:00
|
|
|
[[package]]
|
|
|
|
name = "rustls"
|
|
|
|
version = "0.21.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c911ba11bc8433e811ce56fde130ccf32f5127cab0e0194e9c68c5a5b671791e"
|
|
|
|
dependencies = [
|
|
|
|
"log",
|
|
|
|
"ring",
|
|
|
|
"rustls-webpki",
|
|
|
|
"sct",
|
|
|
|
]
|
|
|
|
|
2022-01-03 03:22:14 +03:00
|
|
|
[[package]]
|
|
|
|
name = "rustls-native-certs"
|
2022-11-14 08:25:38 +03:00
|
|
|
version = "0.6.2"
|
2022-01-03 03:22:14 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-14 08:25:38 +03:00
|
|
|
checksum = "0167bac7a9f490495f3c33013e7722b53cb087ecbe082fb0c6387c96f634ea50"
|
2022-01-03 03:22:14 +03:00
|
|
|
dependencies = [
|
|
|
|
"openssl-probe",
|
2023-04-19 16:04:37 +03:00
|
|
|
"rustls-pemfile",
|
2022-01-03 03:22:14 +03:00
|
|
|
"schannel",
|
|
|
|
"security-framework",
|
2022-04-01 06:38:11 +03:00
|
|
|
]
|
|
|
|
|
2022-11-14 08:25:38 +03:00
|
|
|
[[package]]
|
|
|
|
name = "rustls-pemfile"
|
|
|
|
version = "1.0.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0864aeff53f8c05aa08d86e5ef839d3dfcf07aeba2db32f12db0ef716e87bd55"
|
|
|
|
dependencies = [
|
2022-12-13 15:18:36 +03:00
|
|
|
"base64 0.13.1",
|
2022-11-14 08:25:38 +03:00
|
|
|
]
|
|
|
|
|
2023-06-07 03:13:10 +03:00
|
|
|
[[package]]
|
|
|
|
name = "rustls-webpki"
|
|
|
|
version = "0.100.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d6207cd5ed3d8dca7816f8f3725513a34609c0c765bf652b8c3cb4cfd87db46b"
|
|
|
|
dependencies = [
|
|
|
|
"ring",
|
|
|
|
"untrusted",
|
|
|
|
]
|
|
|
|
|
2018-08-28 14:29:00 +03:00
|
|
|
[[package]]
|
|
|
|
name = "ryu"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.0.11"
|
2018-08-28 14:29:00 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "4501abdff3ae82a1c1b477a17252eb69cee9e66eb915c1abaa4f44d873df9f09"
|
2018-08-28 14:29:00 +03:00
|
|
|
|
2018-09-27 17:30:22 +03:00
|
|
|
[[package]]
|
|
|
|
name = "safemem"
|
2019-12-10 00:17:20 +03:00
|
|
|
version = "0.3.3"
|
2018-09-27 17:30:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-18 18:07:45 +03:00
|
|
|
checksum = "ef703b7cb59335eae2eb93ceb664c0eb7ea6bf567079d843e09420219668e072"
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2020-06-11 06:10:33 +03:00
|
|
|
[[package]]
|
|
|
|
name = "same-file"
|
|
|
|
version = "1.0.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
|
|
dependencies = [
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2017-12-05 16:32:33 +03:00
|
|
|
[[package]]
|
|
|
|
name = "sccache"
|
2023-06-04 13:44:40 +03:00
|
|
|
version = "0.5.3"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
Change error handling from `error-chain` to `anyhow`.
Because `anyhow` is what seems to be the most common error library for
applications these days.
- The global `Result` type is now `anyhow::Result`.
- In errors.rs, there's no need for any boilerplate to wrap all the foreign
errors seen: `hyper::Error`, `io:Error`, etc.
- The internal errors that we care about are now separate types, rather
than within an enum, because that works better when we need to check for them
by downcasting an `anyhow::Error`. And it's nice to write
`Err(ProcessError(output))` rather than
`Err(ErrorKind::ProcessError(output))`.
- The `Which` error was unused and is removed.
- The most common change is that `.chain_err()` is changed to
`.context`/`.with_context()`.
- `anyhow!` is used where necessary, mostly to promote a string to an
`anyhow::Error`.
- Errors within futures: `FutureChainErr`/`.chain_err()` is changed to
`FutureContext`/`fcontext`/`fwith_context`. The `f` prefix is because I found
it helpful to distinguish these cases from the simple error cases.
- `BuilderIncoming`, `SchedulerIncoming`, `ServerIncoming` no longer have an
`Error` associated type, we just use `anyhow::Error` uniformly.
- `e.display_chain()` changes to `format!("{:?}")`, because they both print the
full cause chain, and the backtrace (if present).
- A few places where the old code was doing something weird or more
complicated than seemed necessary, I generally tried to replace it with
something simpler and more typical. Two places used `with_boxed_chain()`,
which doesn't have an equivalent in `anyhow`, so I did my best to do
something reasonable.
- In `src/server.rs` we now import `std::task::Context` as `TaskContext` to
avoid overshadowing the `anyhow::Context` trait :(
2020-06-02 10:22:31 +03:00
|
|
|
"anyhow",
|
2020-03-20 22:13:32 +03:00
|
|
|
"ar",
|
|
|
|
"assert_cmd",
|
2021-04-08 21:30:17 +03:00
|
|
|
"async-trait",
|
2023-02-26 10:09:53 +03:00
|
|
|
"base64 0.21.0",
|
2023-02-14 11:48:41 +03:00
|
|
|
"bincode",
|
2020-03-20 22:13:32 +03:00
|
|
|
"blake3",
|
|
|
|
"byteorder",
|
2022-11-14 08:25:38 +03:00
|
|
|
"bytes",
|
2020-03-20 22:13:32 +03:00
|
|
|
"cc",
|
|
|
|
"chrono",
|
|
|
|
"clap",
|
|
|
|
"daemonize",
|
|
|
|
"directories",
|
2023-02-16 01:13:47 +03:00
|
|
|
"encoding",
|
2020-03-20 22:13:32 +03:00
|
|
|
"env_logger",
|
2020-07-14 13:28:11 +03:00
|
|
|
"filetime",
|
2020-03-20 22:13:32 +03:00
|
|
|
"flate2",
|
2023-02-21 10:37:42 +03:00
|
|
|
"fs-err",
|
2021-12-06 19:22:21 +03:00
|
|
|
"futures",
|
2022-05-20 18:00:35 +03:00
|
|
|
"gzp",
|
2022-02-12 20:46:53 +03:00
|
|
|
"http",
|
2021-12-06 19:22:21 +03:00
|
|
|
"hyper",
|
2023-03-28 19:56:42 +03:00
|
|
|
"is-terminal",
|
2021-11-12 15:28:26 +03:00
|
|
|
"itertools",
|
2020-03-20 22:13:32 +03:00
|
|
|
"jobserver",
|
|
|
|
"jsonwebtoken",
|
|
|
|
"libc",
|
|
|
|
"libmount",
|
2021-01-07 08:08:48 +03:00
|
|
|
"linked-hash-map",
|
2021-11-12 15:28:26 +03:00
|
|
|
"log",
|
2023-05-27 01:01:19 +03:00
|
|
|
"memmap2",
|
2023-02-12 00:49:41 +03:00
|
|
|
"mime",
|
2023-01-18 11:51:12 +03:00
|
|
|
"nix 0.26.2",
|
2020-03-20 22:13:32 +03:00
|
|
|
"num_cpus",
|
|
|
|
"number_prefix",
|
2023-05-27 01:01:19 +03:00
|
|
|
"object",
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
"once_cell",
|
2022-12-11 15:23:27 +03:00
|
|
|
"opendal",
|
2020-03-20 22:13:32 +03:00
|
|
|
"openssl",
|
2023-03-27 22:05:51 +03:00
|
|
|
"predicates",
|
2023-05-09 06:44:41 +03:00
|
|
|
"rand",
|
2020-03-20 22:13:32 +03:00
|
|
|
"regex",
|
2022-12-20 10:13:45 +03:00
|
|
|
"reqsign",
|
2021-12-06 19:22:21 +03:00
|
|
|
"reqwest",
|
2020-03-20 22:13:32 +03:00
|
|
|
"retry",
|
|
|
|
"rouille",
|
2023-01-14 04:43:01 +03:00
|
|
|
"semver",
|
2020-03-20 22:13:32 +03:00
|
|
|
"serde",
|
|
|
|
"serde_json",
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
"serial_test",
|
2020-03-20 22:13:32 +03:00
|
|
|
"sha2",
|
|
|
|
"strip-ansi-escapes",
|
|
|
|
"syslog",
|
|
|
|
"tar",
|
2023-05-26 12:08:47 +03:00
|
|
|
"temp-env",
|
2020-03-20 22:13:32 +03:00
|
|
|
"tempfile",
|
2021-12-06 19:22:21 +03:00
|
|
|
"thirtyfour_sync",
|
2022-02-16 08:40:31 +03:00
|
|
|
"tokio",
|
2020-04-29 16:48:55 +03:00
|
|
|
"tokio-serde",
|
2022-11-27 06:11:42 +03:00
|
|
|
"tokio-util",
|
2020-03-20 22:13:32 +03:00
|
|
|
"toml",
|
|
|
|
"tower",
|
2023-04-19 15:30:29 +03:00
|
|
|
"trust-dns-resolver",
|
2021-12-06 19:22:21 +03:00
|
|
|
"url",
|
|
|
|
"uuid",
|
2020-03-20 22:13:32 +03:00
|
|
|
"version-compare",
|
2020-07-14 13:14:02 +03:00
|
|
|
"walkdir",
|
2020-03-20 22:13:32 +03:00
|
|
|
"which",
|
2022-11-29 20:32:24 +03:00
|
|
|
"winapi",
|
2020-03-20 22:13:32 +03:00
|
|
|
"zip",
|
2020-06-05 19:59:57 +03:00
|
|
|
"zstd",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2017-12-05 16:32:33 +03:00
|
|
|
|
2017-02-02 03:30:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "schannel"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.1.20"
|
2017-02-02 03:30:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "88d6731146462ea25d9244b2ed5fd1d716d25c52e4d54aa4fb0f3c4e9854dbe2"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"lazy_static",
|
2022-11-27 06:11:42 +03:00
|
|
|
"windows-sys 0.36.1",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2017-02-02 03:30:26 +03:00
|
|
|
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
[[package]]
|
|
|
|
name = "scopeguard"
|
|
|
|
version = "1.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
|
|
|
|
|
2022-01-03 03:22:14 +03:00
|
|
|
[[package]]
|
|
|
|
name = "sct"
|
2022-11-14 08:25:38 +03:00
|
|
|
version = "0.7.0"
|
2022-01-03 03:22:14 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-14 08:25:38 +03:00
|
|
|
checksum = "d53dcdb7c9f8158937a7981b48accfd39a43af418591a5d008c7b22b5e1b7ca4"
|
2022-01-03 03:22:14 +03:00
|
|
|
dependencies = [
|
|
|
|
"ring",
|
|
|
|
"untrusted",
|
|
|
|
]
|
|
|
|
|
2018-09-27 17:30:22 +03:00
|
|
|
[[package]]
|
|
|
|
name = "security-framework"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "2.7.0"
|
2018-09-27 17:30:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "2bc1bb97804af6631813c55739f771071e0f2ed33ee20b68c86ec505d906356c"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2023-03-28 12:27:58 +03:00
|
|
|
"bitflags 1.3.2",
|
2020-03-20 22:13:32 +03:00
|
|
|
"core-foundation",
|
|
|
|
"core-foundation-sys",
|
|
|
|
"libc",
|
|
|
|
"security-framework-sys",
|
|
|
|
]
|
2018-09-27 17:30:22 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "security-framework-sys"
|
2022-02-12 22:19:08 +03:00
|
|
|
version = "2.6.1"
|
2018-09-27 17:30:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 22:19:08 +03:00
|
|
|
checksum = "0160a13a177a45bfb43ce71c01580998474f556ad854dcbca936dd2841a5c556"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"core-foundation-sys",
|
2020-04-28 07:55:50 +03:00
|
|
|
"libc",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2017-02-02 03:30:26 +03:00
|
|
|
|
2022-08-04 12:13:04 +03:00
|
|
|
[[package]]
|
|
|
|
name = "semver"
|
2022-12-19 20:06:24 +03:00
|
|
|
version = "1.0.16"
|
2022-08-04 12:13:04 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-12-19 20:06:24 +03:00
|
|
|
checksum = "58bc9567378fc7690d6b2addae4e60ac2eeea07becb2c64b9f218b53865cba2a"
|
2022-08-04 12:13:04 +03:00
|
|
|
|
2016-06-03 22:09:38 +03:00
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
2023-04-06 12:45:29 +03:00
|
|
|
version = "1.0.159"
|
2017-03-22 20:21:52 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-06 12:45:29 +03:00
|
|
|
checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"serde_derive",
|
|
|
|
]
|
2017-03-22 20:21:52 +03:00
|
|
|
|
|
|
|
[[package]]
|
2017-05-18 23:53:00 +03:00
|
|
|
name = "serde_derive"
|
2023-04-06 12:45:29 +03:00
|
|
|
version = "1.0.159"
|
2017-03-22 20:21:52 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-06 12:45:29 +03:00
|
|
|
checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
2020-04-29 16:48:55 +03:00
|
|
|
"quote",
|
2023-04-06 12:45:29 +03:00
|
|
|
"syn 2.0.13",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-06-03 22:09:38 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_json"
|
2023-03-06 21:10:08 +03:00
|
|
|
version = "1.0.94"
|
2016-06-03 22:09:38 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-06 21:10:08 +03:00
|
|
|
checksum = "1c533a59c9d8a93a09c6ab31f0fd5e5f4dd1b8fc9434804029839884765d04ea"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2021-12-06 19:22:21 +03:00
|
|
|
"indexmap",
|
2022-11-27 06:11:42 +03:00
|
|
|
"itoa",
|
2020-03-20 22:13:32 +03:00
|
|
|
"ryu",
|
|
|
|
"serde",
|
|
|
|
]
|
2016-06-03 22:09:38 +03:00
|
|
|
|
2018-07-12 02:38:16 +03:00
|
|
|
[[package]]
|
2021-12-06 19:22:21 +03:00
|
|
|
name = "serde_repr"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.1.9"
|
2018-07-12 02:38:16 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "1fe39d9fbb0ebf5eb2c7cb7e2a47e4f462fad1379f1166b8ae49ad9eae89a7ca"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2021-12-06 19:22:21 +03:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-04-03 21:03:41 +03:00
|
|
|
"syn 1.0.104",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-07-12 02:38:16 +03:00
|
|
|
|
2023-02-26 10:09:53 +03:00
|
|
|
[[package]]
|
|
|
|
name = "serde_spanned"
|
|
|
|
version = "0.6.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0efd8caf556a6cebd3b285caf480045fcc1ac04f6bd786b09a6f11af30c4fcf4"
|
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2021-04-08 21:30:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "serde_urlencoded"
|
2022-02-12 22:19:08 +03:00
|
|
|
version = "0.7.1"
|
2021-04-08 21:30:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 22:19:08 +03:00
|
|
|
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
|
2021-04-08 21:30:17 +03:00
|
|
|
dependencies = [
|
|
|
|
"form_urlencoded",
|
2022-11-27 06:11:42 +03:00
|
|
|
"itoa",
|
2021-04-08 21:30:17 +03:00
|
|
|
"ryu",
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
[[package]]
|
|
|
|
name = "serial_test"
|
2023-04-03 21:03:41 +03:00
|
|
|
version = "2.0.0"
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-03 21:03:41 +03:00
|
|
|
checksum = "0e56dd856803e253c8f298af3f4d7eb0ae5e23a737252cd90bb4f3b435033b2d"
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
dependencies = [
|
2022-08-11 11:13:27 +03:00
|
|
|
"dashmap",
|
2022-06-27 22:45:30 +03:00
|
|
|
"futures",
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
"lazy_static",
|
2022-06-22 08:26:49 +03:00
|
|
|
"log",
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
"parking_lot",
|
|
|
|
"serial_test_derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serial_test_derive"
|
2023-04-03 21:03:41 +03:00
|
|
|
version = "2.0.0"
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-03 21:03:41 +03:00
|
|
|
checksum = "91d129178576168c589c9ec973feedf7d3126c01ac2bf08795109aa35b69fb8f"
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-04-03 21:03:41 +03:00
|
|
|
"syn 2.0.13",
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
]
|
|
|
|
|
2018-07-15 16:37:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "sha1"
|
2022-01-03 03:22:14 +03:00
|
|
|
version = "0.10.5"
|
2022-02-12 22:19:08 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-01-03 03:22:14 +03:00
|
|
|
checksum = "f04293dc80c3993519f2d7f6f511707ee7094fe0c6d3406feb330cdb3540eba3"
|
2022-02-12 22:19:08 +03:00
|
|
|
dependencies = [
|
2022-01-03 03:22:14 +03:00
|
|
|
"cfg-if 1.0.0",
|
|
|
|
"cpufeatures",
|
|
|
|
"digest",
|
2022-02-12 22:19:08 +03:00
|
|
|
]
|
|
|
|
|
2022-12-27 06:36:39 +03:00
|
|
|
[[package]]
|
|
|
|
name = "sha1_smol"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ae1a47186c03a32177042e55dbc5fd5aee900b8e0069a8d70fba96a9375cd012"
|
|
|
|
|
2019-10-25 02:43:35 +03:00
|
|
|
[[package]]
|
|
|
|
name = "sha2"
|
2022-09-16 22:39:02 +03:00
|
|
|
version = "0.10.6"
|
2019-10-25 02:43:35 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-09-16 22:39:02 +03:00
|
|
|
checksum = "82e6b795fe2e3b1e845bafcb27aa35405c4d47cdfc92af5fc8d3002f76cebdc0"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-10 01:39:52 +03:00
|
|
|
"cfg-if 1.0.0",
|
2021-11-12 15:28:26 +03:00
|
|
|
"cpufeatures",
|
2022-05-05 17:47:19 +03:00
|
|
|
"digest",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2019-10-25 02:43:35 +03:00
|
|
|
|
2019-12-10 00:17:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "signal-hook-registry"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "1.4.0"
|
2019-12-10 00:17:20 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "e51e73328dc4ac0c7ccbda3a494dfa03df1de2f46018127f60c693f2648455b0"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2023-03-03 14:42:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "signature"
|
|
|
|
version = "2.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8fe458c98333f9c8152221191a77e2a44e8325d0193484af2e9421a53019e57d"
|
|
|
|
dependencies = [
|
|
|
|
"digest",
|
2023-05-09 06:44:41 +03:00
|
|
|
"rand_core",
|
2023-03-03 14:42:32 +03:00
|
|
|
]
|
|
|
|
|
2020-12-09 10:46:21 +03:00
|
|
|
[[package]]
|
|
|
|
name = "simple_asn1"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.6.2"
|
2020-12-09 10:46:21 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "adc4e5204eb1910f40f9cfa375f6f05b68c3abac4b6fd879c8ff5e7ae8a0a085"
|
2020-12-09 10:46:21 +03:00
|
|
|
dependencies = [
|
|
|
|
"num-bigint",
|
2020-04-29 16:48:55 +03:00
|
|
|
"num-traits",
|
2022-05-05 17:47:19 +03:00
|
|
|
"thiserror",
|
2022-11-27 06:11:42 +03:00
|
|
|
"time 0.3.17",
|
2020-12-09 10:46:21 +03:00
|
|
|
]
|
|
|
|
|
2017-10-06 02:40:25 +03:00
|
|
|
[[package]]
|
|
|
|
name = "slab"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.4.7"
|
2019-12-10 00:17:20 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "4614a76b2a8be0058caa9dbbaf66d988527d86d003c11a94fbd335d7661edcef"
|
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
2019-12-10 00:17:20 +03:00
|
|
|
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
[[package]]
|
|
|
|
name = "smallvec"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.10.0"
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "a507befe795404456341dfab10cef66ead4c041f62b8b11bbb92bffe5d0953e0"
|
Parse env-deps from dep-info (#1107)
* Refactor sccache cargo test
- Improve cleanup by using Result instead of panicking, to ensure that
the temporary folder gets cleaned up.
Previously, when a test failed, no clean up would happen. Now the cleanup
happens, unless there is an unexpected panic somewhere in the intergration test code.
- this commit aims to make it easier to add new tests
Split sccache cargo tests
To make it clearer what is failing, split the cargo test into multiple
tests. Since Sccache can't be invoked in parallel, we use the
`serial_test` to serialize testing,otherwise cargo by default would
start them in parallel.
The logger is now also lazily initialized, so the first test to run will
initialize it. It now writes a linebreak, because otherwise the output
is hard to read with
`RUST_LOG=debug cargo test --test sccache_cargo -- --nocapture`.
We catch panics (which are not intended by the tests ) to ensure that the
temporary directory for the test gets cleaned up.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
Remove panic=abort from CI coverage test
I suspect the commandline was just taken like that from the example
here: https://doc.rust-lang.org/stable/unstable-book/compiler-flags/profile.html
However, there seems to be no reason to actually abort, since we don't have
a custom test harness or anything.
Since we want to catch panics, so we can correctly clean up, we need
panic=unwind.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Parse env_deps from dep-info
This will trigger rebuilds if environment variables changed that the rust code
depended on with env!.
On the Rust side this requires at least Rust 1.46, otherwise there will be
no env-dep info in the dep-info file. In that case we cannot detect
the dependency on the env-value, and behaviour is unchanged compared to
the current sccache behaviour.
With recent Rust versions however, we can trigger a rebuild if a variable
that is referenced via env! or option_env! is changed.
Other env variables like `CARGO_*` or `RUSTFLAGS` which may affect
the compilation are not listed in the dep-info file, so they have to
be blanket added (as is currently already the case).
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
* Add test for cargo env_deps
The previous commit added support for parsing "env_dep"
information from dep_info files. This commit adds a test
for changing an environment variable, that is referenced
in rust code via env!, and asserts that sccache rebuilds
and the rust code uses the new value of the changed
environment variable.
Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
2022-03-02 00:21:36 +03:00
|
|
|
|
2018-01-07 18:33:04 +03:00
|
|
|
[[package]]
|
|
|
|
name = "socket2"
|
2023-05-09 18:25:20 +03:00
|
|
|
version = "0.4.9"
|
2018-01-07 18:33:04 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-09 18:25:20 +03:00
|
|
|
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
2022-11-29 20:32:24 +03:00
|
|
|
"winapi",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-01-07 18:33:04 +03:00
|
|
|
|
2018-08-28 14:29:00 +03:00
|
|
|
[[package]]
|
2019-11-11 00:25:05 +03:00
|
|
|
name = "spin"
|
|
|
|
version = "0.5.2"
|
2018-08-28 14:29:00 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-18 18:07:45 +03:00
|
|
|
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
|
2018-08-28 14:29:00 +03:00
|
|
|
|
2022-05-20 18:00:35 +03:00
|
|
|
[[package]]
|
|
|
|
name = "spin"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.9.4"
|
2022-05-20 18:00:35 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "7f6002a767bff9e83f8eeecf883ecb8011875a21ae8da43bffb817a57e78cc09"
|
2022-05-20 18:00:35 +03:00
|
|
|
dependencies = [
|
|
|
|
"lock_api",
|
|
|
|
]
|
|
|
|
|
2023-03-03 14:42:32 +03:00
|
|
|
[[package]]
|
|
|
|
name = "spki"
|
2023-06-07 03:13:10 +03:00
|
|
|
version = "0.7.2"
|
2023-03-03 14:42:32 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-07 03:13:10 +03:00
|
|
|
checksum = "9d1e996ef02c474957d681f1b05213dfb0abab947b446a62d37770b23500184a"
|
2023-03-03 14:42:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"base64ct",
|
|
|
|
"der",
|
|
|
|
]
|
|
|
|
|
2022-12-05 20:07:50 +03:00
|
|
|
[[package]]
|
|
|
|
name = "static_assertions"
|
|
|
|
version = "1.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
|
|
|
2018-09-27 17:30:22 +03:00
|
|
|
[[package]]
|
2021-12-06 19:22:21 +03:00
|
|
|
name = "stringmatch"
|
|
|
|
version = "0.3.3"
|
2018-09-27 17:30:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-12-06 19:22:21 +03:00
|
|
|
checksum = "a8c0faab770316c3838f895fc2dfc3a8707ef4da48676f1014e1061ebd583b40"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2021-12-06 19:22:21 +03:00
|
|
|
"regex",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2018-02-02 15:11:11 +03:00
|
|
|
[[package]]
|
|
|
|
name = "strip-ansi-escapes"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "0.1.1"
|
2018-02-02 15:11:11 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "011cbb39cf7c1f62871aea3cc46e5817b0937b49e9447370c93cacbe93a766d8"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"vte",
|
|
|
|
]
|
2018-02-02 15:11:11 +03:00
|
|
|
|
2016-05-12 22:03:37 +03:00
|
|
|
[[package]]
|
|
|
|
name = "strsim"
|
2022-03-11 07:33:09 +03:00
|
|
|
version = "0.10.0"
|
2016-05-12 22:03:37 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-03-11 07:33:09 +03:00
|
|
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
2016-05-12 22:03:37 +03:00
|
|
|
|
2020-12-08 08:07:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "subtle"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "2.4.1"
|
2020-12-08 08:07:09 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "6bdef32e8150c2a081110b42772ffe7d7c9032b606bc226c8260fd97e0976601"
|
2020-12-08 08:07:09 +03:00
|
|
|
|
2019-11-12 20:30:01 +03:00
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2022-11-28 20:13:43 +03:00
|
|
|
version = "1.0.104"
|
2018-08-28 14:29:00 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-28 20:13:43 +03:00
|
|
|
checksum = "4ae548ec36cf198c0ef7710d3c230987c2d6d7bd98ad6edc0274462724c585ce"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
2020-04-29 16:48:55 +03:00
|
|
|
"quote",
|
2022-06-21 15:44:46 +03:00
|
|
|
"unicode-ident",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2017-03-22 20:21:52 +03:00
|
|
|
|
2023-04-03 21:03:41 +03:00
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
|
|
|
version = "2.0.13"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4c9da457c5285ac1f936ebd076af6dac17a61cfe7826f2076b4d015cf47bc8ec"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"unicode-ident",
|
|
|
|
]
|
|
|
|
|
2019-02-28 22:42:56 +03:00
|
|
|
[[package]]
|
|
|
|
name = "syslog"
|
2022-05-05 17:47:19 +03:00
|
|
|
version = "6.0.1"
|
2019-02-28 22:42:56 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-05 17:47:19 +03:00
|
|
|
checksum = "978044cc68150ad5e40083c9f6a725e6fd02d7ba1bcf691ec2ff0d66c0b41acc"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-06-11 06:10:33 +03:00
|
|
|
"error-chain",
|
2022-05-05 17:47:19 +03:00
|
|
|
"hostname",
|
2020-03-20 22:13:32 +03:00
|
|
|
"libc",
|
2021-11-12 15:28:26 +03:00
|
|
|
"log",
|
2022-11-27 06:11:42 +03:00
|
|
|
"time 0.3.17",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2019-02-28 22:42:56 +03:00
|
|
|
|
2018-04-12 04:25:15 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tar"
|
2022-02-12 22:19:08 +03:00
|
|
|
version = "0.4.38"
|
2018-04-12 04:25:15 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 22:19:08 +03:00
|
|
|
checksum = "4b55807c0344e1e6c04d7c965f5289c39a8d94ae23ed5c0b57aabac549f871c6"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-07-14 13:28:11 +03:00
|
|
|
"filetime",
|
2020-03-20 22:13:32 +03:00
|
|
|
"libc",
|
|
|
|
"xattr",
|
|
|
|
]
|
2018-04-12 04:25:15 +03:00
|
|
|
|
2023-05-26 12:08:47 +03:00
|
|
|
[[package]]
|
|
|
|
name = "temp-env"
|
|
|
|
version = "0.3.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9547444bfe52cbd79515c6c8087d8ae6ca8d64d2d31a27746320f5cb81d1a15c"
|
|
|
|
dependencies = [
|
|
|
|
"parking_lot",
|
|
|
|
]
|
|
|
|
|
2017-05-17 23:38:12 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tempfile"
|
2023-03-13 21:08:38 +03:00
|
|
|
version = "3.4.0"
|
2017-05-17 23:38:12 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-13 21:08:38 +03:00
|
|
|
checksum = "af18f7ae1acd354b992402e9ec5864359d693cd8a79dcbef59f76891701c1e95"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2021-11-12 15:28:26 +03:00
|
|
|
"cfg-if 1.0.0",
|
2022-02-12 22:19:08 +03:00
|
|
|
"fastrand",
|
2021-12-06 19:22:21 +03:00
|
|
|
"redox_syscall",
|
2023-03-13 21:08:38 +03:00
|
|
|
"rustix 0.36.4",
|
|
|
|
"windows-sys 0.42.0",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2017-05-17 23:38:12 +03:00
|
|
|
|
2018-08-28 14:41:11 +03:00
|
|
|
[[package]]
|
|
|
|
name = "termcolor"
|
2022-05-05 17:47:19 +03:00
|
|
|
version = "1.1.3"
|
2019-11-12 20:30:01 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-05-05 17:47:19 +03:00
|
|
|
checksum = "bab24d30b911b2376f3a13cc2cd443142f0c81dda04c118693e35b3835757755"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-04-28 07:55:50 +03:00
|
|
|
"winapi-util",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-06-03 22:09:38 +03:00
|
|
|
|
2022-04-01 06:38:11 +03:00
|
|
|
[[package]]
|
|
|
|
name = "terminal_size"
|
2022-11-30 08:59:42 +03:00
|
|
|
version = "0.2.2"
|
2022-04-01 06:38:11 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-30 08:59:42 +03:00
|
|
|
checksum = "40ca90c434fd12083d1a6bdcbe9f92a14f96c8a1ba600ba451734ac334521f7a"
|
2022-04-01 06:38:11 +03:00
|
|
|
dependencies = [
|
2022-12-05 20:07:58 +03:00
|
|
|
"rustix 0.35.13",
|
2022-11-27 06:11:42 +03:00
|
|
|
"windows-sys 0.42.0",
|
2022-04-01 06:38:11 +03:00
|
|
|
]
|
|
|
|
|
2021-11-12 15:28:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "termtree"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.4.0"
|
2021-11-12 15:28:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "95059e91184749cb66be6dc994f67f182b6d897cb3df74a5bf66b5e709295fd8"
|
2021-11-12 15:28:26 +03:00
|
|
|
|
2021-12-06 19:22:21 +03:00
|
|
|
[[package]]
|
|
|
|
name = "thirtyfour"
|
|
|
|
version = "0.27.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6ac2540aff94b9f8d89a94bb5d8cc5e71560f78ee8f6c953cd31469083c61f6d"
|
|
|
|
dependencies = [
|
|
|
|
"async-trait",
|
2022-12-13 15:18:36 +03:00
|
|
|
"base64 0.13.1",
|
2021-12-06 19:22:21 +03:00
|
|
|
"chrono",
|
|
|
|
"displaydoc",
|
|
|
|
"futures",
|
|
|
|
"log",
|
|
|
|
"reqwest",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
"serde_repr",
|
|
|
|
"stringmatch",
|
|
|
|
"thiserror",
|
2022-02-16 08:40:31 +03:00
|
|
|
"tokio",
|
2021-12-06 19:22:21 +03:00
|
|
|
"urlparse",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thirtyfour_sync"
|
2022-02-12 22:19:08 +03:00
|
|
|
version = "0.27.1"
|
2021-12-06 19:22:21 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 22:19:08 +03:00
|
|
|
checksum = "ab1e47e6c2fed609d851c6f6171a559ecffb1d121f2d6e02dd390e90ea2c3d38"
|
2021-12-06 19:22:21 +03:00
|
|
|
dependencies = [
|
2022-12-13 15:18:36 +03:00
|
|
|
"base64 0.13.1",
|
2021-12-06 19:22:21 +03:00
|
|
|
"log",
|
|
|
|
"reqwest",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
"stringmatch",
|
|
|
|
"thirtyfour",
|
|
|
|
]
|
|
|
|
|
2020-06-11 06:10:33 +03:00
|
|
|
[[package]]
|
|
|
|
name = "thiserror"
|
2023-02-27 21:16:02 +03:00
|
|
|
version = "1.0.38"
|
2020-06-11 06:10:33 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-27 21:16:02 +03:00
|
|
|
checksum = "6a9cd18aa97d5c45c6603caea1da6628790b37f7a34b6ca89522331c5180fed0"
|
2020-06-11 06:10:33 +03:00
|
|
|
dependencies = [
|
|
|
|
"thiserror-impl",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror-impl"
|
2023-02-27 21:16:02 +03:00
|
|
|
version = "1.0.38"
|
2020-06-11 06:10:33 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-27 21:16:02 +03:00
|
|
|
checksum = "1fb327af4685e4d03fa8cbcf1716380da910eeb2bb8be417e7f9fd3fb164f36f"
|
2020-06-11 06:10:33 +03:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
2020-04-29 16:48:55 +03:00
|
|
|
"quote",
|
2023-04-03 21:03:41 +03:00
|
|
|
"syn 1.0.104",
|
2020-06-11 06:10:33 +03:00
|
|
|
]
|
|
|
|
|
2018-07-12 02:38:16 +03:00
|
|
|
[[package]]
|
|
|
|
name = "threadpool"
|
2020-06-11 04:40:05 +03:00
|
|
|
version = "1.8.1"
|
2018-07-12 02:38:16 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-06-11 04:40:05 +03:00
|
|
|
checksum = "d050e60b33d41c19108b32cea32164033a9013fe3b46cbd4457559bfbf77afaa"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"num_cpus",
|
|
|
|
]
|
2018-07-12 02:38:16 +03:00
|
|
|
|
2016-05-12 22:03:37 +03:00
|
|
|
[[package]]
|
|
|
|
name = "time"
|
2022-11-30 08:59:42 +03:00
|
|
|
version = "0.1.43"
|
2016-05-12 22:03:37 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-30 08:59:42 +03:00
|
|
|
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
2022-11-29 20:32:24 +03:00
|
|
|
"winapi",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-05-12 22:03:37 +03:00
|
|
|
|
2021-11-12 15:28:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "time"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.3.17"
|
2021-11-12 15:28:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "a561bf4617eebd33bca6434b988f39ed798e527f51a1e797d0ee4f61c0a38376"
|
2021-11-12 15:28:26 +03:00
|
|
|
dependencies = [
|
2022-11-27 06:11:42 +03:00
|
|
|
"itoa",
|
2021-11-12 15:28:26 +03:00
|
|
|
"libc",
|
2022-05-05 17:47:19 +03:00
|
|
|
"num_threads",
|
2022-11-27 06:11:42 +03:00
|
|
|
"serde",
|
|
|
|
"time-core",
|
2022-05-05 17:47:19 +03:00
|
|
|
"time-macros",
|
2021-11-12 15:28:26 +03:00
|
|
|
]
|
|
|
|
|
2022-11-27 06:11:42 +03:00
|
|
|
[[package]]
|
|
|
|
name = "time-core"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2e153e1f1acaef8acc537e68b44906d2db6436e2b35ac2c6b42640fff91f00fd"
|
|
|
|
|
2022-05-05 17:47:19 +03:00
|
|
|
[[package]]
|
|
|
|
name = "time-macros"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.6"
|
2022-05-05 17:47:19 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "d967f99f534ca7e495c575c62638eebc2898a8c84c119b89e250477bc4ba16b2"
|
|
|
|
dependencies = [
|
|
|
|
"time-core",
|
|
|
|
]
|
2022-05-05 17:47:19 +03:00
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tiny-keccak"
|
|
|
|
version = "2.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
|
|
|
|
dependencies = [
|
|
|
|
"crunchy",
|
|
|
|
]
|
|
|
|
|
2018-07-12 02:38:16 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tiny_http"
|
2022-11-27 06:48:49 +03:00
|
|
|
version = "0.12.0"
|
2021-01-08 08:27:34 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:48:49 +03:00
|
|
|
checksum = "389915df6413a2e74fb181895f933386023c71110878cd0825588928e64cdc82"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-09 11:44:58 +03:00
|
|
|
"ascii",
|
2020-09-17 03:51:29 +03:00
|
|
|
"chunked_transfer",
|
2022-11-27 06:48:49 +03:00
|
|
|
"httpdate",
|
2021-11-12 15:28:26 +03:00
|
|
|
"log",
|
2020-03-20 22:13:32 +03:00
|
|
|
"openssl",
|
2022-11-27 06:48:49 +03:00
|
|
|
"zeroize",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-07-12 02:38:16 +03:00
|
|
|
|
2020-12-08 08:07:09 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tinyvec"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.6.0"
|
2020-12-08 08:07:09 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
|
2020-12-08 08:07:09 +03:00
|
|
|
dependencies = [
|
|
|
|
"tinyvec_macros",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tinyvec_macros"
|
|
|
|
version = "0.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c"
|
|
|
|
|
2021-11-12 15:28:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tokio"
|
2023-06-04 13:27:20 +03:00
|
|
|
version = "1.28.2"
|
2021-11-12 15:28:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-04 13:27:20 +03:00
|
|
|
checksum = "94d7b1cfd2aa4011f2de74c2c4c63665e27a71006b0a192dcd2710272e73dfa2"
|
2021-11-12 15:28:26 +03:00
|
|
|
dependencies = [
|
2022-07-14 11:09:02 +03:00
|
|
|
"autocfg",
|
2022-11-14 08:25:38 +03:00
|
|
|
"bytes",
|
2020-12-10 01:47:15 +03:00
|
|
|
"libc",
|
2021-12-06 19:22:21 +03:00
|
|
|
"mio",
|
2021-01-05 07:08:33 +03:00
|
|
|
"num_cpus",
|
2023-01-14 04:43:01 +03:00
|
|
|
"parking_lot",
|
2022-02-16 08:40:31 +03:00
|
|
|
"pin-project-lite",
|
2021-04-08 21:30:17 +03:00
|
|
|
"signal-hook-registry",
|
2022-05-05 17:47:19 +03:00
|
|
|
"socket2",
|
2021-04-08 21:30:17 +03:00
|
|
|
"tokio-macros",
|
2023-05-09 18:25:20 +03:00
|
|
|
"windows-sys 0.48.0",
|
2020-12-10 01:47:15 +03:00
|
|
|
]
|
|
|
|
|
2017-02-01 03:19:35 +03:00
|
|
|
[[package]]
|
2021-04-08 21:30:17 +03:00
|
|
|
name = "tokio-macros"
|
2023-05-09 18:25:20 +03:00
|
|
|
version = "2.1.0"
|
Rewrite the server module with Tokio
This commit rewrites the `server` module of sccache to be backed with Tokio. The
previous version was written with `mio`, which Tokio is built on, but is
unfortunately less ergonomic. Tokio is the state-of-the-art for asynchronous
programming in Rust and sccache serves as a great testing ground for ergonomics!
It's intended that the support added here will eventually extend to many other
operations that sccache does as well. For example thread spawning has all been
replaced with `CpuPool` to have a shared pool for I/O operations and such
(namely the filesystem). Eventually the HTTP requests made by the S3 backend can
be integrated with the Tokio branch of Hyper as well to run that on the event
loop instead of in a worker thread. I'd also like to eventually extend this with
`tokio-process` as well to move process spawning off helper threads as well, but
I'm leaving that to a future commit as well.
Overall I found the transition was quite smooth, with the high level
architecture look like:
* The `tokio-proto` crate is used in streaming mode. The streaming part is used
for the one RPC sccache gets which requires a second response to be sent later
on. This second response is the "response body" in tokio-proto terms.
* All of sccache's logic is manifested in an implementation of the `Service`
trait.
* The transport layer is provided with `tokio_core::io::{Framed, Codec}`, and
simple deserialization/serialization is performed with protobuf.
Some differences in design are:
* The `SccacheService` for now is just a bunch of reference-counted pointers,
making it cheap to clone. As the futures it returns progress they will each
retain a reference to a cloned copy of the `SccacheService`. Before all this
data was just stored and manipulated in a struct directly, but it's now
directly managed through shared memory.
* The storage backends share a thread pool with the main server instead of
spawning threads.
And finally, some things I've learned along the way:
* Sharing data between futures isn't a trivial operation. It took an explicit
decision to use `Rc` and I'm not sure I'm 100% happy with how the ergonomics
played out.
* Shutdown is pretty tricky here. I've tried to carry over all the previous
logic but it definitely required not using `TcpServer` in tokio-proto at the
very least, and otherwise required a few custom futures and such to track the
various states. I have a hunch that tokio-proto could provide more options out
of the box for something like this.
2017-01-31 04:04:03 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-05-09 18:25:20 +03:00
|
|
|
checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2021-04-08 21:30:17 +03:00
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2023-05-09 18:25:20 +03:00
|
|
|
"syn 2.0.13",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
Rewrite the server module with Tokio
This commit rewrites the `server` module of sccache to be backed with Tokio. The
previous version was written with `mio`, which Tokio is built on, but is
unfortunately less ergonomic. Tokio is the state-of-the-art for asynchronous
programming in Rust and sccache serves as a great testing ground for ergonomics!
It's intended that the support added here will eventually extend to many other
operations that sccache does as well. For example thread spawning has all been
replaced with `CpuPool` to have a shared pool for I/O operations and such
(namely the filesystem). Eventually the HTTP requests made by the S3 backend can
be integrated with the Tokio branch of Hyper as well to run that on the event
loop instead of in a worker thread. I'd also like to eventually extend this with
`tokio-process` as well to move process spawning off helper threads as well, but
I'm leaving that to a future commit as well.
Overall I found the transition was quite smooth, with the high level
architecture look like:
* The `tokio-proto` crate is used in streaming mode. The streaming part is used
for the one RPC sccache gets which requires a second response to be sent later
on. This second response is the "response body" in tokio-proto terms.
* All of sccache's logic is manifested in an implementation of the `Service`
trait.
* The transport layer is provided with `tokio_core::io::{Framed, Codec}`, and
simple deserialization/serialization is performed with protobuf.
Some differences in design are:
* The `SccacheService` for now is just a bunch of reference-counted pointers,
making it cheap to clone. As the futures it returns progress they will each
retain a reference to a cloned copy of the `SccacheService`. Before all this
data was just stored and manipulated in a struct directly, but it's now
directly managed through shared memory.
* The storage backends share a thread pool with the main server instead of
spawning threads.
And finally, some things I've learned along the way:
* Sharing data between futures isn't a trivial operation. It took an explicit
decision to use `Rc` and I'm not sure I'm 100% happy with how the ergonomics
played out.
* Shutdown is pretty tricky here. I've tried to carry over all the previous
logic but it definitely required not using `TcpServer` in tokio-proto at the
very least, and otherwise required a few custom futures and such to track the
various states. I have a hunch that tokio-proto could provide more options out
of the box for something like this.
2017-01-31 04:04:03 +03:00
|
|
|
|
2021-11-12 15:28:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tokio-native-tls"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f7d995660bd2b7f8c1568414c1126076c13fbb725c40112dc0120b78eb9b717b"
|
|
|
|
dependencies = [
|
|
|
|
"native-tls",
|
2022-02-16 08:40:31 +03:00
|
|
|
"tokio",
|
2021-11-12 15:28:26 +03:00
|
|
|
]
|
|
|
|
|
2022-01-03 03:22:14 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tokio-rustls"
|
2022-11-14 08:25:38 +03:00
|
|
|
version = "0.23.4"
|
2022-01-03 03:22:14 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-14 08:25:38 +03:00
|
|
|
checksum = "c43ee83903113e03984cb9e5cebe6c04a5116269e900e3ddba8f068a62adda59"
|
2022-01-03 03:22:14 +03:00
|
|
|
dependencies = [
|
2023-06-07 03:13:10 +03:00
|
|
|
"rustls 0.20.7",
|
2022-01-03 03:22:14 +03:00
|
|
|
"tokio",
|
|
|
|
"webpki",
|
|
|
|
]
|
|
|
|
|
2023-06-07 03:13:10 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tokio-rustls"
|
|
|
|
version = "0.24.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e0d409377ff5b1e3ca6437aa86c1eb7d40c134bfec254e44c830defa92669db5"
|
|
|
|
dependencies = [
|
|
|
|
"rustls 0.21.1",
|
|
|
|
"tokio",
|
|
|
|
]
|
|
|
|
|
2017-03-22 20:21:52 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tokio-serde"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "0.8.0"
|
2017-07-13 21:33:57 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "911a61637386b789af998ee23f50aa30d5fd7edcec8d6d3dedae5e5815205466"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2022-11-14 08:25:38 +03:00
|
|
|
"bytes",
|
2021-11-12 15:28:26 +03:00
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
"pin-project",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2017-02-01 03:19:35 +03:00
|
|
|
|
2022-11-14 14:54:39 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tokio-util"
|
2023-02-25 20:44:55 +03:00
|
|
|
version = "0.7.7"
|
2022-11-14 14:54:39 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-25 20:44:55 +03:00
|
|
|
checksum = "5427d89453009325de0d8f342c9490009f76e999cb7672d77e46267448f7e6b2"
|
2022-06-21 15:47:55 +03:00
|
|
|
dependencies = [
|
2022-11-14 08:25:38 +03:00
|
|
|
"bytes",
|
2022-06-21 15:47:55 +03:00
|
|
|
"futures-core",
|
|
|
|
"futures-sink",
|
|
|
|
"pin-project-lite",
|
|
|
|
"tokio",
|
|
|
|
"tracing",
|
|
|
|
]
|
|
|
|
|
2018-06-04 20:28:39 +03:00
|
|
|
[[package]]
|
|
|
|
name = "toml"
|
2023-03-27 21:45:10 +03:00
|
|
|
version = "0.7.3"
|
2023-02-26 10:09:53 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-27 21:45:10 +03:00
|
|
|
checksum = "b403acf6f2bb0859c93c7f0d967cb4a75a7ac552100f9322faf64dc047669b21"
|
2023-02-26 10:09:53 +03:00
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
"serde_spanned",
|
|
|
|
"toml_datetime",
|
|
|
|
"toml_edit",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "toml_datetime"
|
|
|
|
version = "0.6.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3ab8ed2edee10b50132aed5f331333428b011c99402b5a534154ed15746f9622"
|
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "toml_edit"
|
2023-03-27 21:45:10 +03:00
|
|
|
version = "0.19.8"
|
2019-11-11 00:25:05 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-27 21:45:10 +03:00
|
|
|
checksum = "239410c8609e8125456927e6707163a3b1fdb40561e4b803bc041f466ccfdc13"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2023-02-26 10:09:53 +03:00
|
|
|
"indexmap",
|
2020-03-20 22:13:32 +03:00
|
|
|
"serde",
|
2023-02-26 10:09:53 +03:00
|
|
|
"serde_spanned",
|
|
|
|
"toml_datetime",
|
|
|
|
"winnow",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2019-11-11 00:25:05 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tower"
|
2022-06-23 09:57:13 +03:00
|
|
|
version = "0.4.13"
|
2019-11-11 00:25:05 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-06-23 09:57:13 +03:00
|
|
|
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"tower-layer",
|
|
|
|
"tower-service",
|
|
|
|
"tracing",
|
|
|
|
]
|
2019-11-11 00:25:05 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tower-layer"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.3.2"
|
2019-11-11 00:25:05 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
|
2020-04-29 16:48:55 +03:00
|
|
|
|
2019-11-11 00:25:05 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tower-service"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.3.2"
|
2019-11-11 00:25:05 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
|
2019-11-11 00:25:05 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "tracing"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.1.37"
|
2019-11-11 00:25:05 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-08 08:07:09 +03:00
|
|
|
"cfg-if 1.0.0",
|
2021-11-12 15:28:26 +03:00
|
|
|
"log",
|
2022-02-16 08:40:31 +03:00
|
|
|
"pin-project-lite",
|
2023-04-19 15:30:29 +03:00
|
|
|
"tracing-attributes",
|
2020-03-20 22:13:32 +03:00
|
|
|
"tracing-core",
|
|
|
|
]
|
2019-11-11 00:25:05 +03:00
|
|
|
|
2023-04-19 15:30:29 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tracing-attributes"
|
|
|
|
version = "0.1.23"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4017f8f45139870ca7e672686113917c71c7a6e02d4924eda67186083c03081a"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn 1.0.104",
|
|
|
|
]
|
|
|
|
|
2019-11-11 00:25:05 +03:00
|
|
|
[[package]]
|
|
|
|
name = "tracing-core"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.1.30"
|
2019-11-11 00:25:05 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "24eb03ba0eab1fd845050058ce5e616558e8f8d8fca633e6b163fe25c797213a"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2022-11-27 06:11:42 +03:00
|
|
|
"once_cell",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-06-04 20:28:39 +03:00
|
|
|
|
2023-04-19 15:30:29 +03:00
|
|
|
[[package]]
|
|
|
|
name = "trust-dns-proto"
|
|
|
|
version = "0.22.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4f7f83d1e4a0e4358ac54c5c3681e5d7da5efc5a7a632c90bb6d6669ddd9bc26"
|
|
|
|
dependencies = [
|
|
|
|
"async-trait",
|
|
|
|
"bytes",
|
|
|
|
"cfg-if 1.0.0",
|
|
|
|
"data-encoding",
|
|
|
|
"enum-as-inner",
|
|
|
|
"futures-channel",
|
|
|
|
"futures-io",
|
|
|
|
"futures-util",
|
|
|
|
"h2",
|
|
|
|
"http",
|
|
|
|
"idna 0.2.3",
|
|
|
|
"ipnet",
|
|
|
|
"lazy_static",
|
2023-05-09 06:44:41 +03:00
|
|
|
"rand",
|
2023-04-19 15:30:29 +03:00
|
|
|
"ring",
|
2023-06-07 03:13:10 +03:00
|
|
|
"rustls 0.20.7",
|
2023-04-19 16:04:37 +03:00
|
|
|
"rustls-pemfile",
|
2023-04-19 15:30:29 +03:00
|
|
|
"smallvec",
|
|
|
|
"thiserror",
|
|
|
|
"tinyvec",
|
|
|
|
"tokio",
|
2023-06-07 03:13:10 +03:00
|
|
|
"tokio-rustls 0.23.4",
|
2023-04-19 15:30:29 +03:00
|
|
|
"tracing",
|
|
|
|
"url",
|
|
|
|
"webpki",
|
|
|
|
"webpki-roots",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "trust-dns-resolver"
|
|
|
|
version = "0.22.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "aff21aa4dcefb0a1afbfac26deb0adc93888c7d295fb63ab273ef276ba2b7cfe"
|
|
|
|
dependencies = [
|
|
|
|
"cfg-if 1.0.0",
|
|
|
|
"futures-util",
|
|
|
|
"ipconfig",
|
|
|
|
"lazy_static",
|
|
|
|
"lru-cache",
|
|
|
|
"parking_lot",
|
|
|
|
"resolv-conf",
|
2023-06-07 03:13:10 +03:00
|
|
|
"rustls 0.20.7",
|
2023-04-19 15:30:29 +03:00
|
|
|
"smallvec",
|
|
|
|
"thiserror",
|
|
|
|
"tokio",
|
2023-06-07 03:13:10 +03:00
|
|
|
"tokio-rustls 0.23.4",
|
2023-04-19 15:30:29 +03:00
|
|
|
"tracing",
|
|
|
|
"trust-dns-proto",
|
|
|
|
"webpki-roots",
|
|
|
|
]
|
|
|
|
|
2018-09-27 17:30:22 +03:00
|
|
|
[[package]]
|
|
|
|
name = "try-lock"
|
2020-12-08 08:07:09 +03:00
|
|
|
version = "0.2.3"
|
2018-09-27 17:30:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-12-08 08:07:09 +03:00
|
|
|
checksum = "59547bce71d9c38b83d9c0e92b6066c4253371f15005def0c30d9657f50c7642"
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2018-07-12 02:38:16 +03:00
|
|
|
[[package]]
|
|
|
|
name = "twoway"
|
|
|
|
version = "0.1.8"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-18 18:07:45 +03:00
|
|
|
checksum = "59b11b2b5241ba34be09c3cc85a36e56e48f9888862e19cedf23336d35316ed1"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-09 11:44:58 +03:00
|
|
|
"memchr",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-07-12 02:38:16 +03:00
|
|
|
|
2019-10-25 02:43:35 +03:00
|
|
|
[[package]]
|
|
|
|
name = "typenum"
|
2022-02-12 22:19:08 +03:00
|
|
|
version = "1.15.0"
|
2018-07-12 02:38:16 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 22:19:08 +03:00
|
|
|
checksum = "dcf81ac59edc17cc8697ff311e8f5ef2d99fcbd9817b34cec66f90b6c3dfd987"
|
2018-07-12 02:38:16 +03:00
|
|
|
|
2016-06-03 22:09:38 +03:00
|
|
|
[[package]]
|
|
|
|
name = "unicase"
|
2019-12-10 00:17:20 +03:00
|
|
|
version = "2.6.0"
|
2016-06-03 22:09:38 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-18 18:07:45 +03:00
|
|
|
checksum = "50f37be617794602aabbeee0be4f259dc1778fabe05e2d67ee8f79326d5cb4f6"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2021-11-12 15:28:26 +03:00
|
|
|
"version_check",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-06-03 22:09:38 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-bidi"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.3.8"
|
2016-06-03 22:09:38 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "099b7128301d285f79ddd55b9a83d5e6b9e97c92e0ea0daebee7263e932de992"
|
2016-06-03 22:09:38 +03:00
|
|
|
|
2022-06-21 15:44:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-ident"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "1.0.5"
|
2022-06-21 15:44:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "6ceab39d59e4c9499d4e5a8ee0e2735b891bb7308ac83dfb4e80cad195c9f6f3"
|
2022-06-21 15:44:46 +03:00
|
|
|
|
2016-06-03 22:09:38 +03:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-normalization"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.1.22"
|
2017-04-05 17:42:06 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-08 08:07:09 +03:00
|
|
|
"tinyvec",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2017-04-05 17:42:06 +03:00
|
|
|
|
2020-12-09 10:46:21 +03:00
|
|
|
[[package]]
|
|
|
|
name = "untrusted"
|
|
|
|
version = "0.7.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
|
|
|
|
|
2016-05-12 22:03:37 +03:00
|
|
|
[[package]]
|
2019-12-10 00:17:20 +03:00
|
|
|
name = "url"
|
2023-03-06 21:11:10 +03:00
|
|
|
version = "2.3.1"
|
2016-05-12 22:03:37 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-06 21:11:10 +03:00
|
|
|
checksum = "0d68c799ae75762b8c3fe375feb6600ef5602c883c5d21eb51c09f22b83c4643"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-08 08:07:09 +03:00
|
|
|
"form_urlencoded",
|
2023-04-19 15:30:29 +03:00
|
|
|
"idna 0.3.0",
|
2022-02-12 20:46:53 +03:00
|
|
|
"percent-encoding",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-05-12 22:03:37 +03:00
|
|
|
|
2018-02-02 15:11:11 +03:00
|
|
|
[[package]]
|
2021-12-06 19:22:21 +03:00
|
|
|
name = "urlparse"
|
|
|
|
version = "0.7.3"
|
2018-02-02 15:11:11 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-12-06 19:22:21 +03:00
|
|
|
checksum = "110352d4e9076c67839003c7788d8604e24dcded13e0b375af3efaa8cf468517"
|
2018-02-02 15:11:11 +03:00
|
|
|
|
2018-09-27 17:30:22 +03:00
|
|
|
[[package]]
|
2021-12-06 19:22:21 +03:00
|
|
|
name = "utf8parse"
|
|
|
|
version = "0.2.0"
|
2018-09-27 17:30:22 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-12-06 19:22:21 +03:00
|
|
|
checksum = "936e4b492acfd135421d8dca4b1aa80a7bfc26e702ef3af710e0752684df5372"
|
2018-09-27 17:30:22 +03:00
|
|
|
|
2020-12-09 11:44:58 +03:00
|
|
|
[[package]]
|
|
|
|
name = "uuid"
|
2023-06-08 10:04:58 +03:00
|
|
|
version = "1.3.3"
|
2020-12-09 11:44:58 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-06-08 10:04:58 +03:00
|
|
|
checksum = "345444e32442451b267fc254ae85a209c64be56d2890e601a0c37ff0c3c5ecd2"
|
2020-12-09 11:44:58 +03:00
|
|
|
dependencies = [
|
2023-05-09 06:44:41 +03:00
|
|
|
"getrandom",
|
2022-12-11 15:23:27 +03:00
|
|
|
"serde",
|
2020-12-09 11:44:58 +03:00
|
|
|
]
|
|
|
|
|
2018-01-07 18:33:04 +03:00
|
|
|
[[package]]
|
|
|
|
name = "vcpkg"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "0.2.15"
|
2018-01-07 18:33:04 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
2018-01-07 18:33:04 +03:00
|
|
|
|
2016-05-12 22:03:37 +03:00
|
|
|
[[package]]
|
2019-07-18 08:03:39 +03:00
|
|
|
name = "version-compare"
|
2022-11-10 23:02:21 +03:00
|
|
|
version = "0.1.1"
|
2019-07-18 08:03:39 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-10 23:02:21 +03:00
|
|
|
checksum = "579a42fc0b8e0c63b76519a339be31bed574929511fa53c1a3acae26eb258f29"
|
2019-07-18 08:03:39 +03:00
|
|
|
|
2018-01-07 18:33:04 +03:00
|
|
|
[[package]]
|
|
|
|
name = "version_check"
|
2022-02-12 22:19:08 +03:00
|
|
|
version = "0.9.4"
|
2019-12-10 00:17:20 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-02-12 22:19:08 +03:00
|
|
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
|
2019-12-10 00:17:20 +03:00
|
|
|
|
2016-11-29 03:59:42 +03:00
|
|
|
[[package]]
|
2017-05-18 23:53:00 +03:00
|
|
|
name = "void"
|
2016-11-29 03:59:42 +03:00
|
|
|
version = "1.0.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-18 18:07:45 +03:00
|
|
|
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
|
2017-05-18 23:53:00 +03:00
|
|
|
|
2018-02-02 15:11:11 +03:00
|
|
|
[[package]]
|
|
|
|
name = "vte"
|
2021-11-12 15:28:26 +03:00
|
|
|
version = "0.10.1"
|
2018-02-02 15:11:11 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2021-11-12 15:28:26 +03:00
|
|
|
checksum = "6cbce692ab4ca2f1f3047fcf732430249c0e971bfdd2b234cf2c47ad93af5983"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2022-05-05 17:47:19 +03:00
|
|
|
"arrayvec 0.5.2",
|
2020-03-20 22:13:32 +03:00
|
|
|
"utf8parse",
|
2021-11-12 15:28:26 +03:00
|
|
|
"vte_generate_state_changes",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "vte_generate_state_changes"
|
|
|
|
version = "0.1.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-02-02 15:11:11 +03:00
|
|
|
|
update test harness crates
This patch looks like a routine crate version update, but it fixes
something very fundamentally wrong with the tests: `escargot`, to find
the `sccache` binary during tests, would actually run `cargo build` and
parse the output. There were all manner of hacks to try and build the
binary with the correct set of features, none of which were reliable,
and the hacks were not reliably present in all places, either.
When the hacks were not present, `escargot` would rebuild the entire
sccache crate, which was responsible for the `sccache_cargo` test taking
entirely too long. When the hacks failed utterly, perfectly fine
patches would mysteriously fail, as seen in #774.
We can get rid of `escargot` because `assert-cmd` has been updated to a)
not use `escargot` under the hood; and b) do something smarter to locate
the target binary. The upshot is fewer mysterious test failures and
significantly faster running tests.
2020-06-05 01:34:11 +03:00
|
|
|
[[package]]
|
|
|
|
name = "wait-timeout"
|
|
|
|
version = "0.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9f200f5b12eb75f8c1ed65abd4b2db8a6e1b138a20de009dacee265a2498f3f6"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
2020-06-11 06:10:33 +03:00
|
|
|
[[package]]
|
|
|
|
name = "walkdir"
|
2023-04-03 21:04:54 +03:00
|
|
|
version = "2.3.3"
|
2020-06-11 06:10:33 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-04-03 21:04:54 +03:00
|
|
|
checksum = "36df944cda56c7d8d8b7496af378e6b16de9284591917d307c9b4d313c44e698"
|
2020-06-11 06:10:33 +03:00
|
|
|
dependencies = [
|
2020-07-14 13:14:02 +03:00
|
|
|
"same-file",
|
2020-06-11 06:10:33 +03:00
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
2021-04-08 21:30:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "want"
|
|
|
|
version = "0.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1ce8a968cb1cd110d136ff8b819a556d6fb6d919363c61534f6860c7eb172ba0"
|
|
|
|
dependencies = [
|
2021-11-12 15:28:26 +03:00
|
|
|
"log",
|
2021-04-08 21:30:17 +03:00
|
|
|
"try-lock",
|
|
|
|
]
|
|
|
|
|
2022-06-21 15:47:55 +03:00
|
|
|
[[package]]
|
|
|
|
name = "wasi"
|
|
|
|
version = "0.11.0+wasi-snapshot-preview1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
|
|
|
|
|
2020-12-09 10:46:21 +03:00
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.83"
|
2020-12-09 10:46:21 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "eaf9f5aceeec8be17c128b2e93e031fb8a4d469bb9c4ae2d7dc1888b26887268"
|
2020-12-09 10:46:21 +03:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if 1.0.0",
|
|
|
|
"wasm-bindgen-macro",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-backend"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.83"
|
2020-12-09 10:46:21 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "4c8ffb332579b0557b52d268b91feab8df3615f265d5270fec2a8c95b17c1142"
|
2020-12-09 10:46:21 +03:00
|
|
|
dependencies = [
|
|
|
|
"bumpalo",
|
2021-11-12 15:28:26 +03:00
|
|
|
"log",
|
2022-08-10 15:58:24 +03:00
|
|
|
"once_cell",
|
2020-12-09 10:46:21 +03:00
|
|
|
"proc-macro2",
|
2020-04-29 16:48:55 +03:00
|
|
|
"quote",
|
2023-04-03 21:03:41 +03:00
|
|
|
"syn 1.0.104",
|
2020-12-09 10:46:21 +03:00
|
|
|
"wasm-bindgen-shared",
|
|
|
|
]
|
|
|
|
|
2021-01-05 07:08:33 +03:00
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-futures"
|
2022-11-30 08:59:42 +03:00
|
|
|
version = "0.4.29"
|
2021-01-05 07:08:33 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-30 08:59:42 +03:00
|
|
|
checksum = "2eb6ec270a31b1d3c7e266b999739109abce8b6c87e4b31fcfcd788b65267395"
|
2021-01-05 07:08:33 +03:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if 1.0.0",
|
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
|
|
|
"web-sys",
|
|
|
|
]
|
|
|
|
|
2020-12-09 10:46:21 +03:00
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-macro"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.83"
|
2020-12-09 10:46:21 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "052be0f94026e6cbc75cdefc9bae13fd6052cdcaf532fa6c45e7ae33a1e6c810"
|
2020-12-09 10:46:21 +03:00
|
|
|
dependencies = [
|
2020-04-29 16:48:55 +03:00
|
|
|
"quote",
|
2020-12-09 10:46:21 +03:00
|
|
|
"wasm-bindgen-macro-support",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-macro-support"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.83"
|
2020-12-09 10:46:21 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "07bc0c051dc5f23e307b13285f9d75df86bfdf816c5721e573dec1f9b8aa193c"
|
2020-12-09 10:46:21 +03:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
2020-04-29 16:48:55 +03:00
|
|
|
"quote",
|
2023-04-03 21:03:41 +03:00
|
|
|
"syn 1.0.104",
|
2020-12-09 10:46:21 +03:00
|
|
|
"wasm-bindgen-backend",
|
|
|
|
"wasm-bindgen-shared",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "wasm-bindgen-shared"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.83"
|
2020-12-09 10:46:21 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "1c38c045535d93ec4f0b4defec448e4291638ee608530863b1e2ba115d4fff7f"
|
2020-12-09 10:46:21 +03:00
|
|
|
|
2023-02-26 08:37:18 +03:00
|
|
|
[[package]]
|
|
|
|
name = "wasm-streams"
|
|
|
|
version = "0.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6bbae3363c08332cadccd13b67db371814cd214c2524020932f0804b8cf7c078"
|
|
|
|
dependencies = [
|
|
|
|
"futures-util",
|
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
|
|
|
"wasm-bindgen-futures",
|
|
|
|
"web-sys",
|
|
|
|
]
|
|
|
|
|
2020-12-09 10:46:21 +03:00
|
|
|
[[package]]
|
|
|
|
name = "web-sys"
|
2022-11-30 08:59:42 +03:00
|
|
|
version = "0.3.59"
|
2020-12-09 10:46:21 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-30 08:59:42 +03:00
|
|
|
checksum = "ed055ab27f941423197eb86b2035720b1a3ce40504df082cac2ecc6ed73335a1"
|
2020-12-09 10:46:21 +03:00
|
|
|
dependencies = [
|
|
|
|
"js-sys",
|
|
|
|
"wasm-bindgen",
|
|
|
|
]
|
|
|
|
|
2022-01-03 03:22:14 +03:00
|
|
|
[[package]]
|
|
|
|
name = "webpki"
|
2022-11-14 08:25:38 +03:00
|
|
|
version = "0.22.0"
|
2022-01-03 03:22:14 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-14 08:25:38 +03:00
|
|
|
checksum = "f095d78192e208183081cc07bc5515ef55216397af48b873e5edcd72637fa1bd"
|
2022-01-03 03:22:14 +03:00
|
|
|
dependencies = [
|
|
|
|
"ring",
|
|
|
|
"untrusted",
|
|
|
|
]
|
|
|
|
|
2022-12-11 15:23:27 +03:00
|
|
|
[[package]]
|
|
|
|
name = "webpki-roots"
|
|
|
|
version = "0.22.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "368bfe657969fb01238bb756d351dcade285e0f6fcbd36dcb23359a5169975be"
|
|
|
|
dependencies = [
|
|
|
|
"webpki",
|
|
|
|
]
|
|
|
|
|
2016-07-14 13:38:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "which"
|
2023-01-23 00:23:42 +03:00
|
|
|
version = "4.4.0"
|
2016-08-08 22:06:06 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-01-23 00:23:42 +03:00
|
|
|
checksum = "2441c784c52b289a054b7201fc93253e288f094e2f4be9058343127c4226a269"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2021-11-12 15:28:26 +03:00
|
|
|
"either",
|
2020-03-20 22:13:32 +03:00
|
|
|
"libc",
|
2022-09-02 13:16:44 +03:00
|
|
|
"once_cell",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2016-07-14 13:38:26 +03:00
|
|
|
|
2023-04-19 15:30:29 +03:00
|
|
|
[[package]]
|
|
|
|
name = "widestring"
|
|
|
|
version = "0.5.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "17882f045410753661207383517a6f62ec3dbeb6a4ed2acce01f0728238d1983"
|
|
|
|
|
2018-01-07 18:33:04 +03:00
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
2020-12-08 08:07:09 +03:00
|
|
|
version = "0.3.9"
|
2018-01-07 18:33:04 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-12-08 08:07:09 +03:00
|
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"winapi-i686-pc-windows-gnu",
|
|
|
|
"winapi-x86_64-pc-windows-gnu",
|
|
|
|
]
|
2018-01-07 18:33:04 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
2018-02-01 18:29:23 +03:00
|
|
|
version = "0.4.0"
|
2018-01-07 18:33:04 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-18 18:07:45 +03:00
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
2018-01-07 18:33:04 +03:00
|
|
|
|
2018-08-28 14:41:11 +03:00
|
|
|
[[package]]
|
|
|
|
name = "winapi-util"
|
2020-04-28 07:55:50 +03:00
|
|
|
version = "0.1.5"
|
2018-08-28 14:41:11 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-04-28 07:55:50 +03:00
|
|
|
checksum = "70ec6ce85bb158151cae5e5c87f95a8e97d2c0c4b001223f33a334e3ce5de178"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2022-11-29 20:32:24 +03:00
|
|
|
"winapi",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2018-08-28 14:41:11 +03:00
|
|
|
|
2018-01-07 18:33:04 +03:00
|
|
|
[[package]]
|
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
2018-02-01 18:29:23 +03:00
|
|
|
version = "0.4.0"
|
2018-01-07 18:33:04 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2020-03-18 18:07:45 +03:00
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
2018-01-07 18:33:04 +03:00
|
|
|
|
2022-06-22 08:26:49 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.36.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ea04155a16a59f9eab786fe12a4a450e75cdb175f9e0d80da1e17db09f55b8d2"
|
|
|
|
dependencies = [
|
2022-10-20 20:41:46 +03:00
|
|
|
"windows_aarch64_msvc 0.36.1",
|
|
|
|
"windows_i686_gnu 0.36.1",
|
|
|
|
"windows_i686_msvc 0.36.1",
|
|
|
|
"windows_x86_64_gnu 0.36.1",
|
|
|
|
"windows_x86_64_msvc 0.36.1",
|
2022-06-22 08:26:49 +03:00
|
|
|
]
|
|
|
|
|
2022-10-20 20:41:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.42.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5a3e1820f08b8513f676f7ab6c1f99ff312fb97b553d30ff4dd86f9f15728aa7"
|
|
|
|
dependencies = [
|
2023-05-09 18:25:20 +03:00
|
|
|
"windows_aarch64_gnullvm 0.42.1",
|
2023-03-03 14:42:31 +03:00
|
|
|
"windows_aarch64_msvc 0.42.1",
|
|
|
|
"windows_i686_gnu 0.42.1",
|
|
|
|
"windows_i686_msvc 0.42.1",
|
|
|
|
"windows_x86_64_gnu 0.42.1",
|
2023-05-09 18:25:20 +03:00
|
|
|
"windows_x86_64_gnullvm 0.42.1",
|
2023-03-03 14:42:31 +03:00
|
|
|
"windows_x86_64_msvc 0.42.1",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.45.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0"
|
|
|
|
dependencies = [
|
2023-05-09 18:25:20 +03:00
|
|
|
"windows-targets 0.42.1",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
|
|
|
|
dependencies = [
|
|
|
|
"windows-targets 0.48.0",
|
2023-03-03 14:42:31 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows-targets"
|
|
|
|
version = "0.42.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8e2522491fbfcd58cc84d47aeb2958948c4b8982e9a2d8a2a35bbaed431390e7"
|
|
|
|
dependencies = [
|
2023-05-09 18:25:20 +03:00
|
|
|
"windows_aarch64_gnullvm 0.42.1",
|
2023-03-03 14:42:31 +03:00
|
|
|
"windows_aarch64_msvc 0.42.1",
|
|
|
|
"windows_i686_gnu 0.42.1",
|
|
|
|
"windows_i686_msvc 0.42.1",
|
|
|
|
"windows_x86_64_gnu 0.42.1",
|
2023-05-09 18:25:20 +03:00
|
|
|
"windows_x86_64_gnullvm 0.42.1",
|
2023-03-03 14:42:31 +03:00
|
|
|
"windows_x86_64_msvc 0.42.1",
|
2022-10-20 20:41:46 +03:00
|
|
|
]
|
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows-targets"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7b1eb6f0cd7c80c79759c929114ef071b87354ce476d9d94271031c0497adfd5"
|
|
|
|
dependencies = [
|
|
|
|
"windows_aarch64_gnullvm 0.48.0",
|
|
|
|
"windows_aarch64_msvc 0.48.0",
|
|
|
|
"windows_i686_gnu 0.48.0",
|
|
|
|
"windows_i686_msvc 0.48.0",
|
|
|
|
"windows_x86_64_gnu 0.48.0",
|
|
|
|
"windows_x86_64_gnullvm 0.48.0",
|
|
|
|
"windows_x86_64_msvc 0.48.0",
|
|
|
|
]
|
|
|
|
|
2022-10-20 20:41:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_gnullvm"
|
2023-03-03 14:42:31 +03:00
|
|
|
version = "0.42.1"
|
2022-10-20 20:41:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-03 14:42:31 +03:00
|
|
|
checksum = "8c9864e83243fdec7fc9c5444389dcbbfd258f745e7853198f365e3c4968a608"
|
2022-10-20 20:41:46 +03:00
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_gnullvm"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "91ae572e1b79dba883e0d315474df7305d12f569b400fcf90581b06062f7e1bc"
|
|
|
|
|
2022-06-22 08:26:49 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
|
|
|
version = "0.36.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "9bb8c3fd39ade2d67e9874ac4f3db21f0d710bee00fe7cab16949ec184eeaa47"
|
|
|
|
|
2022-10-20 20:41:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
2023-03-03 14:42:31 +03:00
|
|
|
version = "0.42.1"
|
2022-10-20 20:41:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-03 14:42:31 +03:00
|
|
|
checksum = "4c8b1b673ffc16c47a9ff48570a9d85e25d265735c503681332589af6253c6c7"
|
2022-10-20 20:41:46 +03:00
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b2ef27e0d7bdfcfc7b868b317c1d32c641a6fe4629c171b8928c7b08d98d7cf3"
|
|
|
|
|
2022-06-22 08:26:49 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
|
|
|
version = "0.36.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "180e6ccf01daf4c426b846dfc66db1fc518f074baa793aa7d9b9aaeffad6a3b6"
|
|
|
|
|
2022-10-20 20:41:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
2023-03-03 14:42:31 +03:00
|
|
|
version = "0.42.1"
|
2022-10-20 20:41:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-03 14:42:31 +03:00
|
|
|
checksum = "de3887528ad530ba7bdbb1faa8275ec7a1155a45ffa57c37993960277145d640"
|
2022-10-20 20:41:46 +03:00
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "622a1962a7db830d6fd0a69683c80a18fda201879f0f447f065a3b7467daa241"
|
|
|
|
|
2022-06-22 08:26:49 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
|
|
|
version = "0.36.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e2e7917148b2812d1eeafaeb22a97e4813dfa60a3f8f78ebe204bcc88f12f024"
|
|
|
|
|
2022-10-20 20:41:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
2023-03-03 14:42:31 +03:00
|
|
|
version = "0.42.1"
|
2022-10-20 20:41:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-03 14:42:31 +03:00
|
|
|
checksum = "bf4d1122317eddd6ff351aa852118a2418ad4214e6613a50e0191f7004372605"
|
2022-10-20 20:41:46 +03:00
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4542c6e364ce21bf45d69fdd2a8e455fa38d316158cfd43b3ac1c5b1b19f8e00"
|
|
|
|
|
2022-06-22 08:26:49 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
|
|
|
version = "0.36.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4dcd171b8776c41b97521e5da127a2d86ad280114807d0b2ab1e462bc764d9e1"
|
|
|
|
|
2022-10-20 20:41:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
2023-03-03 14:42:31 +03:00
|
|
|
version = "0.42.1"
|
2022-10-20 20:41:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-03 14:42:31 +03:00
|
|
|
checksum = "c1040f221285e17ebccbc2591ffdc2d44ee1f9186324dd3e84e99ac68d699c45"
|
2022-10-20 20:41:46 +03:00
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ca2b8a661f7628cbd23440e50b05d705db3686f894fc9580820623656af974b1"
|
|
|
|
|
2022-10-20 20:41:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnullvm"
|
2023-03-03 14:42:31 +03:00
|
|
|
version = "0.42.1"
|
2022-10-20 20:41:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-03 14:42:31 +03:00
|
|
|
checksum = "628bfdf232daa22b0d64fdb62b09fcc36bb01f05a3939e20ab73aaf9470d0463"
|
2022-10-20 20:41:46 +03:00
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnullvm"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7896dbc1f41e08872e9d5e8f8baa8fdd2677f29468c4e156210174edc7f7b953"
|
|
|
|
|
2022-06-22 08:26:49 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
|
|
|
version = "0.36.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c811ca4a8c853ef420abd8592ba53ddbbac90410fab6903b3e79972a631f7680"
|
|
|
|
|
2022-10-20 20:41:46 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
2023-03-03 14:42:31 +03:00
|
|
|
version = "0.42.1"
|
2022-10-20 20:41:46 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-03 14:42:31 +03:00
|
|
|
checksum = "447660ad36a13288b1db4d4248e857b510e8c3a225c822ba4fb748c0aafecffd"
|
2022-10-20 20:41:46 +03:00
|
|
|
|
2023-05-09 18:25:20 +03:00
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
|
|
|
version = "0.48.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1a515f5799fe4961cb532f983ce2b23082366b898e52ffbce459c86f67c8378a"
|
|
|
|
|
2023-02-26 10:09:53 +03:00
|
|
|
[[package]]
|
|
|
|
name = "winnow"
|
2023-03-27 21:45:10 +03:00
|
|
|
version = "0.4.1"
|
2023-02-26 10:09:53 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-03-27 21:45:10 +03:00
|
|
|
checksum = "ae8970b36c66498d8ff1d66685dc86b91b29db0c7739899012f63a63814b4b28"
|
2023-02-26 10:09:53 +03:00
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
]
|
|
|
|
|
2021-04-08 21:30:17 +03:00
|
|
|
[[package]]
|
|
|
|
name = "winreg"
|
2022-06-21 15:47:55 +03:00
|
|
|
version = "0.10.1"
|
2021-04-08 21:30:17 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-06-21 15:47:55 +03:00
|
|
|
checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d"
|
2021-04-08 21:30:17 +03:00
|
|
|
dependencies = [
|
2022-11-29 20:32:24 +03:00
|
|
|
"winapi",
|
2021-04-08 21:30:17 +03:00
|
|
|
]
|
|
|
|
|
2018-04-12 04:25:15 +03:00
|
|
|
[[package]]
|
|
|
|
name = "xattr"
|
2022-11-27 06:11:42 +03:00
|
|
|
version = "0.2.3"
|
2018-04-12 04:25:15 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2022-11-27 06:11:42 +03:00
|
|
|
checksum = "6d1526bbe5aaeb5eb06885f4d987bcdfa5e23187055de9b83fe00156a821fabc"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
2018-04-12 04:25:15 +03:00
|
|
|
|
2022-01-03 03:22:14 +03:00
|
|
|
[[package]]
|
|
|
|
name = "zeroize"
|
|
|
|
version = "1.5.7"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "c394b5bd0c6f669e7275d9c20aa90ae064cb22e75a1cad54e1b34088034b149f"
|
|
|
|
|
2016-05-21 21:14:26 +03:00
|
|
|
[[package]]
|
|
|
|
name = "zip"
|
2023-02-20 21:06:21 +03:00
|
|
|
version = "0.6.4"
|
2016-05-21 21:14:26 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-20 21:06:21 +03:00
|
|
|
checksum = "0445d0fbc924bb93539b4316c11afb121ea39296f99a3c4c9edad09e3658cdef"
|
2020-03-20 22:13:32 +03:00
|
|
|
dependencies = [
|
2020-12-08 08:07:09 +03:00
|
|
|
"byteorder",
|
2020-06-05 22:27:48 +03:00
|
|
|
"crc32fast",
|
2022-06-23 22:42:51 +03:00
|
|
|
"crossbeam-utils",
|
2020-03-20 22:13:32 +03:00
|
|
|
]
|
2020-06-05 19:59:57 +03:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zstd"
|
2023-02-27 21:15:09 +03:00
|
|
|
version = "0.12.3+zstd.1.5.2"
|
2020-06-05 19:59:57 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-27 21:15:09 +03:00
|
|
|
checksum = "76eea132fb024e0e13fd9c2f5d5d595d8a967aa72382ac2f9d39fcc95afd0806"
|
2020-06-05 19:59:57 +03:00
|
|
|
dependencies = [
|
|
|
|
"zstd-safe",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zstd-safe"
|
2023-02-27 21:15:09 +03:00
|
|
|
version = "6.0.4+zstd.1.5.4"
|
2020-06-05 19:59:57 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-27 21:15:09 +03:00
|
|
|
checksum = "7afb4b54b8910cf5447638cb54bf4e8a65cbedd783af98b98c62ffe91f185543"
|
2020-06-05 19:59:57 +03:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
"zstd-sys",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zstd-sys"
|
2023-02-27 21:15:09 +03:00
|
|
|
version = "2.0.7+zstd.1.5.4"
|
2020-06-05 19:59:57 +03:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2023-02-27 21:15:09 +03:00
|
|
|
checksum = "94509c3ba2fe55294d752b79842c530ccfab760192521df74a081a78d2b3c7f5"
|
2020-06-05 19:59:57 +03:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
2023-02-27 21:15:09 +03:00
|
|
|
"pkg-config",
|
2020-06-05 19:59:57 +03:00
|
|
|
]
|