pesde/Cargo.lock

6076 lines
143 KiB
Text
Raw Normal View History

2024-03-04 20:18:49 +00:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
2024-11-05 19:44:24 +00:00
version = 4
2024-03-04 20:18:49 +00:00
2024-07-30 11:37:54 +01:00
[[package]]
name = "actix-codec"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f7b0a21988c1bf877cf4759ef5ddaac04c1c9fe808c9142ecb78ba97d97a28a"
dependencies = [
"bitflags 2.6.0",
"bytes",
"futures-core",
"futures-sink",
"memchr",
"pin-project-lite",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "actix-cors"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9e772b3bcafe335042b5db010ab7c09013dad6eac4915c91d8d50902769f331"
dependencies = [
"actix-utils",
"actix-web",
2024-10-14 19:16:15 +01:00
"derive_more 0.99.18",
2024-07-30 11:37:54 +01:00
"futures-util",
"log",
"once_cell",
"smallvec",
]
[[package]]
name = "actix-governor"
2024-11-10 16:20:03 +00:00
version = "0.7.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "072a3d7907b945b0956f9721e01c117ad5765ce5be2fd9bb1e44a117c669de22"
2024-07-30 11:37:54 +01:00
dependencies = [
"actix-http",
"actix-web",
"futures",
"governor",
]
[[package]]
name = "actix-http"
version = "3.9.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d48f96fc3003717aeb9856ca3d02a8c7de502667ad76eeacd830b48d2e91fac4"
2024-07-30 11:37:54 +01:00
dependencies = [
"actix-codec",
"actix-rt",
"actix-service",
"actix-utils",
"ahash",
"base64 0.22.1",
"bitflags 2.6.0",
"brotli",
"bytes",
"bytestring",
2024-10-14 19:16:15 +01:00
"derive_more 0.99.18",
2024-07-30 11:37:54 +01:00
"encoding_rs",
"flate2",
"futures-core",
"h2 0.3.26",
"http 0.2.12",
"httparse",
"httpdate",
"itoa",
"language-tags",
"local-channel",
"mime",
"percent-encoding",
"pin-project-lite",
"rand",
"sha1",
"smallvec",
"tokio",
"tokio-util",
"tracing",
"zstd",
]
[[package]]
name = "actix-macros"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb"
dependencies = [
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-07-30 11:37:54 +01:00
]
[[package]]
name = "actix-router"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13d324164c51f63867b57e73ba5936ea151b8a41a1d23d1031eeb9f70d0236f8"
dependencies = [
"bytestring",
"cfg-if",
"http 0.2.12",
"regex",
"regex-lite",
"serde",
"tracing",
]
[[package]]
name = "actix-rt"
version = "2.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24eda4e2a6e042aa4e55ac438a2ae052d3b5da0ecf83d7411e1a368946925208"
dependencies = [
"futures-core",
"tokio",
]
[[package]]
name = "actix-server"
2024-08-08 16:59:59 +01:00
version = "2.5.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-08 16:59:59 +01:00
checksum = "7ca2549781d8dd6d75c40cf6b6051260a2cc2f3c62343d761a969a0640646894"
2024-07-30 11:37:54 +01:00
dependencies = [
"actix-rt",
"actix-service",
"actix-utils",
"futures-core",
"futures-util",
"mio 1.0.2",
2024-07-30 11:37:54 +01:00
"socket2",
"tokio",
"tracing",
]
[[package]]
name = "actix-service"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3b894941f818cfdc7ccc4b9e60fa7e53b5042a2e8567270f9147d5591893373a"
dependencies = [
"futures-core",
"paste",
"pin-project-lite",
]
[[package]]
name = "actix-utils"
version = "3.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88a1dcdff1466e3c2488e1cb5c36a71822750ad43839937f85d2f4d9f8b705d8"
dependencies = [
"local-waker",
"pin-project-lite",
]
[[package]]
name = "actix-web"
2024-08-12 10:55:21 +01:00
version = "4.9.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-12 10:55:21 +01:00
checksum = "9180d76e5cc7ccbc4d60a506f2c727730b154010262df5b910eb17dbe4b8cb38"
2024-07-30 11:37:54 +01:00
dependencies = [
"actix-codec",
"actix-http",
"actix-macros",
"actix-router",
"actix-rt",
"actix-server",
"actix-service",
"actix-utils",
"actix-web-codegen",
"ahash",
"bytes",
"bytestring",
"cfg-if",
"cookie",
2024-10-14 19:16:15 +01:00
"derive_more 0.99.18",
2024-07-30 11:37:54 +01:00
"encoding_rs",
"futures-core",
"futures-util",
2024-08-12 10:55:21 +01:00
"impl-more",
2024-07-30 11:37:54 +01:00
"itoa",
"language-tags",
"log",
"mime",
"once_cell",
"pin-project-lite",
"regex",
"regex-lite",
"serde",
"serde_json",
"serde_urlencoded",
"smallvec",
"socket2",
"time",
"url",
]
[[package]]
name = "actix-web-codegen"
version = "4.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f591380e2e68490b5dfaf1dd1aa0ebe78d84ba7067078512b4ea6e4492d622b8"
dependencies = [
"actix-router",
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-07-30 11:37:54 +01:00
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "addr2line"
2024-10-14 19:16:15 +01:00
version = "0.24.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "dfbe277e56a376000877090da837660b4427aad530e3028d44e0bffe4f89a1c1"
2024-03-04 20:18:49 +00:00
dependencies = [
"gimli",
]
[[package]]
name = "adler2"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
[[package]]
name = "aes"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b169f7a6d4742236a0a00c541b845991d0ac43e546831af1249753ab4c3aa3a0"
dependencies = [
"cfg-if",
2024-07-12 23:09:37 +01:00
"cipher",
"cpufeatures",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "ahash"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
dependencies = [
"cfg-if",
2024-07-30 11:37:54 +01:00
"getrandom",
2024-03-04 20:18:49 +00:00
"once_cell",
"version_check",
"zerocopy",
]
[[package]]
name = "aho-corasick"
version = "1.1.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
2024-03-04 20:18:49 +00:00
dependencies = [
"memchr",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "alloc-no-stdlib"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3"
[[package]]
name = "alloc-stdlib"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece"
dependencies = [
"alloc-no-stdlib",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "allocator-api2"
2024-11-28 21:44:42 +00:00
version = "0.2.20"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "45862d1c77f2228b9e10bc609d5bc203d86ebc9b87ad8d5d5167a6c9abf739d9"
2024-03-04 20:18:49 +00:00
[[package]]
name = "android-tzdata"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0"
[[package]]
name = "android_system_properties"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311"
dependencies = [
"libc",
]
[[package]]
name = "anstream"
2024-11-10 16:20:03 +00:00
version = "0.6.18"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "8acc5369981196006228e28809f761875c0327210a891e941f4c683b3a99529b"
2024-03-04 20:18:49 +00:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
2024-05-12 12:00:36 +01:00
"is_terminal_polyfill",
2024-03-04 20:18:49 +00:00
"utf8parse",
]
[[package]]
name = "anstyle"
2024-11-10 16:20:03 +00:00
version = "1.0.10"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "55cc3b69f167a1ef2e161439aa98aed94e6028e5f9a59be9a6ffb47aef1651f9"
2024-03-04 20:18:49 +00:00
[[package]]
name = "anstyle-parse"
2024-11-10 16:20:03 +00:00
version = "0.2.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "3b2d16507662817a6a20a9ea92df6652ee4f94f914589377d69f3b21bc5798a9"
2024-03-04 20:18:49 +00:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
2024-11-10 16:20:03 +00:00
version = "1.1.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "79947af37f4177cfead1110013d678905c37501914fba0efea834c3fe9a8d60c"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-11-10 16:20:03 +00:00
"windows-sys 0.59.0",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "anstyle-wincon"
2024-11-10 16:20:03 +00:00
version = "3.0.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "2109dbce0e72be3ec00bed26e6a7479ca384ad226efdd66db8fa2e3a38c83125"
2024-03-04 20:18:49 +00:00
dependencies = [
"anstyle",
2024-11-10 16:20:03 +00:00
"windows-sys 0.59.0",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "anyhow"
2024-11-10 15:43:25 +00:00
version = "1.0.93"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 15:43:25 +00:00
checksum = "4c95c10ba0b00a02636238b814946408b1322d5ac4760326e6fb8ec956d85775"
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "arc-swap"
version = "1.7.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
2024-03-04 20:18:49 +00:00
[[package]]
name = "async-broadcast"
2024-07-12 23:09:37 +01:00
version = "0.7.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "20cd0e2e25ea8e5f7e9df04578dc6cf5c83577fd09b1a46aaf5c85e1c33f2a7e"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"event-listener",
"event-listener-strategy",
2024-03-04 20:18:49 +00:00
"futures-core",
2024-07-12 23:09:37 +01:00
"pin-project-lite",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "async-channel"
2024-07-12 23:09:37 +01:00
version = "2.3.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "89b47800b0be77592da0afd425cc03468052844aff33b84e33cc696f64e77b6a"
2024-03-04 20:18:49 +00:00
dependencies = [
"concurrent-queue",
2024-07-12 23:09:37 +01:00
"event-listener-strategy",
2024-03-04 20:18:49 +00:00
"futures-core",
"pin-project-lite",
]
2024-11-05 19:44:24 +00:00
[[package]]
name = "async-compression"
2024-11-28 21:44:42 +00:00
version = "0.4.18"
2024-11-05 19:44:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "df895a515f70646414f4b45c0b79082783b80552b373a68283012928df56f522"
2024-11-05 19:44:24 +00:00
dependencies = [
"deflate64",
"flate2",
"futures-core",
"futures-io",
"memchr",
"pin-project-lite",
"tokio",
]
[[package]]
name = "async-executor"
2024-11-10 16:20:03 +00:00
version = "1.13.1"
2024-11-05 19:44:24 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "30ca9a001c1e8ba5149f91a74362376cc6bc5b919d92d988668657bd570bdcec"
2024-11-05 19:44:24 +00:00
dependencies = [
"async-task",
"concurrent-queue",
"fastrand",
"futures-lite",
"slab",
]
[[package]]
name = "async-fs"
version = "2.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebcd09b382f40fcd159c2d695175b2ae620ffa5f3bd6f664131efff4e8b9e04a"
dependencies = [
"async-lock",
"blocking",
"futures-lite",
]
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "async-io"
2024-11-10 16:20:03 +00:00
version = "2.4.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "43a2b323ccce0a1d90b449fd71f2a06ca7faa7c54c2751f06c9bd851fc061059"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"async-lock",
"cfg-if",
"concurrent-queue",
"futures-io",
"futures-lite",
"parking",
"polling",
"rustix",
"slab",
"tracing",
"windows-sys 0.59.0",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "async-lock"
version = "3.4.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "ff6e472cdea888a4bd64f342f09b3f50e1886d32afe8df3d663c01140b811b18"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"event-listener",
"event-listener-strategy",
"pin-project-lite",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "async-process"
2024-09-28 23:04:35 +01:00
version = "2.3.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "63255f1dc2381611000436537bbedfe83183faa303a5a0edaf191edef06526bb"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"async-channel",
"async-io",
"async-lock",
"async-signal",
"async-task",
2024-03-04 20:18:49 +00:00
"blocking",
2024-07-12 23:09:37 +01:00
"cfg-if",
"event-listener",
"futures-lite",
"rustix",
"tracing",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "async-recursion"
version = "1.1.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "async-signal"
version = "0.2.10"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "637e00349800c0bdf8bfc21ebbc0b6524abea702b0da4168ac00d070d0c0b9f3"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"async-io",
"async-lock",
"atomic-waker",
2024-03-04 20:18:49 +00:00
"cfg-if",
2024-07-12 23:09:37 +01:00
"futures-core",
2024-03-04 20:18:49 +00:00
"futures-io",
2024-07-12 23:09:37 +01:00
"rustix",
"signal-hook-registry",
2024-03-04 20:18:49 +00:00
"slab",
"windows-sys 0.59.0",
2024-03-04 20:18:49 +00:00
]
2024-11-05 19:44:24 +00:00
[[package]]
name = "async-stream"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b5a71a6f37880a80d1d7f19efd781e4b5de42c88f0722cc13bcb6cc2cfe8476"
dependencies = [
"async-stream-impl",
"futures-core",
"pin-project-lite",
]
[[package]]
name = "async-stream-impl"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7c24de15d275a1ecfd47a380fb4d5ec9bfe0933f309ed5e705b775596a3574d"
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-11-05 19:44:24 +00:00
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "async-task"
2024-05-12 12:00:36 +01:00
version = "4.7.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "8b75356056920673b02621b35afd0f7dda9306d03c79a30f5c56c44cf256e3de"
2024-03-04 20:18:49 +00:00
[[package]]
name = "async-trait"
2024-09-28 23:04:35 +01:00
version = "0.1.83"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "721cae7de5c34fbb2acd27e21e6d2cf7b886dce0c27388d46c4e6c47ea4318dd"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
2024-11-05 19:44:24 +00:00
[[package]]
name = "async_zip"
version = "0.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b9f7252833d5ed4b00aa9604b563529dd5e11de9c23615de2dcdf91eb87b52"
dependencies = [
"async-compression",
"crc32fast",
"futures-lite",
"pin-project",
2024-11-10 16:20:03 +00:00
"thiserror 1.0.69",
2024-11-05 19:44:24 +00:00
"tokio",
"tokio-util",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "atomic-waker"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
[[package]]
name = "autocfg"
2024-09-28 23:04:35 +01:00
version = "1.4.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
2024-03-04 20:18:49 +00:00
[[package]]
name = "backtrace"
2024-09-28 23:04:35 +01:00
version = "0.3.74"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "8d82cb332cdfaed17ae235a638438ac4d4839913cc2af585c3c6746e8f8bee1a"
2024-03-04 20:18:49 +00:00
dependencies = [
"addr2line",
"cfg-if",
"libc",
2024-09-28 23:04:35 +01:00
"miniz_oxide",
2024-03-04 20:18:49 +00:00
"object",
"rustc-demangle",
2024-09-28 23:04:35 +01:00
"windows-targets 0.52.6",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "base64"
version = "0.21.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
2024-05-12 12:00:36 +01:00
[[package]]
name = "base64"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
2024-03-04 20:18:49 +00:00
[[package]]
name = "bitflags"
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
[[package]]
name = "bitflags"
2024-07-12 23:09:37 +01:00
version = "2.6.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
2024-03-04 20:18:49 +00:00
2024-07-30 11:37:54 +01:00
[[package]]
name = "bitpacking"
version = "0.9.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c1d3e2bfd8d06048a179f7b17afc3188effa10385e7b00dc65af6aae732ea92"
dependencies = [
"crunchy",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "block-buffer"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
dependencies = [
"generic-array",
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "block-padding"
version = "0.3.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "a8894febbff9f758034a5b8e12d87918f56dfc64a8e1fe757d65e29041538d93"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"generic-array",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "blocking"
2024-07-12 23:09:37 +01:00
version = "1.6.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "703f41c54fc768e63e091340b424302bb1c29ef4aa0c7f10fe849dfb114d29ea"
2024-03-04 20:18:49 +00:00
dependencies = [
"async-channel",
"async-task",
"futures-io",
2024-07-12 23:09:37 +01:00
"futures-lite",
2024-03-04 20:18:49 +00:00
"piper",
]
2024-10-14 19:16:15 +01:00
[[package]]
name = "borsh"
version = "1.5.3"
2024-10-14 19:16:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2506947f73ad44e344215ccd6403ac2ae18cd8e046e581a441bf8d199f257f03"
2024-10-14 19:16:15 +01:00
dependencies = [
"cfg_aliases",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "brotli"
version = "6.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "74f7971dbd9326d58187408ab83117d8ac1bb9c17b085fdacd1cf2f598719b6b"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
"brotli-decompressor",
]
[[package]]
name = "brotli-decompressor"
version = "4.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a45bd2e4095a8b518033b128020dd4a55aab1c0a381ba4404a472630f4bc362"
dependencies = [
"alloc-no-stdlib",
"alloc-stdlib",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "bstr"
2024-11-28 21:44:42 +00:00
version = "1.11.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "1a68f1f47cdf0ec8ee4b941b2eee2a80cb796db73118c0dd09ac63fbe405be22"
2024-03-04 20:18:49 +00:00
dependencies = [
"memchr",
2024-07-12 23:09:37 +01:00
"regex-automata",
2024-03-04 20:18:49 +00:00
"serde",
]
[[package]]
name = "bumpalo"
2024-05-12 12:00:36 +01:00
version = "3.16.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
2024-03-04 20:18:49 +00:00
[[package]]
name = "bytecount"
2024-05-12 12:00:36 +01:00
version = "0.6.8"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "5ce89b21cab1437276d2650d57e971f9d548a2d9037cc231abdc0562b97498ce"
2024-03-04 20:18:49 +00:00
[[package]]
name = "byteorder"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
[[package]]
name = "bytes"
2024-11-28 21:44:42 +00:00
version = "1.9.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
2024-03-04 20:18:49 +00:00
2024-07-30 11:37:54 +01:00
[[package]]
name = "bytestring"
2024-11-28 21:44:42 +00:00
version = "1.4.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "e465647ae23b2823b0753f50decb2d5a86d2bb2cac04788fafd1f80e45378e5f"
2024-07-30 11:37:54 +01:00
dependencies = [
"bytes",
]
2024-07-12 23:09:37 +01:00
[[package]]
name = "cbc"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "26b52a9543ae338f279b96b0b9fed9c8093744685043739079ce85cd58f289a6"
dependencies = [
"cipher",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "cc"
2024-11-28 21:44:42 +00:00
version = "1.2.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "fd9de9f2205d5ef3fd67e685b0df337994ddd4495e2a28d185500d0e1edfea47"
2024-03-04 20:18:49 +00:00
dependencies = [
"jobserver",
"libc",
"shlex",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "census"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f4c707c6a209cbe82d10abd08e1ea8995e9ea937d2550646e02798948992be0"
2024-03-04 20:18:49 +00:00
[[package]]
name = "cfg-if"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2024-03-16 16:31:27 +00:00
[[package]]
name = "cfg_aliases"
2024-07-12 23:09:37 +01:00
version = "0.2.1"
2024-03-16 16:31:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724"
2024-03-16 16:31:27 +00:00
2024-03-04 20:18:49 +00:00
[[package]]
name = "chrono"
2024-07-12 23:09:37 +01:00
version = "0.4.38"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
2024-03-04 20:18:49 +00:00
dependencies = [
"android-tzdata",
"iana-time-zone",
"js-sys",
"num-traits",
2024-03-16 16:31:27 +00:00
"serde",
2024-03-04 20:18:49 +00:00
"wasm-bindgen",
2024-07-12 23:09:37 +01:00
"windows-targets 0.52.6",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "cipher"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
"crypto-common",
"inout",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "clap"
2024-11-28 21:44:42 +00:00
version = "4.5.21"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "fb3b4b9e5a7c7514dfa52869339ee98b3156b0bfb4e8a77c4ff4babb64b1604f"
2024-03-04 20:18:49 +00:00
dependencies = [
"clap_builder",
"clap_derive",
]
[[package]]
name = "clap_builder"
2024-11-28 21:44:42 +00:00
version = "4.5.21"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "b17a95aa67cc7b5ebd32aa5370189aa0d79069ef1c64ce893bd30fb24bff20ec"
2024-03-04 20:18:49 +00:00
dependencies = [
"anstream",
"anstyle",
"clap_lex",
2024-07-12 23:09:37 +01:00
"strsim",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "clap_derive"
2024-09-28 23:04:35 +01:00
version = "4.5.18"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "4ac6a0c7b1a9e9a5186361f67dfa1b88213572f427fb9ab038efb2bd8c582dab"
2024-03-04 20:18:49 +00:00
dependencies = [
"heck",
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "clap_lex"
2024-11-28 21:44:42 +00:00
version = "0.7.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "afb84c814227b90d6895e01398aee0d8033c00e7466aca416fb6a8e0eb19d8a7"
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "clru"
version = "0.6.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "cbd0f76e066e64fdc5631e3bb46381254deab9ef1158292f27c8c57e3bf3fe59"
2024-03-04 20:18:49 +00:00
[[package]]
name = "colorchoice"
2024-11-10 16:20:03 +00:00
version = "1.0.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "5b63caa9aa9397e2d9480a9b13673856c78d8ac123288526c37d7839f2a86990"
2024-03-04 20:18:49 +00:00
2024-07-12 23:09:37 +01:00
[[package]]
name = "colored"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8"
dependencies = [
"lazy_static",
"windows-sys 0.48.0",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "concurrent-queue"
2024-05-12 12:00:36 +01:00
version = "2.5.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
2024-03-04 20:18:49 +00:00
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "console"
version = "0.15.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
dependencies = [
"encode_unicode",
"lazy_static",
"libc",
2024-11-28 21:44:42 +00:00
"unicode-width 0.1.14",
2024-03-04 20:18:49 +00:00
"windows-sys 0.52.0",
]
2024-11-24 19:21:16 +00:00
[[package]]
name = "const_format"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50c655d81ff1114fb0dcdea9225ea9f0cc712a6f8d189378e82bdf62a473a64b"
dependencies = [
"const_format_proc_macros",
]
[[package]]
name = "const_format_proc_macros"
version = "0.2.33"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eff1a44b93f47b1bac19a27932f5c591e43d1ba357ee4f61526c8a25603f0eb1"
dependencies = [
"proc-macro2",
"quote",
"unicode-xid",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "constant_time_eq"
2024-09-02 15:49:40 +01:00
version = "0.3.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-02 15:49:40 +01:00
checksum = "7c74b8349d32d297c9134b8c88677813a227df8f779daa29bfc29c183fe3dca6"
2024-03-04 20:18:49 +00:00
[[package]]
name = "convert_case"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e"
2024-09-02 15:49:40 +01:00
[[package]]
name = "convert_case"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
dependencies = [
"unicode-segmentation",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "cookie"
version = "0.16.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e859cd57d0710d9e06c381b550c06e76992472a8c6d527aecd2fc673dcc231fb"
dependencies = [
"percent-encoding",
"time",
"version_check",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "core-foundation"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
dependencies = [
"core-foundation-sys",
"libc",
]
2024-10-14 19:16:15 +01:00
[[package]]
name = "core-foundation"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b55271e5c8c478ad3f38ad24ef34923091e0548492a266d19b3c0b4d82574c63"
dependencies = [
"core-foundation-sys",
"libc",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "core-foundation-sys"
version = "0.8.7"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b"
2024-03-04 20:18:49 +00:00
[[package]]
name = "cpufeatures"
2024-11-28 21:44:42 +00:00
version = "0.2.16"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "16b80225097f2e5ae4e7179dd2266824648f3e2f49d9134d584b76389d31c4c3"
2024-03-04 20:18:49 +00:00
dependencies = [
"libc",
]
2024-07-12 23:09:37 +01:00
[[package]]
name = "crc32fast"
version = "1.4.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"cfg-if",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "crossbeam-channel"
version = "0.5.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33480d6946193aa8033910124896ca395333cae7e2d1113d1fef6c3272217df2"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-deque"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "613f8cc01fe9cf1a3eb3d7f488fd2fa8388403e97039e2f73692932e291a770d"
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
]
[[package]]
name = "crossbeam-epoch"
version = "0.9.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
dependencies = [
"crossbeam-utils",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "crossbeam-utils"
2024-07-12 23:09:37 +01:00
version = "0.8.20"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
2024-03-04 20:18:49 +00:00
[[package]]
name = "crossterm"
version = "0.25.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e64e6c0fbe2c17357405f7c758c1ef960fce08bdfb2c03d88d2a18d7e09c4b67"
dependencies = [
"bitflags 1.3.2",
"crossterm_winapi",
"libc",
2024-07-26 17:47:53 +01:00
"mio 0.8.11",
"parking_lot",
"signal-hook",
"signal-hook-mio",
"winapi",
]
[[package]]
name = "crossterm_winapi"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
dependencies = [
"winapi",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "crunchy"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
2024-03-04 20:18:49 +00:00
[[package]]
name = "crypto-common"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
dependencies = [
"generic-array",
"typenum",
]
[[package]]
name = "darling"
2024-07-12 23:09:37 +01:00
version = "0.20.10"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
2024-03-04 20:18:49 +00:00
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
2024-07-12 23:09:37 +01:00
version = "0.20.10"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
2024-03-04 20:18:49 +00:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
2024-07-12 23:09:37 +01:00
"strsim",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "darling_macro"
2024-07-12 23:09:37 +01:00
version = "0.20.10"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
2024-03-04 20:18:49 +00:00
dependencies = [
"darling_core",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "dashmap"
2024-11-10 16:20:03 +00:00
version = "6.1.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "5041cc499144891f3790297212f32a74fb938e5136a14943f338ef9e0ae276cf"
2024-07-30 11:37:54 +01:00
dependencies = [
"cfg-if",
2024-11-10 16:20:03 +00:00
"crossbeam-utils",
2024-07-30 11:37:54 +01:00
"hashbrown 0.14.5",
"lock_api",
"once_cell",
"parking_lot_core",
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "dbus"
version = "0.9.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "1bb21987b9fb1613058ba3843121dd18b163b254d8a6e797e144cbac14d96d1b"
dependencies = [
2024-07-12 23:09:37 +01:00
"libc",
"libdbus-sys",
"winapi",
]
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "dbus-secret-service"
2024-10-14 19:16:15 +01:00
version = "4.0.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "b42a16374481d92aed73ae45b1f120207d8e71d24fb89f357fadbd8f946fd84b"
2024-07-12 23:09:37 +01:00
dependencies = [
"aes",
"block-padding",
"cbc",
"dbus",
"futures-util",
"hkdf",
"num",
"once_cell",
"rand",
"sha2",
]
2024-03-04 20:18:49 +00:00
2024-07-30 11:37:54 +01:00
[[package]]
name = "debugid"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bef552e6f588e446098f6ba40d89ac146c8c7b64aade83c051ee00bb5d2bc18d"
dependencies = [
"serde",
"uuid",
]
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "deflate64"
2024-07-22 15:41:45 +01:00
version = "0.1.9"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-22 15:41:45 +01:00
checksum = "da692b8d1080ea3045efaab14434d40468c3d8657e42abddfffca87b428f4c1b"
2024-03-04 20:18:49 +00:00
[[package]]
name = "deranged"
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
dependencies = [
"powerfmt",
"serde",
]
[[package]]
name = "derive_more"
2024-07-12 23:09:37 +01:00
version = "0.99.18"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "5f33878137e4dafd7fa914ad4e259e18a4e8e532b9617a2d0150262bf53abfce"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-09-02 15:49:40 +01:00
"convert_case 0.4.0",
2024-03-04 20:18:49 +00:00
"proc-macro2",
"quote",
2024-07-12 23:09:37 +01:00
"rustc_version",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
2024-10-14 19:16:15 +01:00
[[package]]
name = "derive_more"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a9b99b9cbbe49445b21764dc0625032a89b145a2642e67603e1c936f5458d05"
dependencies = [
"derive_more-impl",
]
[[package]]
name = "derive_more-impl"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cb7330aeadfbe296029522e6c40f315320aba36fc43a5b3632f3795348f3bd22"
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-10-14 19:16:15 +01:00
"unicode-xid",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
"crypto-common",
"subtle",
]
[[package]]
2024-07-26 17:47:53 +01:00
name = "dirs"
2024-03-04 20:18:49 +00:00
version = "5.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-26 17:47:53 +01:00
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
2024-03-04 20:18:49 +00:00
dependencies = [
"dirs-sys",
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "dirs-sys"
version = "0.4.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
dependencies = [
"libc",
"option-ext",
2024-07-12 23:09:37 +01:00
"redox_users",
2024-03-04 20:18:49 +00:00
"windows-sys 0.48.0",
]
2024-11-10 16:20:03 +00:00
[[package]]
name = "displaydoc"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0"
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-11-10 16:20:03 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "dotenvy"
version = "0.15.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
[[package]]
name = "downcast-rs"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
2024-03-04 20:18:49 +00:00
[[package]]
name = "dunce"
2024-08-08 16:59:59 +01:00
version = "1.0.5"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-08 16:59:59 +01:00
checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813"
2024-03-04 20:18:49 +00:00
[[package]]
name = "dyn-clone"
version = "1.0.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d6ef0072f8a535281e4876be788938b528e9a1d43900b82c2569af7da799125"
2024-07-30 11:37:54 +01:00
[[package]]
name = "either"
version = "1.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
2024-03-04 20:18:49 +00:00
[[package]]
name = "encode_unicode"
version = "0.3.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f"
[[package]]
name = "encoding_rs"
2024-11-10 16:20:03 +00:00
version = "0.8.35"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
2024-03-04 20:18:49 +00:00
dependencies = [
"cfg-if",
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "endi"
version = "1.1.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "a3d8a32ae18130a3c84dd492d4215c3d913c3b07c6b63c2eb3eb7ff1101ab7bf"
2024-03-04 20:18:49 +00:00
[[package]]
name = "enumflags2"
2024-07-12 23:09:37 +01:00
version = "0.7.10"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "d232db7f5956f3f14313dc2f87985c58bd2c695ce124c8cdd984e08e15ac133d"
2024-03-04 20:18:49 +00:00
dependencies = [
"enumflags2_derive",
"serde",
]
[[package]]
name = "enumflags2_derive"
2024-07-12 23:09:37 +01:00
version = "0.7.10"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "de0d48a183585823424a4ce1aa132d174a6a81bd540895822eb4c8373a8e49e8"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-16 16:31:27 +00:00
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "env_logger"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cd405aab171cb85d6735e5c8d9db038c17d3ca007a4d2c25f337935c3d90580"
dependencies = [
"humantime",
"is-terminal",
"log",
"regex",
"termcolor",
]
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
[[package]]
name = "errno"
2024-11-28 21:44:42 +00:00
version = "0.3.10"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "33d852cb9b869c2a9b3df2f71a3074817f01e1844f839a144f5fcef059a4eb5d"
2024-03-04 20:18:49 +00:00
dependencies = [
"libc",
2024-11-28 21:44:42 +00:00
"windows-sys 0.59.0",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "event-listener"
2024-07-12 23:09:37 +01:00
version = "5.3.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba"
2024-03-04 20:18:49 +00:00
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite",
]
[[package]]
name = "event-listener-strategy"
2024-05-12 12:00:36 +01:00
version = "0.5.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "0f214dc438f977e6d4e3500aaa277f5ad94ca83fbbd9b1a15713ce2344ccc5a1"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"event-listener",
2024-03-04 20:18:49 +00:00
"pin-project-lite",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "fastdivide"
2024-11-10 16:20:03 +00:00
version = "0.4.2"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "9afc2bd4d5a73106dd53d10d73d3401c2f32730ba2c0b93ddb888a8983680471"
2024-07-30 11:37:54 +01:00
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "faster-hex"
version = "0.9.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "a2a2b11eda1d40935b26cf18f6833c526845ae8c41e58d09af6adeb6f0269183"
2024-10-25 09:59:33 +01:00
dependencies = [
"serde",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "fastrand"
2024-11-10 16:20:03 +00:00
version = "2.2.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "486f806e73c5707928240ddc295403b1b93c96a02038563881c4a2fd84b81ac4"
2024-03-04 20:18:49 +00:00
[[package]]
name = "filetime"
2024-09-02 15:49:40 +01:00
version = "0.2.25"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-02 15:49:40 +01:00
checksum = "35c0522e981e68cbfa8c3f978441a5f34b30b96e146b33cd3359176b50fe8586"
2024-03-04 20:18:49 +00:00
dependencies = [
"cfg-if",
"libc",
"libredox",
"windows-sys 0.59.0",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "findshlibs"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "40b9e59cd0f7e0806cca4be089683ecb6434e602038df21fe6bf6711b2f07f64"
dependencies = [
"cc",
"lazy_static",
"libc",
"winapi",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "flate2"
2024-11-28 21:44:42 +00:00
version = "1.0.35"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
2024-03-04 20:18:49 +00:00
dependencies = [
"crc32fast",
2024-09-28 23:04:35 +01:00
"miniz_oxide",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
2024-10-14 19:16:15 +01:00
[[package]]
name = "foldhash"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f81ec6369c545a7d40e4589b5597581fa1c441fe1cce96dd1de43159910a36a2"
2024-07-30 11:37:54 +01:00
[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
"foreign-types-shared",
]
[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"
2024-03-04 20:18:49 +00:00
[[package]]
name = "form_urlencoded"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
dependencies = [
"percent-encoding",
]
2024-11-01 19:57:32 +00:00
[[package]]
name = "fs-err"
version = "3.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8bb60e7409f34ef959985bc9d9c5ee8f5db24ee46ed9775850548021710f807f"
dependencies = [
"autocfg",
2024-11-05 19:44:24 +00:00
"tokio",
2024-11-01 19:57:32 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "fs4"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f7e180ac76c23b45e767bd7ae9579bc0bb458618c4bc71835926e098e61d15f8"
dependencies = [
"rustix",
"windows-sys 0.52.0",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "full_moon"
2024-11-28 21:44:42 +00:00
version = "1.1.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "4c7dafc2cbadd914f7019a08395a3a29c5d735cb6762751c5669e48c5ff2c775"
2024-03-04 20:18:49 +00:00
dependencies = [
"bytecount",
"cfg-if",
2024-10-14 19:16:15 +01:00
"derive_more 1.0.0",
2024-03-04 20:18:49 +00:00
"full_moon_derive",
"paste",
"serde",
"smol_str",
]
[[package]]
name = "full_moon_derive"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "99b4bd12ce56927d1dc5478d21528ea8c4b93ca85ff8f8043b6a5351a2a3c6f7"
dependencies = [
"indexmap 1.9.3",
"proc-macro2",
"quote",
"syn 1.0.109",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "futures"
2024-10-14 19:16:15 +01:00
version = "0.3.31"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
2024-07-30 11:37:54 +01:00
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "futures-channel"
2024-10-14 19:16:15 +01:00
version = "0.3.31"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
2024-03-04 20:18:49 +00:00
dependencies = [
"futures-core",
"futures-sink",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "futures-core"
2024-10-14 19:16:15 +01:00
version = "0.3.31"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
2024-03-04 20:18:49 +00:00
2024-07-30 11:37:54 +01:00
[[package]]
name = "futures-executor"
2024-10-14 19:16:15 +01:00
version = "0.3.31"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
2024-07-30 11:37:54 +01:00
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "futures-io"
2024-10-14 19:16:15 +01:00
version = "0.3.31"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
2024-03-04 20:18:49 +00:00
[[package]]
name = "futures-lite"
2024-11-10 16:20:03 +00:00
version = "2.5.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "cef40d21ae2c515b51041df9ed313ed21e572df340ea58a922a0aefe7e8891a1"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"fastrand",
2024-03-04 20:18:49 +00:00
"futures-core",
"futures-io",
"parking",
"pin-project-lite",
]
[[package]]
name = "futures-macro"
2024-10-14 19:16:15 +01:00
version = "0.3.31"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "futures-sink"
2024-10-14 19:16:15 +01:00
version = "0.3.31"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
2024-03-04 20:18:49 +00:00
[[package]]
name = "futures-task"
2024-10-14 19:16:15 +01:00
version = "0.3.31"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
2024-03-04 20:18:49 +00:00
2024-07-30 11:37:54 +01:00
[[package]]
name = "futures-timer"
version = "3.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f288b0a4f20f9a56b5d1da57e2227c661b7b16168e2f72365f57b63326e29b24"
2024-03-04 20:18:49 +00:00
[[package]]
name = "futures-util"
2024-10-14 19:16:15 +01:00
version = "0.3.31"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-30 11:37:54 +01:00
"futures-channel",
2024-03-04 20:18:49 +00:00
"futures-core",
"futures-io",
"futures-macro",
"futures-sink",
"futures-task",
"memchr",
"pin-project-lite",
"pin-utils",
"slab",
]
[[package]]
name = "fuzzy-matcher"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "54614a3312934d066701a80f20f15fa3b56d67ac7722b39eea5b4c9dd1d66c94"
dependencies = [
"thread_local",
]
[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
2024-07-12 23:09:37 +01:00
"byteorder",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "generic-array"
version = "0.14.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
dependencies = [
"typenum",
"version_check",
]
[[package]]
name = "getrandom"
2024-07-12 23:09:37 +01:00
version = "0.2.15"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2024-03-04 20:18:49 +00:00
dependencies = [
"cfg-if",
2024-11-28 21:44:42 +00:00
"js-sys",
2024-03-04 20:18:49 +00:00
"libc",
2024-07-12 23:09:37 +01:00
"wasi",
2024-11-28 21:44:42 +00:00
"wasm-bindgen",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "gimli"
2024-10-14 19:16:15 +01:00
version = "0.31.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "07e28edb80900c19c28f1072f2e8aeca7fa06b23cd4169cefe1af5aa3260783f"
2024-07-12 23:09:37 +01:00
2024-07-23 15:37:47 +01:00
[[package]]
name = "git2"
version = "0.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b903b73e45dc0c6c596f2d37eccece7c1c8bb6e4407b001096387c63d0d93724"
dependencies = [
"bitflags 2.6.0",
"libc",
"libgit2-sys",
"log",
"openssl-probe",
"openssl-sys",
"url",
]
2024-07-12 23:09:37 +01:00
[[package]]
name = "gix"
2024-11-28 21:44:42 +00:00
version = "0.68.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "b04c66359b5e17f92395abc433861df0edf48f39f3f590818d1d7217327dd6a1"
2024-07-12 23:09:37 +01:00
dependencies = [
"gix-actor",
"gix-attributes",
"gix-command",
"gix-commitgraph",
"gix-config",
"gix-credentials",
"gix-date",
"gix-diff",
"gix-discover",
"gix-features",
"gix-filter",
"gix-fs",
"gix-glob",
"gix-hash",
"gix-hashtable",
"gix-ignore",
"gix-index",
"gix-lock",
"gix-negotiate",
"gix-object",
"gix-odb",
"gix-pack",
"gix-path",
"gix-pathspec",
"gix-prompt",
"gix-protocol",
"gix-ref",
"gix-refspec",
"gix-revision",
"gix-revwalk",
"gix-sec",
"gix-submodule",
"gix-tempfile",
"gix-trace",
"gix-transport",
"gix-traverse",
"gix-url",
"gix-utils",
"gix-validate",
"gix-worktree",
2024-07-22 15:41:45 +01:00
"gix-worktree-state",
2024-07-12 23:09:37 +01:00
"once_cell",
"regex",
"smallvec",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-actor"
2024-11-28 21:44:42 +00:00
version = "0.33.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "32b24171f514cef7bb4dfb72a0b06dacf609b33ba8ad2489d4c4559a03b7afb3"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"bstr",
"gix-date",
"gix-utils",
"itoa",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-09-02 15:49:40 +01:00
"winnow",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "gix-attributes"
2024-11-28 21:44:42 +00:00
version = "0.23.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "ddf9bf852194c0edfe699a2d36422d2c1f28f73b7c6d446c3f0ccd3ba232cadc"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-glob",
"gix-path",
"gix-quote",
"gix-trace",
"kstring",
"smallvec",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
"unicode-bom",
]
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "gix-bitmap"
2024-11-28 21:44:42 +00:00
version = "0.2.13"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "d48b897b4bbc881aea994b4a5bbb340a04979d7be9089791304e04a9fbc66b53"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "gix-chunk"
2024-11-28 21:44:42 +00:00
version = "0.4.10"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "c6ffbeb3a5c0b8b84c3fe4133a6f8c82fa962f4caefe8d0762eced025d3eb4f7"
2024-07-12 23:09:37 +01:00
dependencies = [
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "gix-command"
2024-11-28 21:44:42 +00:00
version = "0.3.11"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "6d7d6b8f3a64453fd7e8191eb80b351eb7ac0839b40a1237cd2c137d5079fe53"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-path",
"gix-trace",
"shell-words",
]
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "gix-commitgraph"
2024-11-28 21:44:42 +00:00
version = "0.25.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "a8da6591a7868fb2b6dabddea6b09988b0b05e0213f938dbaa11a03dd7a48d85"
2024-03-04 20:18:49 +00:00
dependencies = [
"bstr",
2024-07-12 23:09:37 +01:00
"gix-chunk",
"gix-features",
"gix-hash",
"memmap2",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "gix-config"
2024-11-28 21:44:42 +00:00
version = "0.42.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "6649b406ca1f99cb148959cf00468b231f07950f8ec438cc0903cda563606f19"
dependencies = [
2024-07-12 23:09:37 +01:00
"bstr",
"gix-config-value",
"gix-features",
"gix-glob",
"gix-path",
"gix-ref",
"gix-sec",
"memchr",
"once_cell",
"smallvec",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
"unicode-bom",
2024-09-02 15:49:40 +01:00
"winnow",
]
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "gix-config-value"
2024-11-28 21:44:42 +00:00
version = "0.14.10"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "49aaeef5d98390a3bcf9dbc6440b520b793d1bf3ed99317dc407b02be995b28e"
2024-07-12 23:09:37 +01:00
dependencies = [
"bitflags 2.6.0",
"bstr",
"gix-path",
"libc",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-credentials"
2024-11-28 21:44:42 +00:00
version = "0.25.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "2be87bb8685fc7e6e7032ef71c45068ffff609724a0c897b8047fde10db6ae71"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-command",
"gix-config-value",
"gix-path",
"gix-prompt",
"gix-sec",
"gix-trace",
"gix-url",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-date"
2024-11-28 21:44:42 +00:00
version = "0.9.2"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "691142b1a34d18e8ed6e6114bc1a2736516c5ad60ef3aa9bd1b694886e3ca92d"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"itoa",
"jiff",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-diff"
2024-11-28 21:44:42 +00:00
version = "0.48.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "a327be31a392144b60ab0b1c863362c32a1c8f7effdfa2141d5d5b6b916ef3bf"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-hash",
"gix-object",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-discover"
2024-11-28 21:44:42 +00:00
version = "0.37.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "83bf6dfa4e266a4a9becb4d18fc801f92c3f7cc6c433dd86fdadbcf315ffb6ef"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"dunce",
"gix-fs",
"gix-hash",
"gix-path",
"gix-ref",
"gix-sec",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-features"
2024-11-28 21:44:42 +00:00
version = "0.39.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "7d85d673f2e022a340dba4713bed77ef2cf4cd737d2f3e0f159d45e0935fd81f"
2024-07-12 23:09:37 +01:00
dependencies = [
"bytes",
"crc32fast",
2024-11-05 19:44:24 +00:00
"crossbeam-channel",
2024-07-12 23:09:37 +01:00
"flate2",
"gix-hash",
"gix-trace",
"gix-utils",
"libc",
"once_cell",
2024-11-05 19:44:24 +00:00
"parking_lot",
2024-07-12 23:09:37 +01:00
"prodash",
"sha1_smol",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
"walkdir",
]
[[package]]
name = "gix-filter"
2024-11-28 21:44:42 +00:00
version = "0.15.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "5108cc58d58b27df10ac4de7f31b2eb96d588a33e5eba23739b865f5d8db7995"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"encoding_rs",
"gix-attributes",
"gix-command",
"gix-hash",
"gix-object",
"gix-packetline-blocking",
"gix-path",
"gix-quote",
"gix-trace",
"gix-utils",
"smallvec",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-fs"
2024-10-25 09:59:33 +01:00
version = "0.12.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-25 09:59:33 +01:00
checksum = "34740384d8d763975858fa2c176b68652a6fcc09f616e24e3ce967b0d370e4d8"
2024-07-12 23:09:37 +01:00
dependencies = [
"fastrand",
"gix-features",
"gix-utils",
]
[[package]]
name = "gix-glob"
2024-11-28 21:44:42 +00:00
version = "0.17.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "aaf69a6bec0a3581567484bf99a4003afcaf6c469fd4214352517ea355cf3435"
2024-07-12 23:09:37 +01:00
dependencies = [
"bitflags 2.6.0",
"bstr",
"gix-features",
"gix-path",
]
[[package]]
name = "gix-hash"
2024-11-28 21:44:42 +00:00
version = "0.15.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "0b5eccc17194ed0e67d49285e4853307e4147e95407f91c1c3e4a13ba9f4e4ce"
2024-07-12 23:09:37 +01:00
dependencies = [
"faster-hex",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-hashtable"
2024-10-25 09:59:33 +01:00
version = "0.6.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-25 09:59:33 +01:00
checksum = "0ef65b256631078ef733bc5530c4e6b1c2e7d5c2830b75d4e9034ab3997d18fe"
2024-07-12 23:09:37 +01:00
dependencies = [
"gix-hash",
"hashbrown 0.14.5",
"parking_lot",
]
[[package]]
name = "gix-ignore"
2024-11-28 21:44:42 +00:00
version = "0.12.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "b6b1fb24d2a4af0aa7438e2771d60c14a80cf2c9bd55c29cf1712b841f05bb8a"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-glob",
"gix-path",
"gix-trace",
"unicode-bom",
]
[[package]]
name = "gix-index"
2024-11-28 21:44:42 +00:00
version = "0.37.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "270645fd20556b64c8ffa1540d921b281e6994413a0ca068596f97e9367a257a"
2024-07-12 23:09:37 +01:00
dependencies = [
"bitflags 2.6.0",
"bstr",
"filetime",
"fnv",
"gix-bitmap",
"gix-features",
"gix-fs",
"gix-hash",
"gix-lock",
"gix-object",
"gix-traverse",
"gix-utils",
"gix-validate",
"hashbrown 0.14.5",
"itoa",
"libc",
"memmap2",
"rustix",
"smallvec",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-lock"
2024-11-28 21:44:42 +00:00
version = "15.0.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "1cd3ab68a452db63d9f3ebdacb10f30dba1fa0d31ac64f4203d395ed1102d940"
2024-07-12 23:09:37 +01:00
dependencies = [
"gix-tempfile",
"gix-utils",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-negotiate"
2024-11-28 21:44:42 +00:00
version = "0.17.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "d27f830a16405386e9c83b9d5be8261fe32bbd6b3caf15bd1b284c6b2b7ef1a8"
2024-07-12 23:09:37 +01:00
dependencies = [
"bitflags 2.6.0",
"gix-commitgraph",
"gix-date",
"gix-hash",
"gix-object",
"gix-revwalk",
"smallvec",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-object"
2024-11-28 21:44:42 +00:00
version = "0.46.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "65d93e2bbfa83a307e47f45e45de7b6c04d7375a8bd5907b215f4bf45237d879"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-actor",
"gix-date",
"gix-features",
"gix-hash",
2024-10-25 09:59:33 +01:00
"gix-hashtable",
2024-07-12 23:09:37 +01:00
"gix-utils",
"gix-validate",
"itoa",
"smallvec",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-09-02 15:49:40 +01:00
"winnow",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-odb"
2024-11-28 21:44:42 +00:00
version = "0.65.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "93bed6e1b577c25a6bb8e6ecbf4df525f29a671ddf5f2221821a56a8dbeec4e3"
2024-07-12 23:09:37 +01:00
dependencies = [
"arc-swap",
"gix-date",
"gix-features",
"gix-fs",
"gix-hash",
2024-10-25 09:59:33 +01:00
"gix-hashtable",
2024-07-12 23:09:37 +01:00
"gix-object",
"gix-pack",
"gix-path",
"gix-quote",
"parking_lot",
"tempfile",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-pack"
2024-11-28 21:44:42 +00:00
version = "0.55.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "9b91fec04d359544fecbb8e85117ec746fbaa9046ebafcefb58cb74f20dc76d4"
2024-07-12 23:09:37 +01:00
dependencies = [
"clru",
"gix-chunk",
"gix-features",
"gix-hash",
"gix-hashtable",
"gix-object",
"gix-path",
"gix-tempfile",
"memmap2",
"parking_lot",
"smallvec",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-packetline"
2024-11-28 21:44:42 +00:00
version = "0.18.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "8a720e5bebf494c3ceffa85aa89f57a5859450a0da0a29ebe89171e23543fa78"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"faster-hex",
"gix-trace",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-packetline-blocking"
2024-11-28 21:44:42 +00:00
version = "0.18.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "ce9004ce1bc00fd538b11c1ec8141a1558fb3af3d2b7ac1ac5c41881f9e42d2a"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"faster-hex",
"gix-trace",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-path"
2024-11-28 21:44:42 +00:00
version = "0.10.13"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "afc292ef1a51e340aeb0e720800338c805975724c1dfbd243185452efd8645b7"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-trace",
"home",
"once_cell",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-pathspec"
2024-11-28 21:44:42 +00:00
version = "0.8.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "4c472dfbe4a4e96fcf7efddcd4771c9037bb4fdea2faaabf2f4888210c75b81e"
2024-07-12 23:09:37 +01:00
dependencies = [
"bitflags 2.6.0",
"bstr",
"gix-attributes",
"gix-config-value",
"gix-glob",
"gix-path",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-prompt"
2024-11-28 21:44:42 +00:00
version = "0.8.9"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "7a7822afc4bc9c5fbbc6ce80b00f41c129306b7685cac3248dbfa14784960594"
2024-07-12 23:09:37 +01:00
dependencies = [
"gix-command",
"gix-config-value",
"parking_lot",
"rustix",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-protocol"
2024-11-28 21:44:42 +00:00
version = "0.46.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "7a7e7e51a0dea531d3448c297e2fa919b2de187111a210c324b7e9f81508b8ca"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-credentials",
"gix-date",
"gix-features",
"gix-hash",
"gix-transport",
"gix-utils",
"maybe-async",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-09-02 15:49:40 +01:00
"winnow",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-quote"
2024-11-28 21:44:42 +00:00
version = "0.4.14"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "64a1e282216ec2ab2816cd57e6ed88f8009e634aec47562883c05ac8a7009a63"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-utils",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-ref"
2024-11-28 21:44:42 +00:00
version = "0.49.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "1eae462723686272a58f49501015ef7c0d67c3e042c20049d8dd9c7eff92efde"
2024-07-12 23:09:37 +01:00
dependencies = [
"gix-actor",
"gix-features",
"gix-fs",
"gix-hash",
"gix-lock",
"gix-object",
"gix-path",
"gix-tempfile",
"gix-utils",
"gix-validate",
"memmap2",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-09-02 15:49:40 +01:00
"winnow",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-refspec"
2024-11-28 21:44:42 +00:00
version = "0.27.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "00c056bb747868c7eb0aeb352c9f9181ab8ca3d0a2550f16470803500c6c413d"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-hash",
"gix-revision",
"gix-validate",
"smallvec",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-revision"
2024-11-28 21:44:42 +00:00
version = "0.31.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "44488e0380847967bc3e3cacd8b22652e02ea1eb58afb60edd91847695cd2d8d"
2024-07-12 23:09:37 +01:00
dependencies = [
2024-10-25 09:59:33 +01:00
"bitflags 2.6.0",
2024-07-12 23:09:37 +01:00
"bstr",
2024-10-25 09:59:33 +01:00
"gix-commitgraph",
2024-07-12 23:09:37 +01:00
"gix-date",
"gix-hash",
"gix-hashtable",
"gix-object",
"gix-revwalk",
"gix-trace",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-revwalk"
2024-11-28 21:44:42 +00:00
version = "0.17.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "510026fc32f456f8f067d8f37c34088b97a36b2229d88a6a5023ef179fcb109d"
2024-07-12 23:09:37 +01:00
dependencies = [
"gix-commitgraph",
"gix-date",
"gix-hash",
"gix-hashtable",
"gix-object",
"smallvec",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-sec"
2024-11-28 21:44:42 +00:00
version = "0.10.10"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "a8b876ef997a955397809a2ec398d6a45b7a55b4918f2446344330f778d14fd6"
2024-07-12 23:09:37 +01:00
dependencies = [
"bitflags 2.6.0",
"gix-path",
"libc",
"windows-sys 0.52.0",
]
[[package]]
name = "gix-submodule"
2024-11-28 21:44:42 +00:00
version = "0.16.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "a2455f8c0fcb6ebe2a6e83c8f522d30615d763eb2ef7a23c7d929f9476e89f5c"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-config",
"gix-path",
"gix-pathspec",
"gix-refspec",
"gix-url",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-tempfile"
2024-10-25 09:59:33 +01:00
version = "15.0.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-25 09:59:33 +01:00
checksum = "2feb86ef094cc77a4a9a5afbfe5de626897351bbbd0de3cb9314baf3049adb82"
2024-07-12 23:09:37 +01:00
dependencies = [
"gix-fs",
"libc",
"once_cell",
"parking_lot",
"tempfile",
]
[[package]]
name = "gix-trace"
2024-10-25 09:59:33 +01:00
version = "0.1.11"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-25 09:59:33 +01:00
checksum = "04bdde120c29f1fc23a24d3e115aeeea3d60d8e65bab92cc5f9d90d9302eb952"
2024-07-12 23:09:37 +01:00
[[package]]
name = "gix-transport"
2024-11-28 21:44:42 +00:00
version = "0.43.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "39a1a41357b7236c03e0c984147f823d87c3e445a8581bac7006df141577200b"
2024-07-12 23:09:37 +01:00
dependencies = [
2024-07-30 11:37:54 +01:00
"base64 0.22.1",
2024-07-12 23:09:37 +01:00
"bstr",
"gix-command",
"gix-credentials",
"gix-features",
"gix-packetline",
"gix-quote",
"gix-sec",
"gix-url",
"reqwest",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-traverse"
2024-11-28 21:44:42 +00:00
version = "0.43.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "3ff2ec9f779680f795363db1c563168b32b8d6728ec58564c628e85c92d29faf"
2024-07-12 23:09:37 +01:00
dependencies = [
"bitflags 2.6.0",
"gix-commitgraph",
"gix-date",
"gix-hash",
"gix-hashtable",
"gix-object",
"gix-revwalk",
"smallvec",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-url"
2024-11-28 21:44:42 +00:00
version = "0.28.1"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "e09f97db3618fb8e473d7d97e77296b50aaee0ddcd6a867f07443e3e87391099"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-features",
"gix-path",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
"url",
]
[[package]]
name = "gix-utils"
2024-10-25 09:59:33 +01:00
version = "0.1.13"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-25 09:59:33 +01:00
checksum = "ba427e3e9599508ed98a6ddf8ed05493db114564e338e41f6a996d2e4790335f"
2024-07-12 23:09:37 +01:00
dependencies = [
"fastrand",
"unicode-normalization",
]
[[package]]
name = "gix-validate"
2024-11-28 21:44:42 +00:00
version = "0.9.2"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "cd520d09f9f585b34b32aba1d0b36ada89ab7fefb54a8ca3fe37fc482a750937"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
]
[[package]]
name = "gix-worktree"
2024-11-28 21:44:42 +00:00
version = "0.38.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "756dbbe15188fa22540d5eab941f8f9cf511a5364d5aec34c88083c09f4bea13"
2024-07-12 23:09:37 +01:00
dependencies = [
"bstr",
"gix-attributes",
"gix-features",
"gix-fs",
"gix-glob",
"gix-hash",
"gix-ignore",
"gix-index",
"gix-object",
"gix-path",
"gix-validate",
]
[[package]]
2024-07-22 15:41:45 +01:00
name = "gix-worktree-state"
2024-11-28 21:44:42 +00:00
version = "0.15.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "4ebd5eead61d37b334bc31810c9980aa72d659044513cae0e342a88fed2c22ba"
2024-03-16 16:31:27 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"bstr",
2024-07-22 15:41:45 +01:00
"gix-features",
"gix-filter",
"gix-fs",
"gix-glob",
"gix-hash",
"gix-index",
"gix-object",
"gix-path",
"gix-worktree",
"io-close",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-03-16 16:31:27 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "governor"
2024-11-10 16:20:03 +00:00
version = "0.7.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "0746aa765db78b521451ef74221663b57ba595bf83f75d0ce23cc09447c8139f"
2024-07-30 11:37:54 +01:00
dependencies = [
"cfg-if",
"dashmap",
2024-11-10 16:20:03 +00:00
"futures-sink",
2024-07-30 11:37:54 +01:00
"futures-timer",
2024-11-10 16:20:03 +00:00
"futures-util",
2024-07-30 11:37:54 +01:00
"no-std-compat",
"nonzero_ext",
"parking_lot",
"portable-atomic",
"quanta",
"rand",
"smallvec",
"spinning_top",
]
[[package]]
name = "h2"
version = "0.3.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81fe527a889e1532da5c525686d96d4c2e74cdd345badf8dfef9f6b39dd5f5e8"
dependencies = [
"bytes",
"fnv",
"futures-core",
"futures-sink",
"futures-util",
"http 0.2.12",
2024-10-14 19:16:15 +01:00
"indexmap 2.6.0",
2024-07-30 11:37:54 +01:00
"slab",
"tokio",
"tokio-util",
"tracing",
]
2024-03-16 16:31:27 +00:00
[[package]]
name = "h2"
2024-11-28 21:44:42 +00:00
version = "0.4.7"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "ccae279728d634d083c00f6099cb58f01cc99c145b84b8be2f6c74618d79922e"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"atomic-waker",
2024-03-04 20:18:49 +00:00
"bytes",
"fnv",
"futures-core",
"futures-sink",
2024-07-30 11:37:54 +01:00
"http 1.1.0",
2024-10-14 19:16:15 +01:00
"indexmap 2.6.0",
2024-03-04 20:18:49 +00:00
"slab",
"tokio",
"tokio-util",
"tracing",
]
[[package]]
name = "hashbrown"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
[[package]]
name = "hashbrown"
2024-05-12 12:00:36 +01:00
version = "0.14.5"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
2024-03-04 20:18:49 +00:00
dependencies = [
"ahash",
"allocator-api2",
]
2024-10-14 19:16:15 +01:00
[[package]]
name = "hashbrown"
2024-11-28 21:44:42 +00:00
version = "0.15.2"
2024-10-14 19:16:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "bf151400ff0baff5465007dd2f3e717f3fe502074ca563069ce3a6629d07b289"
2024-10-14 19:16:15 +01:00
dependencies = [
"allocator-api2",
"equivalent",
"foldhash",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "heck"
2024-03-16 16:31:27 +00:00
version = "0.5.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-16 16:31:27 +00:00
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
2024-03-04 20:18:49 +00:00
[[package]]
name = "hermit-abi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2024-07-12 23:09:37 +01:00
[[package]]
name = "hermit-abi"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbf6a919d6cf397374f7dfeeea91d974c7c0a7221d0d0f4f20d859d329e53fcc"
2024-03-04 20:18:49 +00:00
[[package]]
name = "hex"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
[[package]]
name = "hkdf"
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
dependencies = [
"hmac",
]
[[package]]
name = "hmac"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
dependencies = [
"digest",
]
[[package]]
name = "home"
version = "0.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-30 11:37:54 +01:00
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
dependencies = [
"windows-sys 0.52.0",
]
[[package]]
name = "hostname"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f9c7c7c8ac16c798734b8a24560c1362120597c40d5e1459f09498f8f6c8f2ba"
dependencies = [
"cfg-if",
"libc",
"windows",
]
[[package]]
name = "htmlescape"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e9025058dae765dee5070ec375f591e2ba14638c63feff74f13805a72e523163"
[[package]]
name = "http"
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-30 11:37:54 +01:00
"bytes",
"fnv",
"itoa",
2024-03-04 20:18:49 +00:00
]
2024-03-16 16:31:27 +00:00
[[package]]
name = "http"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
dependencies = [
"bytes",
"fnv",
"itoa",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "http-body"
2024-07-12 23:09:37 +01:00
version = "1.0.1"
2024-03-16 16:31:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184"
2024-03-16 16:31:27 +00:00
dependencies = [
"bytes",
2024-07-30 11:37:54 +01:00
"http 1.1.0",
2024-03-16 16:31:27 +00:00
]
[[package]]
name = "http-body-util"
2024-07-12 23:09:37 +01:00
version = "0.1.2"
2024-03-16 16:31:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
2024-03-16 16:31:27 +00:00
dependencies = [
"bytes",
2024-07-12 23:09:37 +01:00
"futures-util",
2024-07-30 11:37:54 +01:00
"http 1.1.0",
2024-07-12 23:09:37 +01:00
"http-body",
2024-03-04 20:18:49 +00:00
"pin-project-lite",
]
[[package]]
name = "httparse"
2024-10-14 19:16:15 +01:00
version = "1.9.5"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "7d71d3574edd2771538b901e6549113b4006ece66150fb69c0fb6d9a2adae946"
2024-03-04 20:18:49 +00:00
2024-07-30 11:37:54 +01:00
[[package]]
name = "httpdate"
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
2024-03-04 20:18:49 +00:00
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]]
name = "hyper"
2024-11-28 21:44:42 +00:00
version = "1.5.1"
2024-03-16 16:31:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "97818827ef4f364230e16705d4706e2897df2bb60617d6ca15d598025a3c481f"
2024-03-16 16:31:27 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-util",
2024-11-28 21:44:42 +00:00
"h2 0.4.7",
2024-07-30 11:37:54 +01:00
"http 1.1.0",
2024-07-12 23:09:37 +01:00
"http-body",
2024-03-16 16:31:27 +00:00
"httparse",
"itoa",
"pin-project-lite",
"smallvec",
"tokio",
"want",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "hyper-rustls"
2024-09-28 23:04:35 +01:00
version = "0.27.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "08afdbb5c31130e3034af566421053ab03787c640246a446327f550d11bcb333"
dependencies = [
"futures-util",
2024-07-30 11:37:54 +01:00
"http 1.1.0",
2024-07-12 23:09:37 +01:00
"hyper",
"hyper-util",
2024-07-12 23:09:37 +01:00
"rustls",
"rustls-pki-types",
"tokio",
2024-07-12 23:09:37 +01:00
"tokio-rustls",
"tower-service",
2024-07-12 23:09:37 +01:00
"webpki-roots",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "hyper-tls"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70206fc6890eaca9fde8a0bf71caa2ddfc9fe045ac9e5c70df101a7dbde866e0"
dependencies = [
"bytes",
"http-body-util",
"hyper",
"hyper-util",
"native-tls",
"tokio",
"tokio-native-tls",
"tower-service",
]
2024-03-16 16:31:27 +00:00
[[package]]
name = "hyper-util"
2024-11-10 16:20:03 +00:00
version = "0.1.10"
2024-03-16 16:31:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "df2dcfbe0677734ab2f3ffa7fa7bfd4706bfdc1ef393f2ee30184aed67e631b4"
2024-03-16 16:31:27 +00:00
dependencies = [
"bytes",
"futures-channel",
"futures-util",
2024-07-30 11:37:54 +01:00
"http 1.1.0",
2024-07-12 23:09:37 +01:00
"http-body",
"hyper",
2024-03-16 16:31:27 +00:00
"pin-project-lite",
2024-07-12 23:09:37 +01:00
"socket2",
2024-03-16 16:31:27 +00:00
"tokio",
"tower-service",
"tracing",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "iana-time-zone"
2024-09-28 23:04:35 +01:00
version = "0.1.61"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "235e081f3925a06703c2d0117ea8b91f042756fd6e7a6e5d901e8ca1a996b220"
2024-03-04 20:18:49 +00:00
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"windows-core",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
"cc",
]
2024-11-10 16:20:03 +00:00
[[package]]
name = "icu_collections"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db2fa452206ebee18c4b5c2274dbf1de17008e874b4dc4f0aea9d01ca79e4526"
dependencies = [
"displaydoc",
"yoke",
"zerofrom",
"zerovec",
]
[[package]]
name = "icu_locid"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13acbb8371917fc971be86fc8057c41a64b521c184808a698c02acc242dbf637"
dependencies = [
"displaydoc",
"litemap",
"tinystr",
"writeable",
"zerovec",
]
[[package]]
name = "icu_locid_transform"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "01d11ac35de8e40fdeda00d9e1e9d92525f3f9d887cdd7aa81d727596788b54e"
dependencies = [
"displaydoc",
"icu_locid",
"icu_locid_transform_data",
"icu_provider",
"tinystr",
"zerovec",
]
[[package]]
name = "icu_locid_transform_data"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fdc8ff3388f852bede6b579ad4e978ab004f139284d7b28715f773507b946f6e"
[[package]]
name = "icu_normalizer"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19ce3e0da2ec68599d193c93d088142efd7f9c5d6fc9b803774855747dc6a84f"
dependencies = [
"displaydoc",
"icu_collections",
"icu_normalizer_data",
"icu_properties",
"icu_provider",
"smallvec",
"utf16_iter",
"utf8_iter",
"write16",
"zerovec",
]
[[package]]
name = "icu_normalizer_data"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8cafbf7aa791e9b22bec55a167906f9e1215fd475cd22adfcf660e03e989516"
[[package]]
name = "icu_properties"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93d6020766cfc6302c15dbbc9c8778c37e62c14427cb7f6e601d849e092aeef5"
dependencies = [
"displaydoc",
"icu_collections",
"icu_locid_transform",
"icu_properties_data",
"icu_provider",
"tinystr",
"zerovec",
]
[[package]]
name = "icu_properties_data"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "67a8effbc3dd3e4ba1afa8ad918d5684b8868b3b26500753effea8d2eed19569"
[[package]]
name = "icu_provider"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ed421c8a8ef78d3e2dbc98a973be2f3770cb42b606e3ab18d6237c4dfde68d9"
dependencies = [
"displaydoc",
"icu_locid",
"icu_provider_macros",
"stable_deref_trait",
"tinystr",
"writeable",
"yoke",
"zerofrom",
"zerovec",
]
[[package]]
name = "icu_provider_macros"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1ec89e9337638ecdc08744df490b221a7399bf8d164eb52a665454e60e075ad6"
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-11-10 16:20:03 +00:00
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]]
name = "idna"
2024-11-10 16:20:03 +00:00
version = "1.0.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "686f825264d630750a544639377bae737628043f20d38bbc029e8f29ea968a7e"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-11-10 16:20:03 +00:00
"idna_adapter",
"smallvec",
"utf8_iter",
]
[[package]]
name = "idna_adapter"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daca1df1c957320b2cf139ac61e7bd64fed304c5040df000a745aa1de3b4ef71"
dependencies = [
"icu_normalizer",
"icu_properties",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "impl-more"
2024-11-10 16:20:03 +00:00
version = "0.1.8"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "aae21c3177a27788957044151cc2800043d127acaa460a47ebb9b84dfa2c6aa0"
2024-07-30 11:37:54 +01:00
2024-03-04 20:18:49 +00:00
[[package]]
name = "indexmap"
version = "1.9.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
dependencies = [
"autocfg",
"hashbrown 0.12.3",
2024-07-12 23:09:37 +01:00
"serde",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "indexmap"
2024-10-14 19:16:15 +01:00
version = "2.6.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
2024-03-04 20:18:49 +00:00
dependencies = [
"equivalent",
2024-11-28 21:44:42 +00:00
"hashbrown 0.15.2",
2024-07-12 23:09:37 +01:00
"serde",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "indicatif"
2024-11-28 21:44:42 +00:00
version = "0.17.9"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "cbf675b85ed934d3c67b5c5469701eec7db22689d0a2139d856e0925fa28b281"
2024-03-04 20:18:49 +00:00
dependencies = [
"console",
"number_prefix",
"portable-atomic",
2024-11-28 21:44:42 +00:00
"unicode-width 0.2.0",
"web-time",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "indicatif-log-bridge"
2024-09-02 15:49:40 +01:00
version = "0.2.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-02 15:49:40 +01:00
checksum = "63703cf9069b85dbe6fe26e1c5230d013dee99d3559cd3d02ba39e099ef7ab02"
2024-03-04 20:18:49 +00:00
dependencies = [
"indicatif",
"log",
]
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
2024-07-12 23:09:37 +01:00
"block-padding",
"generic-array",
]
[[package]]
name = "inquire"
2024-05-12 12:00:36 +01:00
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "0fddf93031af70e75410a2511ec04d49e758ed2f26dad3404a934e0fb45cc12a"
dependencies = [
2024-07-12 23:09:37 +01:00
"bitflags 2.6.0",
"crossterm",
"dyn-clone",
"fuzzy-matcher",
"fxhash",
"newline-converter",
"once_cell",
"unicode-segmentation",
2024-11-28 21:44:42 +00:00
"unicode-width 0.1.14",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "instant"
2024-07-12 23:09:37 +01:00
version = "0.1.13"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
2024-03-04 20:18:49 +00:00
dependencies = [
"cfg-if",
2024-07-30 11:37:54 +01:00
"js-sys",
"wasm-bindgen",
"web-sys",
2024-03-04 20:18:49 +00:00
]
2024-07-22 15:41:45 +01:00
[[package]]
name = "io-close"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cadcf447f06744f8ce713d2d6239bb5bde2c357a452397a9ed90c625da390bc"
dependencies = [
"libc",
"winapi",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "ipnet"
2024-10-14 19:16:15 +01:00
version = "2.10.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "ddc24109865250148c2e0f3d25d4f0f479571723792d3802153c60922a4fb708"
2024-03-04 20:18:49 +00:00
2024-07-12 23:09:37 +01:00
[[package]]
name = "is-docker"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "928bae27f42bc99b60d9ac7334e3a21d10ad8f1835a4e12ec3ec0464765ed1b3"
dependencies = [
"once_cell",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "is-terminal"
version = "0.4.13"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "261f68e344040fbd0edea105bef17c66edf46f984ddb1115b775ce31be948f4b"
2024-03-04 20:18:49 +00:00
dependencies = [
"hermit-abi 0.4.0",
2024-03-04 20:18:49 +00:00
"libc",
"windows-sys 0.52.0",
]
2024-05-12 12:00:36 +01:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "is-wsl"
version = "0.4.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "173609498df190136aa7dea1a91db051746d339e18476eed5ca40521f02d7aa5"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"is-docker",
"once_cell",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "is_terminal_polyfill"
2024-07-26 17:47:53 +01:00
version = "1.70.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-26 17:47:53 +01:00
checksum = "7943c866cc5cd64cbc25b2e01621d07fa8eb2a1a23160ee81ce38704e97b8ecf"
2024-03-04 20:18:49 +00:00
2024-11-24 19:21:16 +00:00
[[package]]
name = "itertools"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57"
dependencies = [
"either",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "itertools"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
dependencies = [
"either",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "itoa"
2024-11-28 21:44:42 +00:00
version = "1.0.14"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
2024-03-04 20:18:49 +00:00
[[package]]
name = "jiff"
2024-11-10 16:20:03 +00:00
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "b9d9d414fc817d3e3d62b2598616733f76c4cc74fbac96069674739b881295c8"
dependencies = [
"jiff-tzdb-platform",
"windows-sys 0.59.0",
]
[[package]]
name = "jiff-tzdb"
2024-09-28 23:04:35 +01:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "91335e575850c5c4c673b9bd467b0e025f164ca59d0564f69d0c2ee0ffad4653"
[[package]]
name = "jiff-tzdb-platform"
2024-09-28 23:04:35 +01:00
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "9835f0060a626fe59f160437bc725491a6af23133ea906500027d1bd2f8f4329"
dependencies = [
"jiff-tzdb",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "jobserver"
2024-07-26 17:47:53 +01:00
version = "0.1.32"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-26 17:47:53 +01:00
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
2024-03-04 20:18:49 +00:00
dependencies = [
"libc",
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "js-sys"
2024-10-14 19:16:15 +01:00
version = "0.3.72"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
2024-07-12 23:09:37 +01:00
dependencies = [
"wasm-bindgen",
]
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "keyring"
2024-11-10 16:20:03 +00:00
version = "3.6.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "2f8fe839464d4e4b37d756d7e910063696af79a7e877282cb1825e4ec5f10833"
2024-07-12 23:09:37 +01:00
dependencies = [
"byteorder",
"dbus-secret-service",
2024-10-25 09:59:33 +01:00
"log",
2024-07-12 23:09:37 +01:00
"secret-service",
2024-10-25 09:59:33 +01:00
"security-framework 2.11.1",
2024-11-10 16:20:03 +00:00
"security-framework 3.0.1",
"windows-sys 0.59.0",
2024-11-05 19:44:24 +00:00
"zbus",
2024-07-12 23:09:37 +01:00
]
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "kstring"
2024-07-26 17:47:53 +01:00
version = "2.0.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-26 17:47:53 +01:00
checksum = "558bf9508a558512042d3095138b1f7b8fe90c5467d94f9f1da28b3731c5dbd1"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"static_assertions",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "language-tags"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4345964bb142484797b161f473a503a434de77149dd8c7427788c6e13379388"
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "lazy_static"
version = "1.5.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2024-03-04 20:18:49 +00:00
2024-07-30 11:37:54 +01:00
[[package]]
name = "levenshtein_automata"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c2cdeb66e45e9f36bfad5bbdb4d2384e70936afbee843c6f6543f0c551ebb25"
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "libc"
2024-11-28 21:44:42 +00:00
version = "0.2.166"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "c2ccc108bbc0b1331bd061864e7cd823c0cab660bbe6970e66e2c0614decde36"
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "libdbus-sys"
version = "0.2.5"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "06085512b750d640299b79be4bad3d2fa90a9c00b1fd9e1b46364f66f0485c72"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"pkg-config",
2024-03-04 20:18:49 +00:00
]
2024-07-23 15:37:47 +01:00
[[package]]
name = "libgit2-sys"
version = "0.17.0+1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "10472326a8a6477c3c20a64547b0059e4b0d086869eee31e6d7da728a8eb7224"
dependencies = [
"cc",
"libc",
"libssh2-sys",
"libz-sys",
"openssl-sys",
"pkg-config",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "libm"
2024-11-10 16:20:03 +00:00
version = "0.2.11"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "8355be11b20d696c8f18f6cc018c4e372165b1fa8126cef092399c9951984ffa"
2024-07-30 11:37:54 +01:00
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "libredox"
version = "0.1.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"bitflags 2.6.0",
2024-03-04 20:18:49 +00:00
"libc",
2024-11-05 19:44:24 +00:00
"redox_syscall 0.5.7",
2024-03-04 20:18:49 +00:00
]
2024-07-23 15:37:47 +01:00
[[package]]
name = "libssh2-sys"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2dc8a030b787e2119a731f1951d6a773e2280c660f8ec4b0f5e1505a386e71ee"
dependencies = [
"cc",
"libc",
"libz-sys",
"openssl-sys",
"pkg-config",
"vcpkg",
]
[[package]]
name = "libz-sys"
2024-09-02 15:49:40 +01:00
version = "1.1.20"
2024-07-23 15:37:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-02 15:49:40 +01:00
checksum = "d2d16453e800a8cf6dd2fc3eb4bc99b786a9b90c663b8559a5b1a041bf89e472"
2024-07-23 15:37:47 +01:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "linux-raw-sys"
version = "0.4.14"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
2024-03-04 20:18:49 +00:00
2024-11-10 16:20:03 +00:00
[[package]]
name = "litemap"
2024-11-28 21:44:42 +00:00
version = "0.7.4"
2024-11-10 16:20:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "4ee93343901ab17bd981295f2cf0026d4ad018c7c31ba84549a4ddbb47a45104"
2024-11-10 16:20:03 +00:00
2024-07-30 11:37:54 +01:00
[[package]]
name = "local-channel"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6cbc85e69b8df4b8bb8b89ec634e7189099cea8927a276b7384ce5488e53ec8"
dependencies = [
"futures-core",
"futures-sink",
"local-waker",
]
[[package]]
name = "local-waker"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4d873d7c67ce09b42110d801813efbc9364414e356be9935700d368351657487"
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "lock_api"
version = "0.4.12"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"autocfg",
"scopeguard",
2024-03-04 20:18:49 +00:00
]
2024-07-12 23:09:37 +01:00
[[package]]
name = "log"
version = "0.4.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2024-07-30 11:37:54 +01:00
[[package]]
name = "lru"
2024-10-14 19:16:15 +01:00
version = "0.12.5"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "234cf4f4a04dc1f57e24b96cc0cd600cf2af460d4161ac5ecdd0af8e1f3b2a38"
2024-07-30 11:37:54 +01:00
dependencies = [
2024-11-28 21:44:42 +00:00
"hashbrown 0.15.2",
2024-07-30 11:37:54 +01:00
]
[[package]]
name = "lz4_flex"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75761162ae2b0e580d7e7c390558127e5f01b4194debd6221fd8c207fc80e3f5"
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "maybe-async"
version = "0.2.10"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "5cf92c10c7e361d6b99666ec1c6f9805b0bea2c3bd8c78dc6fe98ac5bd78db11"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "md-5"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
dependencies = [
"cfg-if",
"digest",
]
[[package]]
name = "measure_time"
version = "0.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dbefd235b0aadd181626f281e1d684e116972988c14c264e42069d5e8a5775cc"
dependencies = [
"instant",
"log",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "memchr"
2024-07-12 23:09:37 +01:00
version = "2.7.4"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
2024-03-04 20:18:49 +00:00
[[package]]
name = "memmap2"
2024-09-28 23:04:35 +01:00
version = "0.9.5"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "fd3f7eed9d3848f8b98834af67102b720745c4ec028fcd0aa0239277e7de374f"
2024-03-04 20:18:49 +00:00
dependencies = [
"libc",
]
[[package]]
name = "memoffset"
2024-03-27 19:57:19 +00:00
version = "0.9.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-27 19:57:19 +00:00
checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a"
2024-03-04 20:18:49 +00:00
dependencies = [
"autocfg",
]
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2024-07-30 11:37:54 +01:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
[[package]]
name = "miniz_oxide"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2d80299ef12ff69b16a84bb182e3b9df68b5a91574d3d4fa6e41b65deec4df1"
dependencies = [
"adler2",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "mio"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
dependencies = [
"libc",
"log",
2024-07-12 23:09:37 +01:00
"wasi",
2024-03-04 20:18:49 +00:00
"windows-sys 0.48.0",
]
2024-07-26 17:47:53 +01:00
[[package]]
name = "mio"
version = "1.0.2"
2024-07-26 17:47:53 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "80e04d1dcff3aae0704555fe5fee3bcfaf3d1fdf8a7e521d5b9d2b42acb52cec"
2024-07-26 17:47:53 +01:00
dependencies = [
"hermit-abi 0.3.9",
"libc",
2024-08-08 16:59:59 +01:00
"log",
2024-07-26 17:47:53 +01:00
"wasi",
"windows-sys 0.52.0",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "murmurhash32"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2195bf6aa996a481483b29d62a7663eed3fe39600c460e323f8ff41e90bdd89b"
[[package]]
name = "native-tls"
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8614eb2c83d59d1c8cc974dd3f920198647674a0a035e1af1fa58707e317466"
dependencies = [
"libc",
"log",
"openssl",
"openssl-probe",
"openssl-sys",
"schannel",
2024-10-14 19:16:15 +01:00
"security-framework 2.11.1",
2024-07-30 11:37:54 +01:00
"security-framework-sys",
"tempfile",
]
[[package]]
name = "newline-converter"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "47b6b097ecb1cbfed438542d16e84fd7ad9b0c76c8a65b7f9039212a3d14dc7f"
dependencies = [
"unicode-segmentation",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "nix"
2024-07-12 23:09:37 +01:00
version = "0.29.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "71e2746dc3a24dd78b3cfcb7be93368c6de9963d30f43a6a73998a9cf4b17b46"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"bitflags 2.6.0",
2024-03-04 20:18:49 +00:00
"cfg-if",
2024-03-16 16:31:27 +00:00
"cfg_aliases",
2024-03-04 20:18:49 +00:00
"libc",
2024-07-12 23:09:37 +01:00
"memoffset",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "no-std-compat"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b93853da6d84c2e3c7d730d6473e8817692dd89be387eb01b94d7f108ecb5b8c"
[[package]]
name = "nom"
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
"minimal-lexical",
]
[[package]]
name = "nonzero_ext"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38bf9645c8b145698bb0b18a4637dcacbc421ea49bef2317e4fd8065a387cf21"
2024-03-04 20:18:49 +00:00
[[package]]
name = "num"
2024-05-12 12:00:36 +01:00
version = "0.4.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "35bd024e8b2ff75562e5f34e7f4905839deb4b22955ef5e73d2fea1b9813cb23"
2024-03-04 20:18:49 +00:00
dependencies = [
"num-bigint",
"num-complex",
"num-integer",
"num-iter",
"num-rational",
"num-traits",
]
[[package]]
name = "num-bigint"
2024-07-12 23:09:37 +01:00
version = "0.4.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "a5e44f723f1133c9deac646763579fdb3ac745e418f2a7af9cd0c431da1f20b9"
2024-03-04 20:18:49 +00:00
dependencies = [
"num-integer",
"num-traits",
]
[[package]]
name = "num-complex"
2024-05-12 12:00:36 +01:00
version = "0.4.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "73f88a1307638156682bada9d7604135552957b7818057dcef22705b4d509495"
2024-03-04 20:18:49 +00:00
dependencies = [
"num-traits",
]
[[package]]
name = "num-conv"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
[[package]]
name = "num-integer"
version = "0.1.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
dependencies = [
"num-traits",
]
[[package]]
name = "num-iter"
2024-05-12 12:00:36 +01:00
version = "0.1.45"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
2024-03-04 20:18:49 +00:00
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-rational"
2024-05-12 12:00:36 +01:00
version = "0.4.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "f83d14da390562dca69fc84082e73e548e1ad308d24accdedd2720017cb37824"
2024-03-04 20:18:49 +00:00
dependencies = [
"num-bigint",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
2024-07-12 23:09:37 +01:00
version = "0.2.19"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"autocfg",
2024-07-30 11:37:54 +01:00
"libm",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "num_cpus"
version = "1.16.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
dependencies = [
"hermit-abi 0.3.9",
"libc",
]
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "number_prefix"
version = "0.4.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
[[package]]
name = "object"
2024-10-14 19:16:15 +01:00
version = "0.36.5"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "aedf0a2d09c573ed1d8d85b30c119153926a2b36dce0ab28322c09a117a4683e"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"memchr",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "once_cell"
2024-10-14 19:16:15 +01:00
version = "1.20.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
2024-03-04 20:18:49 +00:00
2024-07-30 11:37:54 +01:00
[[package]]
name = "oneshot"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e296cf87e61c9cfc1a61c3c63a0f7f286ed4554e0e22be84e8a38e1d264a2a29"
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "open"
2024-11-28 21:44:42 +00:00
version = "5.3.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "3ecd52f0b8d15c40ce4820aa251ed5de032e5d91fab27f7db2f40d42a8bdf69c"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"is-wsl",
2024-03-04 20:18:49 +00:00
"libc",
2024-07-12 23:09:37 +01:00
"pathdiff",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "openssl"
2024-11-10 16:20:03 +00:00
version = "0.10.68"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "6174bc48f102d208783c2c84bf931bb75927a617866870de8a4ea85597f871f5"
2024-07-30 11:37:54 +01:00
dependencies = [
"bitflags 2.6.0",
"cfg-if",
"foreign-types",
"libc",
"once_cell",
"openssl-macros",
"openssl-sys",
]
[[package]]
name = "openssl-macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-07-30 11:37:54 +01:00
]
2024-07-23 15:37:47 +01:00
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
[[package]]
name = "openssl-sys"
2024-11-10 16:20:03 +00:00
version = "0.9.104"
2024-07-23 15:37:47 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "45abf306cbf99debc8195b66b7346498d7b10c210de50418b5ccd7ceba08c741"
2024-07-23 15:37:47 +01:00
dependencies = [
"cc",
"libc",
"pkg-config",
"vcpkg",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "option-ext"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
[[package]]
name = "ordered-stream"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9aa2b01e1d916879f73a53d01d1d6cee68adbb31d6d9177a8cfce093cced1d50"
dependencies = [
"futures-core",
"pin-project-lite",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "os_info"
version = "3.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ae99c7fa6dd38c7cafe1ec085e804f8f555a2f8659b0dbe03f1f9963a9b51092"
dependencies = [
"log",
"serde",
"windows-sys 0.52.0",
]
[[package]]
name = "ownedbytes"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3a059efb063b8f425b948e042e6b9bd85edfe60e913630ed727b23e2dfcc558"
dependencies = [
"stable_deref_trait",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "parking"
2024-09-28 23:04:35 +01:00
version = "2.2.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "f38d5652c16fde515bb1ecef450ab0f6a219d619a7274976324d5e377f7dceba"
2024-03-04 20:18:49 +00:00
[[package]]
name = "parking_lot"
2024-07-12 23:09:37 +01:00
version = "0.12.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
2024-03-04 20:18:49 +00:00
dependencies = [
"lock_api",
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2024-05-12 12:00:36 +01:00
version = "0.9.10"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
2024-03-04 20:18:49 +00:00
dependencies = [
"cfg-if",
"libc",
2024-11-05 19:44:24 +00:00
"redox_syscall 0.5.7",
2024-03-04 20:18:49 +00:00
"smallvec",
2024-07-12 23:09:37 +01:00
"windows-targets 0.52.6",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "paste"
2024-05-12 12:00:36 +01:00
version = "1.0.15"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
2024-03-04 20:18:49 +00:00
[[package]]
name = "pathdiff"
2024-11-28 21:44:42 +00:00
version = "0.2.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "df94ce210e5bc13cb6651479fa48d14f601d9858cfe0467f43ae157023b938d3"
2024-03-04 20:18:49 +00:00
[[package]]
name = "percent-encoding"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
[[package]]
name = "pesde"
version = "0.5.0-rc.13"
2024-03-04 20:18:49 +00:00
dependencies = [
"anyhow",
2024-11-05 19:44:24 +00:00
"async-compression",
"async-stream",
"async_zip",
"chrono",
2024-03-04 20:18:49 +00:00
"clap",
2024-07-12 23:09:37 +01:00
"colored",
2024-07-26 17:47:53 +01:00
"dirs",
2024-11-01 19:57:32 +00:00
"fs-err",
2024-03-04 20:18:49 +00:00
"full_moon",
2024-11-05 19:44:24 +00:00
"futures",
2024-07-23 15:37:47 +01:00
"git2",
2024-07-12 23:09:37 +01:00
"gix",
2024-03-04 20:18:49 +00:00
"indicatif",
"indicatif-log-bridge",
"inquire",
2024-03-04 20:18:49 +00:00
"keyring",
"log",
2024-07-12 23:09:37 +01:00
"open",
2024-03-04 20:18:49 +00:00
"pathdiff",
"pretty_env_logger",
"relative-path",
2024-07-12 23:09:37 +01:00
"reqwest",
"semver",
2024-03-04 20:18:49 +00:00
"serde",
"serde_json",
2024-07-12 23:09:37 +01:00
"serde_with",
2024-07-28 17:19:54 +01:00
"sha2",
2024-08-08 16:59:59 +01:00
"tempfile",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-11-05 19:44:24 +00:00
"tokio",
"tokio-tar",
"tokio-util",
"toml",
2024-09-02 15:49:40 +01:00
"toml_edit",
"url",
2024-11-24 19:21:16 +00:00
"wax",
2024-07-26 17:47:53 +01:00
"winreg",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "pesde-registry"
version = "0.7.0"
dependencies = [
"actix-cors",
"actix-governor",
"actix-web",
2024-11-05 19:44:24 +00:00
"async-compression",
2024-11-10 15:43:25 +00:00
"async-stream",
2024-07-30 11:37:54 +01:00
"chrono",
"constant_time_eq",
2024-09-02 15:49:40 +01:00
"convert_case 0.6.0",
2024-07-30 11:37:54 +01:00
"dotenvy",
2024-11-01 19:57:32 +00:00
"fs-err",
2024-08-12 10:55:21 +01:00
"futures",
2024-07-30 11:37:54 +01:00
"git2",
"gix",
"log",
"pesde",
"pretty_env_logger",
"reqwest",
"rusty-s3",
"semver",
"sentry",
"sentry-actix",
"serde",
"serde_json",
2024-09-02 15:49:40 +01:00
"serde_yaml",
"sha2",
2024-07-30 11:37:54 +01:00
"tantivy",
2024-09-02 15:49:40 +01:00
"tempfile",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-11-05 19:44:24 +00:00
"tokio",
"tokio-tar",
2024-07-30 11:37:54 +01:00
"toml",
2024-08-12 10:55:21 +01:00
"url",
2024-07-30 11:37:54 +01:00
]
2024-11-05 19:44:24 +00:00
[[package]]
name = "pin-project"
version = "1.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
version = "1.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c"
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-11-05 19:44:24 +00:00
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "pin-project-lite"
2024-11-10 16:20:03 +00:00
version = "0.2.15"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
2024-03-04 20:18:49 +00:00
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
[[package]]
name = "piper"
version = "0.2.4"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
2024-03-04 20:18:49 +00:00
dependencies = [
"atomic-waker",
2024-07-12 23:09:37 +01:00
"fastrand",
2024-03-04 20:18:49 +00:00
"futures-io",
]
[[package]]
name = "pkg-config"
2024-09-28 23:04:35 +01:00
version = "0.3.31"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
2024-03-04 20:18:49 +00:00
[[package]]
name = "polling"
2024-11-10 16:20:03 +00:00
version = "3.7.4"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "a604568c3202727d1507653cb121dbd627a58684eb09a820fd746bee38b4442f"
2024-03-04 20:18:49 +00:00
dependencies = [
"cfg-if",
"concurrent-queue",
2024-07-12 23:09:37 +01:00
"hermit-abi 0.4.0",
2024-03-04 20:18:49 +00:00
"pin-project-lite",
2024-07-12 23:09:37 +01:00
"rustix",
2024-03-04 20:18:49 +00:00
"tracing",
"windows-sys 0.59.0",
2024-03-04 20:18:49 +00:00
]
2024-11-24 19:21:16 +00:00
[[package]]
name = "pori"
version = "0.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a63d338dec139f56dacc692ca63ad35a6be6a797442479b55acd611d79e906"
dependencies = [
"nom",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "portable-atomic"
2024-11-28 21:44:42 +00:00
version = "1.10.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "280dc24453071f1b63954171985a0b0d30058d287960968b9b2aca264c8d4ee6"
2024-03-04 20:18:49 +00:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
[[package]]
name = "ppv-lite86"
2024-08-08 16:59:59 +01:00
version = "0.2.20"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-08 16:59:59 +01:00
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
dependencies = [
"zerocopy",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "pretty_env_logger"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "865724d4dbe39d9f3dd3b52b88d859d66bcb2d6a0acfd5ea68a65fb66d4bdc1c"
dependencies = [
2024-07-12 23:09:37 +01:00
"env_logger",
2024-03-04 20:18:49 +00:00
"log",
]
[[package]]
name = "proc-macro-crate"
2024-09-02 15:49:40 +01:00
version = "3.2.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-02 15:49:40 +01:00
checksum = "8ecf48c7ca261d60b74ab1a7b20da18bede46776b2e55535cb958eb595c5fa7b"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-09-02 15:49:40 +01:00
"toml_edit",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "proc-macro2"
2024-11-28 21:44:42 +00:00
version = "1.0.92"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "37d3544b3f2748c54e147655edb5025752e2303145b5aefb3c3ea2c78b973bb0"
2024-03-04 20:18:49 +00:00
dependencies = [
"unicode-ident",
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "prodash"
2024-10-25 09:59:33 +01:00
version = "29.0.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-25 09:59:33 +01:00
checksum = "a266d8d6020c61a437be704c5e618037588e1985c7dbb7bf8d265db84cffe325"
dependencies = [
"log",
"parking_lot",
]
2024-03-04 20:18:49 +00:00
2024-07-30 11:37:54 +01:00
[[package]]
name = "quanta"
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e5167a477619228a0b284fac2674e3c388cba90631d7b7de620e6f1fcd08da5"
dependencies = [
"crossbeam-utils",
"libc",
"once_cell",
"raw-cpuid",
"wasi",
"web-sys",
"winapi",
]
[[package]]
name = "quick-xml"
version = "0.30.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eff6510e86862b57b210fd8cbe8ed3f0d7d600b9c2863cd4549a2e033c66e956"
dependencies = [
"memchr",
"serde",
]
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "quinn"
2024-11-28 21:44:42 +00:00
version = "0.11.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "62e96808277ec6f97351a2380e6c25114bc9e67037775464979f3037c92d05ef"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"bytes",
"pin-project-lite",
"quinn-proto",
"quinn-udp",
2024-08-08 16:59:59 +01:00
"rustc-hash 2.0.0",
2024-07-12 23:09:37 +01:00
"rustls",
2024-08-08 16:59:59 +01:00
"socket2",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
"tokio",
"tracing",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "quinn-proto"
2024-11-28 21:44:42 +00:00
version = "0.11.9"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "a2fe5ef3495d7d2e377ff17b1a8ce2ee2ec2a18cde8b6ad6619d65d0701c135d"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"bytes",
2024-11-28 21:44:42 +00:00
"getrandom",
2024-07-12 23:09:37 +01:00
"rand",
"ring",
2024-08-08 16:59:59 +01:00
"rustc-hash 2.0.0",
2024-07-12 23:09:37 +01:00
"rustls",
2024-11-28 21:44:42 +00:00
"rustls-pki-types",
2024-07-12 23:09:37 +01:00
"slab",
2024-11-28 21:44:42 +00:00
"thiserror 2.0.3",
2024-07-12 23:09:37 +01:00
"tinyvec",
"tracing",
2024-11-28 21:44:42 +00:00
"web-time",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "quinn-udp"
2024-11-10 16:20:03 +00:00
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "7d5a626c6807713b15cac82a6acaccd6043c9a5408c24baae07611fec3f243da"
dependencies = [
2024-11-10 16:20:03 +00:00
"cfg_aliases",
"libc",
"once_cell",
2024-07-12 23:09:37 +01:00
"socket2",
2024-08-08 16:59:59 +01:00
"tracing",
2024-09-28 23:04:35 +01:00
"windows-sys 0.59.0",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "quote"
version = "1.0.37"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro2",
]
[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
"libc",
"rand_chacha",
"rand_core",
]
[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
2024-07-12 23:09:37 +01:00
"getrandom",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "rand_distr"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32cb0b9bc82b0a0876c2dd994a7e7a2683d3e7390ca40e6886785ef0c7e3ee31"
dependencies = [
"num-traits",
"rand",
]
[[package]]
name = "raw-cpuid"
2024-10-14 19:16:15 +01:00
version = "11.2.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "1ab240315c661615f2ee9f0f2cd32d5a7343a84d5ebcccb99d46e6637565e7b0"
2024-07-30 11:37:54 +01:00
dependencies = [
"bitflags 2.6.0",
]
[[package]]
name = "rayon"
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b418a60154510ca1a002a752ca9714984e21e4241e804d32555251faf8b78ffa"
dependencies = [
"either",
"rayon-core",
]
[[package]]
name = "rayon-core"
version = "1.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1465873a3dfdaa8ae7cb14b4383657caab0b3e8a0aa9ae8e04b044854c8dfce2"
dependencies = [
"crossbeam-deque",
"crossbeam-utils",
]
2024-11-05 19:44:24 +00:00
[[package]]
name = "redox_syscall"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
dependencies = [
"bitflags 1.3.2",
]
2024-05-12 12:00:36 +01:00
[[package]]
name = "redox_syscall"
2024-10-14 19:16:15 +01:00
version = "0.5.7"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"bitflags 2.6.0",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "redox_users"
version = "0.4.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"getrandom",
2024-03-04 20:18:49 +00:00
"libredox",
2024-11-10 16:20:03 +00:00
"thiserror 1.0.69",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "regex"
2024-11-10 16:20:03 +00:00
version = "1.11.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
2024-03-04 20:18:49 +00:00
dependencies = [
"aho-corasick",
"memchr",
2024-07-12 23:09:37 +01:00
"regex-automata",
"regex-syntax",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "regex-automata"
2024-11-28 21:44:42 +00:00
version = "0.4.9"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "809e8dc61f6de73b46c85f4c96486310fe304c434cfa43669d7b40f711150908"
2024-03-04 20:18:49 +00:00
dependencies = [
"aho-corasick",
"memchr",
2024-07-12 23:09:37 +01:00
"regex-syntax",
2024-03-04 20:18:49 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "regex-lite"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
2024-03-04 20:18:49 +00:00
[[package]]
name = "regex-syntax"
2024-10-14 19:16:15 +01:00
version = "0.8.5"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
2024-03-04 20:18:49 +00:00
[[package]]
name = "relative-path"
2024-05-12 12:00:36 +01:00
version = "1.9.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "ba39f3699c378cd8970968dcbff9c43159ea4cfbd88d43c00b22f2ef10a435d2"
2024-03-04 20:18:49 +00:00
dependencies = [
"serde",
]
[[package]]
name = "reqwest"
2024-11-10 16:20:03 +00:00
version = "0.12.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "a77c62af46e79de0a562e1a9849205ffcb7fc1238876e9bd743357570e04046f"
dependencies = [
2024-07-30 11:37:54 +01:00
"base64 0.22.1",
"bytes",
"encoding_rs",
"futures-channel",
"futures-core",
"futures-util",
2024-11-28 21:44:42 +00:00
"h2 0.4.7",
2024-07-30 11:37:54 +01:00
"http 1.1.0",
2024-07-12 23:09:37 +01:00
"http-body",
"http-body-util",
2024-07-12 23:09:37 +01:00
"hyper",
"hyper-rustls",
2024-07-30 11:37:54 +01:00
"hyper-tls",
"hyper-util",
"ipnet",
"js-sys",
"log",
"mime",
2024-07-30 11:37:54 +01:00
"native-tls",
"once_cell",
"percent-encoding",
"pin-project-lite",
2024-07-12 23:09:37 +01:00
"quinn",
"rustls",
"rustls-pemfile",
"rustls-pki-types",
"serde",
"serde_json",
"serde_urlencoded",
"sync_wrapper",
"system-configuration",
"tokio",
2024-07-30 11:37:54 +01:00
"tokio-native-tls",
2024-07-12 23:09:37 +01:00
"tokio-rustls",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
2024-07-12 23:09:37 +01:00
"webpki-roots",
"windows-registry",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "ring"
version = "0.17.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
dependencies = [
"cc",
"cfg-if",
2024-07-12 23:09:37 +01:00
"getrandom",
2024-03-04 20:18:49 +00:00
"libc",
"spin",
"untrusted",
"windows-sys 0.52.0",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "rust-stemmers"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e46a2036019fdb888131db7a4c847a1063a7493f971ed94ea82c67eada63ca54"
dependencies = [
"serde",
"serde_derive",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "rustc-demangle"
2024-05-12 12:00:36 +01:00
version = "0.1.24"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2024-03-04 20:18:49 +00:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
2024-08-08 16:59:59 +01:00
[[package]]
name = "rustc-hash"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
2024-03-04 20:18:49 +00:00
[[package]]
name = "rustc_version"
2024-09-02 15:49:40 +01:00
version = "0.4.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-02 15:49:40 +01:00
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"semver",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "rustix"
2024-11-28 21:44:42 +00:00
version = "0.38.41"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "d7f649912bc1495e167a6edee79151c84b1bad49748cb4f1f1167f459f6224f6"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"bitflags 2.6.0",
2024-03-04 20:18:49 +00:00
"errno",
"libc",
2024-07-12 23:09:37 +01:00
"linux-raw-sys",
2024-03-04 20:18:49 +00:00
"windows-sys 0.52.0",
]
[[package]]
name = "rustls"
2024-11-28 21:44:42 +00:00
version = "0.23.19"
2024-03-16 16:31:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "934b404430bb06b3fae2cba809eb45a1ab1aecd64491213d7c3301b88393f8d1"
2024-03-16 16:31:27 +00:00
dependencies = [
2024-11-30 10:29:27 +00:00
"log",
2024-07-12 23:09:37 +01:00
"once_cell",
2024-03-16 16:31:27 +00:00
"ring",
"rustls-pki-types",
2024-07-12 23:09:37 +01:00
"rustls-webpki",
2024-03-16 16:31:27 +00:00
"subtle",
"zeroize",
]
2024-05-12 12:00:36 +01:00
[[package]]
name = "rustls-pemfile"
2024-10-14 19:16:15 +01:00
version = "2.2.0"
2024-05-12 12:00:36 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "dce314e5fee3f39953d46bb63bb8a46d40c2f8fb7cc5a3b6cab2bde9721d6e50"
2024-05-12 12:00:36 +01:00
dependencies = [
"rustls-pki-types",
]
2024-03-16 16:31:27 +00:00
[[package]]
name = "rustls-pki-types"
2024-11-10 16:20:03 +00:00
version = "1.10.0"
2024-03-16 16:31:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "16f1201b3c9a7ee8039bcadc17b7e605e2945b27eee7631788c1bd2b0643674b"
2024-11-28 21:44:42 +00:00
dependencies = [
"web-time",
]
2024-03-16 16:31:27 +00:00
2024-03-04 20:18:49 +00:00
[[package]]
name = "rustls-webpki"
2024-09-28 23:04:35 +01:00
version = "0.102.8"
2024-03-16 16:31:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "64ca1bc8749bd4cf37b5ce386cc146580777b4e8572c7b97baf22c83f444bee9"
2024-03-16 16:31:27 +00:00
dependencies = [
"ring",
"rustls-pki-types",
"untrusted",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "rusty-s3"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "31aa883f1b986a5249641e574ca0e11ac4fb9970b009c6fbb96fedaf4fa78db8"
dependencies = [
"base64 0.21.7",
"hmac",
"md-5",
"percent-encoding",
"quick-xml",
"serde",
"serde_json",
"sha2",
"time",
"url",
"zeroize",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "ryu"
2024-05-12 12:00:36 +01:00
version = "1.0.18"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
2024-03-04 20:18:49 +00:00
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
"winapi-util",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "schannel"
2024-11-28 21:44:42 +00:00
version = "0.1.27"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "1f29ebaa345f945cec9fbbc532eb307f0fdad8161f281b6369539c8d84876b3d"
2024-07-30 11:37:54 +01:00
dependencies = [
2024-09-28 23:04:35 +01:00
"windows-sys 0.59.0",
2024-07-30 11:37:54 +01:00
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "scopeguard"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2024-03-04 20:18:49 +00:00
[[package]]
2024-07-12 23:09:37 +01:00
name = "secret-service"
version = "4.0.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "e4d35ad99a181be0a60ffcbe85d680d98f87bdc4d7644ade319b87076b9dbfd4"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"aes",
"cbc",
"futures-util",
"generic-array",
"hkdf",
"num",
"once_cell",
"rand",
"serde",
"sha2",
"zbus",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "security-framework"
2024-07-22 15:41:45 +01:00
version = "2.11.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-22 15:41:45 +01:00
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"bitflags 2.6.0",
2024-10-14 19:16:15 +01:00
"core-foundation 0.9.4",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework"
2024-11-10 16:20:03 +00:00
version = "3.0.1"
2024-10-14 19:16:15 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "e1415a607e92bec364ea2cf9264646dcce0f91e6d65281bd6f2819cca3bf39c8"
2024-10-14 19:16:15 +01:00
dependencies = [
"bitflags 2.6.0",
"core-foundation 0.10.0",
2024-07-12 23:09:37 +01:00
"core-foundation-sys",
"libc",
"security-framework-sys",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "security-framework-sys"
2024-11-10 16:20:03 +00:00
version = "2.12.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "fa39c7303dc58b5543c94d22c1766b0d31f2ee58306363ea622b10bbc075eaa2"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"core-foundation-sys",
"libc",
2024-03-04 20:18:49 +00:00
]
[[package]]
2024-07-12 23:09:37 +01:00
name = "semver"
version = "1.0.23"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
2024-03-04 20:18:49 +00:00
dependencies = [
"serde",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "sentry"
2024-11-30 10:29:27 +00:00
version = "0.35.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-30 10:29:27 +00:00
checksum = "016958f51b96861dead7c1e02290f138411d05e94fad175c8636a835dee6e51e"
2024-07-30 11:37:54 +01:00
dependencies = [
"httpdate",
"reqwest",
2024-11-30 10:29:27 +00:00
"rustls",
2024-07-30 11:37:54 +01:00
"sentry-backtrace",
"sentry-contexts",
"sentry-core",
"sentry-debug-images",
2024-11-30 10:29:27 +00:00
"sentry-log",
2024-07-30 11:37:54 +01:00
"sentry-panic",
"sentry-tracing",
"tokio",
"ureq",
2024-11-30 10:29:27 +00:00
"webpki-roots",
2024-07-30 11:37:54 +01:00
]
[[package]]
name = "sentry-actix"
2024-11-30 10:29:27 +00:00
version = "0.35.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-30 10:29:27 +00:00
checksum = "c8c2610e32ab81cc376b6b4310101cff6636063b12f3f993884d0a8ec81c6187"
2024-07-30 11:37:54 +01:00
dependencies = [
"actix-web",
"futures-util",
"sentry-core",
]
[[package]]
name = "sentry-backtrace"
2024-11-30 10:29:27 +00:00
version = "0.35.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-30 10:29:27 +00:00
checksum = "e57712c24e99252ef175b4b06c485294f10ad6bc5b5e1567ff3803ee7a0b7d3f"
2024-07-30 11:37:54 +01:00
dependencies = [
"backtrace",
"once_cell",
"regex",
"sentry-core",
]
[[package]]
name = "sentry-contexts"
2024-11-30 10:29:27 +00:00
version = "0.35.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-30 10:29:27 +00:00
checksum = "eba8754ec3b9279e00aa6d64916f211d44202370a1699afde1db2c16cbada089"
2024-07-30 11:37:54 +01:00
dependencies = [
"hostname",
"libc",
"os_info",
"rustc_version",
"sentry-core",
"uname",
]
[[package]]
name = "sentry-core"
2024-11-30 10:29:27 +00:00
version = "0.35.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-30 10:29:27 +00:00
checksum = "f9f8b6dcd4fbae1e3e22b447f32670360b27e31b62ab040f7fb04e0f80c04d92"
2024-07-30 11:37:54 +01:00
dependencies = [
"once_cell",
"rand",
"sentry-types",
"serde",
"serde_json",
]
[[package]]
name = "sentry-debug-images"
2024-11-30 10:29:27 +00:00
version = "0.35.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-30 10:29:27 +00:00
checksum = "8982a69133d3f5e4efdbfa0776937fca43c3a2e275a8fe184f50b1b0aa92e07c"
2024-07-30 11:37:54 +01:00
dependencies = [
"findshlibs",
"once_cell",
"sentry-core",
]
[[package]]
name = "sentry-log"
2024-11-30 10:29:27 +00:00
version = "0.35.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-30 10:29:27 +00:00
checksum = "efcbfbb74628eaef033c1154d4bb082437c7592ce2282c7c5ccb455c4c97a06d"
2024-07-30 11:37:54 +01:00
dependencies = [
"log",
"sentry-core",
]
[[package]]
name = "sentry-panic"
2024-11-30 10:29:27 +00:00
version = "0.35.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-30 10:29:27 +00:00
checksum = "de296dae6f01e931b65071ee5fe28d66a27909857f744018f107ed15fd1f6b25"
2024-07-30 11:37:54 +01:00
dependencies = [
"sentry-backtrace",
"sentry-core",
]
[[package]]
name = "sentry-tracing"
2024-11-30 10:29:27 +00:00
version = "0.35.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-30 10:29:27 +00:00
checksum = "263f73c757ed7915d3e1e34625eae18cad498a95b4261603d4ce3f87b159a6f0"
2024-07-30 11:37:54 +01:00
dependencies = [
"sentry-backtrace",
"sentry-core",
"tracing-core",
"tracing-subscriber",
]
[[package]]
name = "sentry-types"
2024-11-30 10:29:27 +00:00
version = "0.35.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-30 10:29:27 +00:00
checksum = "a71ed3a389948a6a6d92b98e997a2723ca22f09660c5a7b7388ecd509a70a527"
2024-07-30 11:37:54 +01:00
dependencies = [
"debugid",
"hex",
"rand",
"serde",
"serde_json",
2024-11-10 16:20:03 +00:00
"thiserror 1.0.69",
2024-07-30 11:37:54 +01:00
"time",
"url",
"uuid",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "serde"
2024-11-28 21:44:42 +00:00
version = "1.0.215"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "6513c1ad0b11a9376da888e3e0baa0077f1aed55c17f50e7b2397136129fb88f"
2024-03-04 20:18:49 +00:00
dependencies = [
"serde_derive",
]
[[package]]
name = "serde_derive"
2024-11-28 21:44:42 +00:00
version = "1.0.215"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "ad1e866f866923f252f05c889987993144fb74e722403468a4ebd70c3cd756c0"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "serde_json"
2024-11-28 21:44:42 +00:00
version = "1.0.133"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "c7fceb2473b9166b2294ef05efcb65a3db80803f0b03ef86a5fc88a2b85ee377"
2024-03-04 20:18:49 +00:00
dependencies = [
"itoa",
2024-07-30 11:37:54 +01:00
"memchr",
2024-03-04 20:18:49 +00:00
"ryu",
"serde",
]
[[package]]
name = "serde_repr"
2024-05-12 12:00:36 +01:00
version = "0.1.19"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "6c64451ba24fc7a6a2d60fc75dd9c83c90903b19028d4eff35e88fc1e86564e9"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "serde_spanned"
2024-09-28 23:04:35 +01:00
version = "0.6.8"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
2024-03-04 20:18:49 +00:00
dependencies = [
"serde",
]
[[package]]
name = "serde_urlencoded"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
dependencies = [
"form_urlencoded",
"itoa",
"ryu",
"serde",
]
2024-07-12 23:09:37 +01:00
[[package]]
name = "serde_with"
2024-10-14 19:16:15 +01:00
version = "3.11.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "8e28bdad6db2b8340e449f7108f020b3b092e8583a9e3fb82713e1d4e71fe817"
2024-07-12 23:09:37 +01:00
dependencies = [
2024-07-30 11:37:54 +01:00
"base64 0.22.1",
2024-07-12 23:09:37 +01:00
"chrono",
"hex",
"indexmap 1.9.3",
2024-10-14 19:16:15 +01:00
"indexmap 2.6.0",
2024-07-12 23:09:37 +01:00
"serde",
"serde_derive",
"serde_json",
"serde_with_macros",
"time",
]
[[package]]
name = "serde_with_macros"
2024-10-14 19:16:15 +01:00
version = "3.11.0"
2024-07-12 23:09:37 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "9d846214a9854ef724f3da161b426242d8de7c1fc7de2f89bb1efcb154dca79d"
2024-07-12 23:09:37 +01:00
dependencies = [
"darling",
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-09-02 15:49:40 +01:00
]
[[package]]
name = "serde_yaml"
version = "0.9.34+deprecated"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a8b1a1a2ebf674015cc02edccce75287f1a0130d394307b36743c2f5d504b47"
dependencies = [
2024-10-14 19:16:15 +01:00
"indexmap 2.6.0",
2024-09-02 15:49:40 +01:00
"itoa",
"ryu",
"serde",
"unsafe-libyaml",
2024-07-12 23:09:37 +01:00
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "sha1"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "sha1_smol"
2024-07-22 15:41:45 +01:00
version = "1.0.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-22 15:41:45 +01:00
checksum = "bbfa15b3dddfee50a0fff136974b3e1bde555604ba463834a7eb7deb6417705d"
2024-03-04 20:18:49 +00:00
[[package]]
name = "sha2"
version = "0.10.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
dependencies = [
"cfg-if",
"cpufeatures",
"digest",
]
[[package]]
name = "shell-words"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24188a676b6ae68c3b2cb3a01be17fbf7240ce009799bb56d5b1409051e78fde"
[[package]]
name = "shlex"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]]
name = "signal-hook"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
dependencies = [
"libc",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-mio"
2024-08-08 16:59:59 +01:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-08 16:59:59 +01:00
checksum = "34db1a06d485c9142248b7a054f034b349b212551f3dfd19c94d45a754a217cd"
dependencies = [
"libc",
2024-07-26 17:47:53 +01:00
"mio 0.8.11",
"signal-hook",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "signal-hook-registry"
2024-05-12 12:00:36 +01:00
version = "1.4.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
2024-03-04 20:18:49 +00:00
dependencies = [
"libc",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "sketches-ddsketch"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c"
dependencies = [
"serde",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "slab"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
version = "1.13.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
2024-03-04 20:18:49 +00:00
[[package]]
name = "smol_str"
2024-11-10 16:20:03 +00:00
version = "0.3.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "9676b89cd56310a87b93dec47b11af744f34d5fc9f367b829474eec0a891350d"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-10-14 19:16:15 +01:00
"borsh",
2024-03-04 20:18:49 +00:00
"serde",
]
[[package]]
name = "socket2"
2024-11-28 21:44:42 +00:00
version = "0.5.8"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "c970269d99b64e60ec3bd6ad27270092a5394c4e309314b18ae3fe575695fbe8"
2024-03-04 20:18:49 +00:00
dependencies = [
"libc",
"windows-sys 0.52.0",
]
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
2024-07-30 11:37:54 +01:00
[[package]]
name = "spinning_top"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d96d2d1d716fb500937168cc09353ffdc7a012be8475ac7308e1bdf0e3923300"
dependencies = [
"lock_api",
]
[[package]]
name = "stable_deref_trait"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8f112729512f8e442d81f95a8a7ddf2b7c6b8a1a6f509a95864142b30cab2d3"
2024-03-04 20:18:49 +00:00
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "strsim"
2024-05-12 12:00:36 +01:00
version = "0.11.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2024-03-04 20:18:49 +00:00
[[package]]
name = "subtle"
2024-07-12 23:09:37 +01:00
version = "2.6.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2024-03-04 20:18:49 +00:00
[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "syn"
2024-11-28 21:44:42 +00:00
version = "2.0.89"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "44d46482f1c1c87acd84dea20c1bf5ebff4c757009ed6bf19cfd36fb10e92c4e"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
]
[[package]]
name = "sync_wrapper"
2024-11-28 21:44:42 +00:00
version = "1.0.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263"
dependencies = [
"futures-core",
]
2024-03-04 20:18:49 +00:00
2024-11-10 16:20:03 +00:00
[[package]]
name = "synstructure"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8af7666ab7b6390ab78131fb5b0fce11d6b7a6951602017c35fa82800708971"
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-11-10 16:20:03 +00:00
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "system-configuration"
version = "0.6.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c879d448e9d986b661742763247d3693ed13609438cf3d006f51f5368a5ba6b"
2024-03-04 20:18:49 +00:00
dependencies = [
"bitflags 2.6.0",
2024-10-14 19:16:15 +01:00
"core-foundation 0.9.4",
2024-03-04 20:18:49 +00:00
"system-configuration-sys",
]
[[package]]
name = "system-configuration-sys"
version = "0.6.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e1d1b10ced5ca923a1fcb8d03e96b8d3268065d724548c0211415ff6ac6bac4"
2024-03-04 20:18:49 +00:00
dependencies = [
"core-foundation-sys",
"libc",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "tantivy"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8d0582f186c0a6d55655d24543f15e43607299425c5ad8352c242b914b31856"
dependencies = [
"aho-corasick",
"arc-swap",
"base64 0.22.1",
"bitpacking",
"byteorder",
"census",
"crc32fast",
"crossbeam-channel",
"downcast-rs",
"fastdivide",
"fnv",
"fs4",
"htmlescape",
2024-11-24 19:21:16 +00:00
"itertools 0.12.1",
2024-07-30 11:37:54 +01:00
"levenshtein_automata",
"log",
"lru",
"lz4_flex",
"measure_time",
"memmap2",
"num_cpus",
"once_cell",
"oneshot",
"rayon",
"regex",
"rust-stemmers",
2024-08-08 16:59:59 +01:00
"rustc-hash 1.1.0",
2024-07-30 11:37:54 +01:00
"serde",
"serde_json",
"sketches-ddsketch",
"smallvec",
"tantivy-bitpacker",
"tantivy-columnar",
"tantivy-common",
"tantivy-fst",
"tantivy-query-grammar",
"tantivy-stacker",
"tantivy-tokenizer-api",
"tempfile",
2024-11-10 16:20:03 +00:00
"thiserror 1.0.69",
2024-07-30 11:37:54 +01:00
"time",
"uuid",
"winapi",
]
[[package]]
name = "tantivy-bitpacker"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "284899c2325d6832203ac6ff5891b297fc5239c3dc754c5bc1977855b23c10df"
dependencies = [
"bitpacking",
]
[[package]]
name = "tantivy-columnar"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12722224ffbe346c7fec3275c699e508fd0d4710e629e933d5736ec524a1f44e"
dependencies = [
"downcast-rs",
"fastdivide",
2024-11-24 19:21:16 +00:00
"itertools 0.12.1",
2024-07-30 11:37:54 +01:00
"serde",
"tantivy-bitpacker",
"tantivy-common",
"tantivy-sstable",
"tantivy-stacker",
]
[[package]]
name = "tantivy-common"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8019e3cabcfd20a1380b491e13ff42f57bb38bf97c3d5fa5c07e50816e0621f4"
dependencies = [
"async-trait",
"byteorder",
"ownedbytes",
"serde",
"time",
]
[[package]]
name = "tantivy-fst"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d60769b80ad7953d8a7b2c70cdfe722bbcdcac6bccc8ac934c40c034d866fc18"
dependencies = [
"byteorder",
"regex-syntax",
"utf8-ranges",
]
[[package]]
name = "tantivy-query-grammar"
version = "0.22.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "847434d4af57b32e309f4ab1b4f1707a6c566656264caa427ff4285c4d9d0b82"
dependencies = [
"nom",
]
[[package]]
name = "tantivy-sstable"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c69578242e8e9fc989119f522ba5b49a38ac20f576fc778035b96cc94f41f98e"
dependencies = [
"tantivy-bitpacker",
"tantivy-common",
"tantivy-fst",
"zstd",
]
[[package]]
name = "tantivy-stacker"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c56d6ff5591fc332739b3ce7035b57995a3ce29a93ffd6012660e0949c956ea8"
dependencies = [
"murmurhash32",
"rand_distr",
"tantivy-common",
]
[[package]]
name = "tantivy-tokenizer-api"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a0dcade25819a89cfe6f17d932c9cedff11989936bf6dd4f336d50392053b04"
dependencies = [
"serde",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "tempfile"
2024-11-10 16:20:03 +00:00
version = "3.14.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "28cce251fcbc87fac86a866eeb0d6c2d536fc16d06f184bb61aeae11aa4cee0c"
2024-03-04 20:18:49 +00:00
dependencies = [
"cfg-if",
2024-07-12 23:09:37 +01:00
"fastrand",
2024-08-08 16:59:59 +01:00
"once_cell",
2024-07-12 23:09:37 +01:00
"rustix",
2024-08-08 16:59:59 +01:00
"windows-sys 0.59.0",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "termcolor"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
dependencies = [
"winapi-util",
]
[[package]]
name = "thiserror"
2024-11-10 16:20:03 +00:00
version = "1.0.69"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-11-10 16:20:03 +00:00
"thiserror-impl 1.0.69",
]
[[package]]
name = "thiserror"
2024-11-28 21:44:42 +00:00
version = "2.0.3"
2024-11-10 16:20:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "c006c85c7651b3cf2ada4584faa36773bd07bac24acfb39f3c431b36d7e667aa"
2024-11-10 16:20:03 +00:00
dependencies = [
2024-11-28 21:44:42 +00:00
"thiserror-impl 2.0.3",
2024-11-10 16:20:03 +00:00
]
[[package]]
name = "thiserror-impl"
version = "1.0.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "thiserror-impl"
2024-11-28 21:44:42 +00:00
version = "2.0.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "f077553d607adc1caf65430528a576c757a71ed73944b66ebb58ef2bbd243568"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "thread_local"
version = "1.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
dependencies = [
"cfg-if",
"once_cell",
]
[[package]]
name = "time"
2024-05-12 12:00:36 +01:00
version = "0.3.36"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
2024-03-04 20:18:49 +00:00
dependencies = [
"deranged",
"itoa",
"num-conv",
"powerfmt",
"serde",
"time-core",
2024-07-12 23:09:37 +01:00
"time-macros",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "time-core"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
[[package]]
name = "time-macros"
2024-05-12 12:00:36 +01:00
version = "0.2.18"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-12 12:00:36 +01:00
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
2024-03-04 20:18:49 +00:00
dependencies = [
"num-conv",
"time-core",
]
2024-11-10 16:20:03 +00:00
[[package]]
name = "tinystr"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9117f5d4db391c1cf6927e7bea3db74b9a1c1add8f7eda9ffd5364f40f57b82f"
dependencies = [
"displaydoc",
"zerovec",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "tinyvec"
2024-07-12 23:09:37 +01:00
version = "1.8.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
2024-03-04 20:18:49 +00:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
[[package]]
name = "tokio"
2024-11-10 16:20:03 +00:00
version = "1.41.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "22cfb5bee7a6a52939ca9224d6ac897bb669134078daa8735560897f69de4d33"
2024-03-04 20:18:49 +00:00
dependencies = [
"backtrace",
"bytes",
"libc",
"mio 1.0.2",
2024-07-30 11:37:54 +01:00
"parking_lot",
2024-03-04 20:18:49 +00:00
"pin-project-lite",
2024-07-30 11:37:54 +01:00
"signal-hook-registry",
2024-07-12 23:09:37 +01:00
"socket2",
2024-11-05 19:44:24 +00:00
"tokio-macros",
2024-07-26 17:47:53 +01:00
"windows-sys 0.52.0",
2024-03-04 20:18:49 +00:00
]
2024-11-05 19:44:24 +00:00
[[package]]
name = "tokio-macros"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-11-05 19:44:24 +00:00
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "tokio-native-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
dependencies = [
"native-tls",
"tokio",
]
2024-03-16 16:31:27 +00:00
[[package]]
name = "tokio-rustls"
2024-07-12 23:09:37 +01:00
version = "0.26.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"rustls",
2024-03-16 16:31:27 +00:00
"rustls-pki-types",
2024-03-04 20:18:49 +00:00
"tokio",
]
2024-11-05 19:44:24 +00:00
[[package]]
name = "tokio-stream"
version = "0.1.16"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f4e6ce100d0eb49a2734f8c0812bcd324cf357d21810932c5df6b96ef2b86f1"
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-tar"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d5714c010ca3e5c27114c1cdeb9d14641ace49874aa5626d7149e47aedace75"
dependencies = [
"filetime",
"futures-core",
"libc",
"redox_syscall 0.3.5",
"tokio",
"tokio-stream",
"xattr",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "tokio-util"
2024-09-28 23:04:35 +01:00
version = "0.7.12"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "61e7c3654c13bcd040d4a03abee2c75b1d14a37b423cf5a813ceae1cc903ec6a"
2024-03-04 20:18:49 +00:00
dependencies = [
"bytes",
"futures-core",
2024-11-05 19:44:24 +00:00
"futures-io",
2024-03-04 20:18:49 +00:00
"futures-sink",
"pin-project-lite",
"tokio",
]
[[package]]
name = "toml"
2024-08-08 16:59:59 +01:00
version = "0.8.19"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-08 16:59:59 +01:00
checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
2024-03-04 20:18:49 +00:00
dependencies = [
"serde",
"serde_spanned",
"toml_datetime",
2024-09-02 15:49:40 +01:00
"toml_edit",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "toml_datetime"
2024-08-08 16:59:59 +01:00
version = "0.6.8"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-08 16:59:59 +01:00
checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
2024-03-04 20:18:49 +00:00
dependencies = [
"serde",
]
[[package]]
name = "toml_edit"
2024-09-28 23:04:35 +01:00
version = "0.22.22"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-10-14 19:16:15 +01:00
"indexmap 2.6.0",
2024-03-04 20:18:49 +00:00
"serde",
"serde_spanned",
"toml_datetime",
2024-09-02 15:49:40 +01:00
"winnow",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "tower-service"
version = "0.3.3"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3"
2024-03-04 20:18:49 +00:00
[[package]]
name = "tracing"
2024-11-28 21:44:42 +00:00
version = "0.1.41"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "784e0ac535deb450455cbfa28a6f0df145ea1bb7ae51b821cf5e7927fdcfbdd0"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-30 11:37:54 +01:00
"log",
2024-03-04 20:18:49 +00:00
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2024-11-28 21:44:42 +00:00
version = "0.1.28"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "395ae124c09f9e6918a2310af6038fba074bcf474ac352496d5910dd59a2226d"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "tracing-core"
2024-11-28 21:44:42 +00:00
version = "0.1.33"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "e672c95779cf947c5311f83787af4fa8fffd12fb27e4993211a84bdfd9610f9c"
2024-03-04 20:18:49 +00:00
dependencies = [
"once_cell",
2024-07-30 11:37:54 +01:00
"valuable",
]
[[package]]
name = "tracing-subscriber"
2024-11-30 10:29:27 +00:00
version = "0.3.19"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-30 10:29:27 +00:00
checksum = "e8189decb5ac0fa7bc8b96b7cb9b2701d60d48805aca84a238004d665fcc4008"
2024-07-30 11:37:54 +01:00
dependencies = [
"tracing-core",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "try-lock"
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]]
name = "typenum"
version = "1.17.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
[[package]]
name = "uds_windows"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "89daebc3e6fd160ac4aa9fc8b3bf71e1f74fbf92367ae71fb83a037e8bf164b9"
dependencies = [
2024-07-12 23:09:37 +01:00
"memoffset",
2024-03-04 20:18:49 +00:00
"tempfile",
"winapi",
]
2024-07-30 11:37:54 +01:00
[[package]]
name = "uname"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b72f89f0ca32e4db1c04e2a72f5345d59796d4866a1ee0609084569f73683dc8"
dependencies = [
"libc",
]
2024-07-12 23:09:37 +01:00
[[package]]
name = "unicode-bom"
version = "2.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7eec5d1121208364f6793f7d2e222bf75a915c19557537745b195b253dd64217"
2024-03-04 20:18:49 +00:00
[[package]]
name = "unicode-ident"
2024-11-28 21:44:42 +00:00
version = "1.0.14"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
2024-03-04 20:18:49 +00:00
[[package]]
name = "unicode-normalization"
2024-09-28 23:04:35 +01:00
version = "0.1.24"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
2024-03-04 20:18:49 +00:00
dependencies = [
"tinyvec",
]
[[package]]
name = "unicode-segmentation"
2024-09-28 23:04:35 +01:00
version = "1.12.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
2024-03-04 20:18:49 +00:00
[[package]]
name = "unicode-width"
2024-09-28 23:04:35 +01:00
version = "0.1.14"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
2024-03-04 20:18:49 +00:00
2024-11-28 21:44:42 +00:00
[[package]]
name = "unicode-width"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1fc81956842c57dac11422a97c3b8195a1ff727f06e85c84ed2e8aa277c9a0fd"
2024-10-14 19:16:15 +01:00
[[package]]
name = "unicode-xid"
version = "0.2.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
2024-09-02 15:49:40 +01:00
[[package]]
name = "unsafe-libyaml"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "673aac59facbab8a9007c7f6108d11f63b603f7cabff99fabf650fea5c32b861"
2024-03-04 20:18:49 +00:00
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
2024-07-30 11:37:54 +01:00
[[package]]
name = "ureq"
version = "2.10.1"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b74fc6b57825be3373f7054754755f03ac3a8f5d70015ccad699ba2029956f4a"
2024-07-30 11:37:54 +01:00
dependencies = [
"base64 0.22.1",
"log",
"once_cell",
2024-11-30 10:29:27 +00:00
"rustls",
"rustls-pki-types",
2024-07-30 11:37:54 +01:00
"url",
2024-11-30 10:29:27 +00:00
"webpki-roots",
2024-07-30 11:37:54 +01:00
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "url"
2024-11-28 21:44:42 +00:00
version = "2.5.4"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "32f8b686cadd1473f4bd0117a5d28d36b1ade384ea9b5069a1c40aefed7fda60"
2024-03-04 20:18:49 +00:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
"serde",
]
2024-11-10 16:20:03 +00:00
[[package]]
name = "utf16_iter"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246"
2024-07-30 11:37:54 +01:00
[[package]]
name = "utf8-ranges"
version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7fcfc827f90e53a02eaef5e535ee14266c1d569214c6aa70133a624d8a3164ba"
2024-11-10 16:20:03 +00:00
[[package]]
name = "utf8_iter"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be"
2024-03-04 20:18:49 +00:00
[[package]]
name = "utf8parse"
2024-07-12 23:09:37 +01:00
version = "0.2.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2024-03-04 20:18:49 +00:00
2024-07-30 11:37:54 +01:00
[[package]]
name = "uuid"
2024-11-10 16:20:03 +00:00
version = "1.11.0"
2024-07-30 11:37:54 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-10 16:20:03 +00:00
checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
2024-07-30 11:37:54 +01:00
dependencies = [
"getrandom",
"serde",
]
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
2024-07-23 15:37:47 +01:00
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
2024-03-04 20:18:49 +00:00
[[package]]
name = "version_check"
2024-07-26 17:47:53 +01:00
version = "0.9.5"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-26 17:47:53 +01:00
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
2024-03-04 20:18:49 +00:00
[[package]]
name = "walkdir"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
dependencies = [
"same-file",
"winapi-util",
]
[[package]]
name = "want"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
dependencies = [
"try-lock",
]
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"
[[package]]
name = "wasm-bindgen"
2024-10-14 19:16:15 +01:00
version = "0.2.95"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
2024-03-04 20:18:49 +00:00
dependencies = [
"cfg-if",
"once_cell",
2024-03-04 20:18:49 +00:00
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2024-10-14 19:16:15 +01:00
version = "0.2.95"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
2024-03-04 20:18:49 +00:00
dependencies = [
"bumpalo",
"log",
"once_cell",
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2024-10-14 19:16:15 +01:00
version = "0.4.45"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
2024-03-04 20:18:49 +00:00
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2024-10-14 19:16:15 +01:00
version = "0.2.95"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
2024-03-04 20:18:49 +00:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2024-10-14 19:16:15 +01:00
version = "0.2.95"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2024-10-14 19:16:15 +01:00
version = "0.2.95"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
2024-03-04 20:18:49 +00:00
2024-11-24 19:21:16 +00:00
[[package]]
name = "wax"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8d12a78aa0bab22d2f26ed1a96df7ab58e8a93506a3e20adb47c51a93b4e1357"
dependencies = [
"const_format",
"itertools 0.11.0",
"nom",
"pori",
"regex",
"thiserror 1.0.69",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "web-sys"
2024-10-14 19:16:15 +01:00
version = "0.3.72"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-10-14 19:16:15 +01:00
checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
2024-03-04 20:18:49 +00:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2024-11-28 21:44:42 +00:00
[[package]]
name = "web-time"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb"
dependencies = [
"js-sys",
"wasm-bindgen",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "webpki-roots"
2024-11-28 21:44:42 +00:00
version = "0.26.7"
2024-03-16 16:31:27 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "5d642ff16b7e79272ae451b7322067cdc17cadf68c23264be9d94a32319efe7e"
2024-03-16 16:31:27 +00:00
dependencies = [
"rustls-pki-types",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-util"
2024-08-08 16:59:59 +01:00
version = "0.1.9"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-08 16:59:59 +01:00
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-08-08 16:59:59 +01:00
"windows-sys 0.59.0",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2024-07-30 11:37:54 +01:00
[[package]]
name = "windows"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e48a53791691ab099e5e2ad123536d0fff50652600abaf43bbf952894110d0be"
dependencies = [
"windows-core",
"windows-targets 0.52.6",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "windows-core"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
dependencies = [
2024-07-12 23:09:37 +01:00
"windows-targets 0.52.6",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "windows-registry"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e400001bb720a623c1c69032f8e3e4cf09984deec740f007dd2b03ec864804b0"
dependencies = [
"windows-result",
"windows-strings",
"windows-targets 0.52.6",
]
[[package]]
name = "windows-result"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d1043d8214f791817bab27572aaa8af63732e11bf84aa21a45a78d6c317ae0e"
dependencies = [
"windows-targets 0.52.6",
]
[[package]]
name = "windows-strings"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cd9b125c486025df0eabcb585e62173c6c9eddcec5d117d3b6e8c30e2ee4d10"
dependencies = [
"windows-result",
"windows-targets 0.52.6",
]
2024-03-04 20:18:49 +00:00
[[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.5",
]
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
2024-07-12 23:09:37 +01:00
"windows-targets 0.52.6",
2024-03-04 20:18:49 +00:00
]
2024-08-08 16:59:59 +01:00
[[package]]
name = "windows-sys"
version = "0.59.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
dependencies = [
"windows-targets 0.52.6",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c"
dependencies = [
"windows_aarch64_gnullvm 0.48.5",
"windows_aarch64_msvc 0.48.5",
"windows_i686_gnu 0.48.5",
"windows_i686_msvc 0.48.5",
"windows_x86_64_gnu 0.48.5",
"windows_x86_64_gnullvm 0.48.5",
"windows_x86_64_msvc 0.48.5",
]
[[package]]
name = "windows-targets"
2024-07-12 23:09:37 +01:00
version = "0.52.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"windows_aarch64_gnullvm 0.52.6",
"windows_aarch64_msvc 0.52.6",
"windows_i686_gnu 0.52.6",
2024-05-12 12:00:36 +01:00
"windows_i686_gnullvm",
2024-07-12 23:09:37 +01:00
"windows_i686_msvc 0.52.6",
"windows_x86_64_gnu 0.52.6",
"windows_x86_64_gnullvm 0.52.6",
"windows_x86_64_msvc 0.52.6",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
[[package]]
name = "windows_aarch64_gnullvm"
2024-07-12 23:09:37 +01:00
version = "0.52.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2024-03-04 20:18:49 +00:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
[[package]]
name = "windows_aarch64_msvc"
2024-07-12 23:09:37 +01:00
version = "0.52.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2024-03-04 20:18:49 +00:00
[[package]]
name = "windows_i686_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
[[package]]
name = "windows_i686_gnu"
2024-07-12 23:09:37 +01:00
version = "0.52.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2024-05-12 12:00:36 +01:00
[[package]]
name = "windows_i686_gnullvm"
2024-07-12 23:09:37 +01:00
version = "0.52.6"
2024-05-12 12:00:36 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2024-03-04 20:18:49 +00:00
[[package]]
name = "windows_i686_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
[[package]]
name = "windows_i686_msvc"
2024-07-12 23:09:37 +01:00
version = "0.52.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2024-03-04 20:18:49 +00:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
[[package]]
name = "windows_x86_64_gnu"
2024-07-12 23:09:37 +01:00
version = "0.52.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2024-03-04 20:18:49 +00:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
[[package]]
name = "windows_x86_64_gnullvm"
2024-07-12 23:09:37 +01:00
version = "0.52.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2024-03-04 20:18:49 +00:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
[[package]]
name = "windows_x86_64_msvc"
2024-07-12 23:09:37 +01:00
version = "0.52.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2024-03-04 20:18:49 +00:00
[[package]]
name = "winnow"
2024-09-28 23:04:35 +01:00
version = "0.6.20"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-09-28 23:04:35 +01:00
checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
2024-03-04 20:18:49 +00:00
dependencies = [
"memchr",
]
2024-05-12 12:00:36 +01:00
[[package]]
name = "winreg"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a277a57398d4bfa075df44f501a17cfdf8542d224f0d36095a2adc7aee4ef0a5"
dependencies = [
"cfg-if",
"windows-sys 0.48.0",
]
2024-11-10 16:20:03 +00:00
[[package]]
name = "write16"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936"
[[package]]
name = "writeable"
version = "0.5.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1e9df38ee2d2c3c5948ea468a8406ff0db0b29ae1ffde1bcf20ef305bcc95c51"
2024-03-04 20:18:49 +00:00
[[package]]
name = "xattr"
version = "1.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8da84f1a25939b27f6820d92aed108f83ff920fdf11a7b19366c27c4cda81d4f"
dependencies = [
"libc",
2024-07-12 23:09:37 +01:00
"linux-raw-sys",
"rustix",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "xdg-home"
version = "1.3.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec1cdab258fb55c0da61328dc52c8764709b249011b2cad0454c72f0bf10a1f6"
2024-03-04 20:18:49 +00:00
dependencies = [
"libc",
"windows-sys 0.59.0",
2024-03-04 20:18:49 +00:00
]
2024-11-10 16:20:03 +00:00
[[package]]
name = "yoke"
2024-11-28 21:44:42 +00:00
version = "0.7.5"
2024-11-10 16:20:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "120e6aef9aa629e3d4f52dc8cc43a015c7724194c97dfaf45180d2daf2b77f40"
2024-11-10 16:20:03 +00:00
dependencies = [
"serde",
"stable_deref_trait",
"yoke-derive",
"zerofrom",
]
[[package]]
name = "yoke-derive"
2024-11-28 21:44:42 +00:00
version = "0.7.5"
2024-11-10 16:20:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "2380878cad4ac9aac1e2435f3eb4020e8374b5f13c296cb75b4620ff8e229154"
2024-11-10 16:20:03 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-11-10 16:20:03 +00:00
"synstructure",
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "zbus"
2024-07-26 17:47:53 +01:00
version = "4.4.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-26 17:47:53 +01:00
checksum = "bb97012beadd29e654708a0fdb4c84bc046f537aecfde2c3ee0a9e4b4d48c725"
2024-03-04 20:18:49 +00:00
dependencies = [
"async-broadcast",
2024-11-05 19:44:24 +00:00
"async-executor",
"async-fs",
"async-io",
"async-lock",
2024-03-04 20:18:49 +00:00
"async-process",
"async-recursion",
2024-11-05 19:44:24 +00:00
"async-task",
2024-03-04 20:18:49 +00:00
"async-trait",
2024-11-05 19:44:24 +00:00
"blocking",
2024-03-04 20:18:49 +00:00
"enumflags2",
2024-07-12 23:09:37 +01:00
"event-listener",
2024-03-04 20:18:49 +00:00
"futures-core",
"futures-sink",
"futures-util",
"hex",
2024-07-12 23:09:37 +01:00
"nix",
2024-03-04 20:18:49 +00:00
"ordered-stream",
"rand",
"serde",
"serde_repr",
2024-07-12 23:09:37 +01:00
"sha1",
2024-03-04 20:18:49 +00:00
"static_assertions",
"tracing",
"uds_windows",
2024-07-12 23:09:37 +01:00
"windows-sys 0.52.0",
2024-03-04 20:18:49 +00:00
"xdg-home",
"zbus_macros",
"zbus_names",
"zvariant",
]
[[package]]
name = "zbus_macros"
2024-07-26 17:47:53 +01:00
version = "4.4.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-26 17:47:53 +01:00
checksum = "267db9407081e90bbfa46d841d3cbc60f59c0351838c4bc65199ecd79ab1983e"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
"zvariant_utils",
]
[[package]]
name = "zbus_names"
2024-07-12 23:09:37 +01:00
version = "3.0.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "4b9b1fef7d021261cc16cba64c351d291b715febe0fa10dc3a443ac5a5022e6c"
2024-03-04 20:18:49 +00:00
dependencies = [
"serde",
"static_assertions",
"zvariant",
]
[[package]]
name = "zerocopy"
2024-07-12 23:09:37 +01:00
version = "0.7.35"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-08-08 16:59:59 +01:00
"byteorder",
2024-03-04 20:18:49 +00:00
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
2024-07-12 23:09:37 +01:00
version = "0.7.35"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-11-10 16:20:03 +00:00
]
[[package]]
name = "zerofrom"
2024-11-28 21:44:42 +00:00
version = "0.1.5"
2024-11-10 16:20:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "cff3ee08c995dee1859d998dea82f7374f2826091dd9cd47def953cae446cd2e"
2024-11-10 16:20:03 +00:00
dependencies = [
"zerofrom-derive",
]
[[package]]
name = "zerofrom-derive"
2024-11-28 21:44:42 +00:00
version = "0.1.5"
2024-11-10 16:20:03 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-11-28 21:44:42 +00:00
checksum = "595eed982f7d355beb85837f651fa22e90b3c044842dc7f2c2842c086f295808"
2024-11-10 16:20:03 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-11-10 16:20:03 +00:00
"synstructure",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "zeroize"
2024-07-12 23:09:37 +01:00
version = "1.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2024-03-04 20:18:49 +00:00
2024-11-10 16:20:03 +00:00
[[package]]
name = "zerovec"
version = "0.10.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa2b893d79df23bfb12d5461018d408ea19dfafe76c2c7ef6d4eba614f8ff079"
dependencies = [
"yoke",
"zerofrom",
"zerovec-derive",
]
[[package]]
name = "zerovec-derive"
version = "0.10.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6eafa6dfb17584ea3e2bd6e76e0cc15ad7af12b09abdd1ca55961bed9b1063c6"
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-11-10 16:20:03 +00:00
]
2024-03-04 20:18:49 +00:00
[[package]]
name = "zstd"
2024-07-12 23:09:37 +01:00
version = "0.13.2"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-12 23:09:37 +01:00
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"zstd-safe",
2024-03-04 20:18:49 +00:00
]
[[package]]
name = "zstd-safe"
2024-08-08 16:59:59 +01:00
version = "7.2.1"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-08 16:59:59 +01:00
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
2024-03-04 20:18:49 +00:00
dependencies = [
"zstd-sys",
]
[[package]]
name = "zstd-sys"
2024-08-08 16:59:59 +01:00
version = "2.0.13+zstd.1.5.6"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-08-08 16:59:59 +01:00
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
2024-03-04 20:18:49 +00:00
dependencies = [
"cc",
"pkg-config",
]
[[package]]
name = "zvariant"
2024-07-26 17:47:53 +01:00
version = "4.2.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-26 17:47:53 +01:00
checksum = "2084290ab9a1c471c38fc524945837734fbf124487e105daec2bb57fd48c81fe"
2024-03-04 20:18:49 +00:00
dependencies = [
2024-07-12 23:09:37 +01:00
"endi",
2024-03-04 20:18:49 +00:00
"enumflags2",
"serde",
"static_assertions",
"zvariant_derive",
]
[[package]]
name = "zvariant_derive"
2024-07-26 17:47:53 +01:00
version = "4.2.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-26 17:47:53 +01:00
checksum = "73e2ba546bda683a90652bac4a279bc146adad1386f25379cf73200d2002c449"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro-crate",
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
"zvariant_utils",
]
[[package]]
name = "zvariant_utils"
2024-07-26 17:47:53 +01:00
version = "2.1.0"
2024-03-04 20:18:49 +00:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-07-26 17:47:53 +01:00
checksum = "c51bcff7cc3dbb5055396bcf774748c3dab426b4b8659046963523cee4808340"
2024-03-04 20:18:49 +00:00
dependencies = [
"proc-macro2",
"quote",
2024-11-28 21:44:42 +00:00
"syn 2.0.89",
2024-03-04 20:18:49 +00:00
]