atuin/Cargo.lock

5365 lines
125 KiB
Plaintext
Raw Normal View History

# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2023-08-18 22:45:29 +02:00
[[package]]
name = "addr2line"
2024-06-04 13:05:03 +02:00
version = "0.22.0"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "6e4503c46a5c0c7844e948c9a4d6acd9f50cccb4de1c48eb9e291ea17470c678"
2023-08-18 22:45:29 +02:00
dependencies = [
"gimli",
]
[[package]]
name = "adler"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f26201604c87b1e01bd3d98f8d5d9a8fcbb815e8cedb41ffccbeb4bf593a35fe"
[[package]]
name = "aead"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d122413f284cf2d62fb1b7db97e02edb8cda96d769b16e443a4f6195e35662b0"
dependencies = [
"crypto-common",
"generic-array",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "ahash"
2024-03-06 12:55:39 +01:00
version = "0.8.11"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "e89da841a80418a9b391ebaea17f5c112ffaaa96f621d2c285b5174da76b9011"
2021-02-14 14:28:01 +01:00
dependencies = [
2023-08-18 22:45:29 +02:00
"cfg-if",
"once_cell",
"version_check",
2023-10-25 20:06:59 +02:00
"zerocopy",
2021-02-14 14:28:01 +01:00
]
[[package]]
name = "aho-corasick"
2024-06-04 13:05:03 +02:00
version = "1.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
dependencies = [
"memchr",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "allocator-api2"
2024-06-04 13:05:03 +02:00
version = "0.2.18"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "5c6cb57a04249c6480766f7f7cef5467412af1490f8d1e243141daddada3264f"
2023-08-18 22:45:29 +02: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",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "anstream"
2024-06-04 13:05:03 +02:00
version = "0.6.14"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "418c75fa768af9c03be99d17643f93f79bbba589895012a80e3452a19ddda15b"
2023-08-18 22:45:29 +02:00
dependencies = [
"anstyle",
"anstyle-parse",
"anstyle-query",
"anstyle-wincon",
"colorchoice",
2024-06-04 13:05:03 +02:00
"is_terminal_polyfill",
2023-08-18 22:45:29 +02:00
"utf8parse",
]
[[package]]
name = "anstyle"
2024-06-04 13:05:03 +02:00
version = "1.0.7"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "038dfcf04a5feb68e9c60b21c9625a54c2c0616e79b72b0fd87075a056ae1d1b"
2023-08-18 22:45:29 +02:00
[[package]]
name = "anstyle-parse"
2024-06-04 13:05:03 +02:00
version = "0.2.4"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "c03a11a9034d92058ceb6ee011ce58af4a9bf61491aa7e1e59ecd24bd40d22d4"
2023-08-18 22:45:29 +02:00
dependencies = [
"utf8parse",
]
[[package]]
name = "anstyle-query"
version = "1.1.0"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad186efb764318d35165f1758e7dcef3b10628e26d41a44bc5550652e6804391"
2023-08-18 22:45:29 +02:00
dependencies = [
2023-12-16 20:20:40 +01:00
"windows-sys 0.52.0",
2023-08-18 22:45:29 +02:00
]
[[package]]
name = "anstyle-wincon"
2024-06-04 13:05:03 +02:00
version = "3.0.3"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "61a38449feb7068f52bb06c12759005cf459ee52bb4adc1d5a7c4322d716fb19"
2023-08-18 22:45:29 +02:00
dependencies = [
"anstyle",
2023-12-16 20:20:40 +01:00
"windows-sys 0.52.0",
2023-08-18 22:45:29 +02:00
]
[[package]]
name = "anyhow"
2024-06-04 13:05:03 +02:00
version = "1.0.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "b3d1d046238990b9cf5bcde22a3fb3584ee5cf65fb2765f454ed428c7a0063da"
[[package]]
name = "approx"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cab112f0a86d568ea0e627cc1d6be74a1e9cd55214684db5561995f6dad897c6"
dependencies = [
"num-traits",
]
[[package]]
name = "arboard"
version = "3.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fb4009533e8ff8f1450a5bcbc30f4242a1d34442221f72314bea1f5dc9c7f89"
dependencies = [
"clipboard-win",
"core-graphics",
"image",
"log",
"objc2",
"objc2-app-kit",
"objc2-foundation",
"parking_lot",
"windows-sys 0.48.0",
"wl-clipboard-rs",
"x11rb",
]
[[package]]
name = "arc-swap"
2024-06-04 13:05:03 +02:00
version = "1.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "69f7f8c3906b62b754cd5326047894316021dcfe5a194c8ea52bdd94934a3457"
[[package]]
name = "argon2"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c3610892ee6e0cbce8ae2700349fcf8f98adb0dbfbee85aec3c9179d29cc072"
dependencies = [
"base64ct",
"blake2",
2023-08-18 22:45:29 +02:00
"cpufeatures",
"password-hash",
]
[[package]]
name = "async-stream"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cd56dd203fef61ac097dd65721a419ddccb106b2d2b70ba60a6b529f03961a51"
dependencies = [
"async-stream-impl",
"futures-core",
"pin-project-lite",
]
[[package]]
name = "async-stream-impl"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "async-trait"
version = "0.1.81"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e0c28dcc82d7c8ead5cb13beb15405b57b8546e93215673ff8ca0349a028107"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "atoi"
2023-08-18 22:45:29 +02:00
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "f28d99ec8bfea296261ca1af174f24225171fea9664ba9003cbebee704810528"
dependencies = [
"num-traits",
]
2024-06-04 13:05:03 +02:00
[[package]]
name = "atomic-waker"
version = "1.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0"
2021-02-13 13:58:40 +01:00
[[package]]
name = "atuin"
version = "18.4.0-beta.3"
2021-02-13 13:58:40 +01:00
dependencies = [
"arboard",
"async-trait",
"atuin-client",
"atuin-common",
"atuin-daemon",
"atuin-dotfiles",
"atuin-history",
"atuin-server",
"atuin-server-postgres",
"base64 0.22.1",
2022-04-07 07:32:11 +02:00
"clap",
"clap_complete",
"clap_complete_nushell",
"colored",
"crossterm",
2021-02-13 13:58:40 +01:00
"directories",
"env_logger",
2021-02-13 13:58:40 +01:00
"eyre",
2022-04-13 19:08:49 +02:00
"fs-err",
2023-02-10 19:14:48 +01:00
"futures-util",
"fuzzy-matcher",
"indicatif",
"interim",
"itertools",
"log",
2023-07-18 00:16:37 +02:00
"ratatui",
"regex",
"rpassword",
"runtime-format",
"rustix",
"semver",
"serde",
"serde_json",
"sysinfo",
"time",
2023-02-06 20:22:58 +01:00
"tiny-bip39",
"tokio",
"tracing",
"tracing-subscriber",
"tracing-tree",
"unicode-segmentation",
"unicode-width",
"uuid",
"whoami",
]
[[package]]
name = "atuin-client"
version = "18.4.0-beta.3"
dependencies = [
"async-trait",
"atuin-common",
"base64 0.22.1",
"clap",
"config",
"crossterm",
2023-08-18 22:45:29 +02:00
"crypto_secretbox",
"directories",
"eyre",
2022-04-13 19:08:49 +02:00
"fs-err",
"futures",
"generic-array",
2022-04-25 08:13:30 +02:00
"hex",
"humantime",
"indicatif",
"interim",
"itertools",
"lazy_static",
"log",
"memchr",
"minspan",
"palette",
"pretty_assertions",
"rand",
"regex",
"reqwest 0.11.27",
"rmp",
"rusty_paserk",
"rusty_paseto",
"semver",
"serde",
"serde_json",
"serde_regex",
"serde_with",
"sha2",
2021-02-13 13:58:40 +01:00
"shellexpand",
"sql-builder",
"sqlx",
"strum",
"strum_macros",
"testing_logger",
feat: rework record sync for improved reliability (#1478) * feat: rework record sync for improved reliability So, to tell a story 1. We introduced the record sync, intended to be the new algorithm to sync history. 2. On top of this, I added the KV store. This was intended as a simple test of the record sync, and to see if people wanted that sort of functionality 3. History remained syncing via the old means, as while it had issues it worked more-or-less OK. And we are aware of its flaws 4. If KV syncing worked ok, history would be moved across KV syncing ran ok for 6mo or so, so I started to move across history. For several weeks, I ran a local fork of Atuin + the server that synced via records instead. The record store maintained ordering via a linked list, which was a mistake. It performed well in testing, but was really difficult to debug and reason about. So when a few small sync issues occured, they took an extremely long time to debug. This PR is huge, which I regret. It involves replacing the "parent" relationship that records once had (pointing to the previous record) with a simple index (generally referred to as idx). This also means we had to change the recordindex, which referenced "tails". Tails were the last item in the chain. Now that we use an "array" vs linked list, that logic was also replaced. And is much simpler :D Same for the queries that act on this data. ---- This isn't final - we still need to add 1. Proper server/client error handling, which has been lacking for a while 2. The actual history implementation on top This exists in a branch, just without deletions. Won't be much to add that, I just don't want to make this any larger than it already is The _only_ caveat here is that we basically lose data synced via the old record store. This is the KV data from before. It hasn't been deleted or anything, just no longer hooked up. So it's totally possible to write a migration script. I just need to do that. * update .gitignore * use correct endpoint * fix for stores with length of 1 * use create/delete enum for history store * lint, remove unneeded host_id * remove prints * add command to import old history * add enable/disable switch for record sync * add record sync to auto sync * satisfy the almighty clippy * remove file that I did not mean to commit * feedback
2024-01-05 18:57:49 +01:00
"thiserror",
"time",
"tiny-bip39",
"tokio",
"typed-builder",
"urlencoding",
"uuid",
"whoami",
]
[[package]]
name = "atuin-common"
version = "18.4.0-beta.3"
dependencies = [
"base64 0.22.1",
"directories",
"eyre",
"getrandom",
"lazy_static",
"pretty_assertions",
"rand",
"semver",
"serde",
"sqlx",
"sysinfo",
"thiserror",
"time",
"typed-builder",
"uuid",
]
[[package]]
name = "atuin-daemon"
version = "18.4.0-beta.3"
dependencies = [
"atuin-client",
"atuin-dotfiles",
"atuin-history",
"dashmap",
"eyre",
"hyper-util",
"listenfd",
"prost",
"prost-types",
"protox",
"rand",
"time",
"tokio",
"tokio-stream",
"tonic",
"tonic-build",
"tonic-types",
"tower",
"tracing",
"tracing-subscriber",
"uuid",
]
[[package]]
name = "atuin-dotfiles"
version = "18.4.0-beta.3"
dependencies = [
"atuin-client",
"atuin-common",
"crypto_secretbox",
"eyre",
"rand",
"rmp",
"serde",
"tokio",
]
[[package]]
name = "atuin-history"
version = "18.4.0-beta.3"
dependencies = [
"async-trait",
"atuin-client",
"atuin-common",
"base64 0.22.1",
"crossterm",
"directories",
"divan",
"eyre",
"fs-err",
"futures-util",
"indicatif",
"interim",
"itertools",
"log",
"rand",
"semver",
"serde",
"serde_json",
"sysinfo",
"time",
"tokio",
"tracing",
"tracing-tree",
"unicode-segmentation",
"unicode-width",
"uuid",
"whoami",
]
[[package]]
name = "atuin-server"
version = "18.4.0-beta.3"
dependencies = [
"argon2",
"async-trait",
"atuin-common",
"atuin-server-database",
"axum",
"axum-server",
"base64 0.22.1",
"config",
"eyre",
2022-04-13 19:08:49 +02:00
"fs-err",
"metrics",
"metrics-exporter-prometheus",
"postmark",
"rand",
"reqwest 0.11.27",
"rustls 0.23.12",
2024-06-04 13:05:03 +02:00
"rustls-pemfile 2.1.2",
"semver",
"serde",
"serde_json",
"time",
"tokio",
"tower",
"tower-http",
"tracing",
2021-02-13 18:02:52 +01:00
"uuid",
]
[[package]]
name = "atuin-server-database"
version = "18.4.0-beta.3"
dependencies = [
"async-trait",
"atuin-common",
"eyre",
"serde",
"time",
"tracing",
"uuid",
]
[[package]]
name = "atuin-server-postgres"
version = "18.4.0-beta.3"
dependencies = [
"async-trait",
"atuin-common",
"atuin-server-database",
"eyre",
"futures-util",
"metrics",
"serde",
"sqlx",
"time",
"tracing",
"url",
"uuid",
2021-02-13 13:58:40 +01:00
]
[[package]]
name = "autocfg"
2024-06-04 13:05:03 +02:00
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "0c4b4d0bd25bd0b74681c0ad21497610ce1b7c91b1022cd21c80c6fbdd9476b0"
[[package]]
name = "axum"
2024-06-04 13:05:03 +02:00
version = "0.7.5"
2022-04-13 00:06:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "3a6c9af12842a67734c9a2e355436e5d03b22383ed60cf13cd0c18fbfe3dcbcf"
2022-04-13 00:06:19 +02:00
dependencies = [
"async-trait",
"axum-core",
2022-04-13 00:06:19 +02:00
"bytes",
"futures-util",
2024-03-06 12:55:39 +01:00
"http 1.1.0",
2024-01-28 14:33:45 +01:00
"http-body 1.0.0",
"http-body-util",
"hyper 1.4.1",
2024-01-28 14:33:45 +01:00
"hyper-util",
"itoa",
2022-04-13 00:06:19 +02:00
"matchit",
"memchr",
"mime",
"percent-encoding",
"pin-project-lite",
2023-02-10 10:45:20 +01:00
"rustversion",
2022-04-13 00:06:19 +02:00
"serde",
"serde_json",
2023-02-10 10:45:20 +01:00
"serde_path_to_error",
2022-04-13 00:06:19 +02:00
"serde_urlencoded",
2024-06-04 13:05:03 +02:00
"sync_wrapper 1.0.1",
2022-04-13 00:06:19 +02:00
"tokio",
"tower",
"tower-layer",
"tower-service",
2024-01-28 14:33:45 +01:00
"tracing",
2022-04-13 00:06:19 +02:00
]
[[package]]
name = "axum-core"
2024-01-28 14:33:45 +01:00
version = "0.4.3"
2022-04-13 00:06:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-01-28 14:33:45 +01:00
checksum = "a15c63fd72d41492dc4f497196f5da1fb04fb7529e631d73630d1b491e47a2e3"
2022-04-13 00:06:19 +02:00
dependencies = [
"async-trait",
"bytes",
"futures-util",
2024-03-06 12:55:39 +01:00
"http 1.1.0",
2024-01-28 14:33:45 +01:00
"http-body 1.0.0",
"http-body-util",
2022-04-13 00:06:19 +02:00
"mime",
2024-01-28 14:33:45 +01:00
"pin-project-lite",
2023-02-10 10:45:20 +01:00
"rustversion",
2024-06-04 13:05:03 +02:00
"sync_wrapper 0.1.2",
2022-09-13 21:03:52 +02:00
"tower-layer",
"tower-service",
2024-01-28 14:33:45 +01:00
"tracing",
2022-04-13 00:06:19 +02:00
]
[[package]]
name = "axum-server"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56bac90848f6a9393ac03c63c640925c4b7c8ca21654de40d53f55964667c7d8"
dependencies = [
"arc-swap",
"bytes",
"futures-util",
2024-03-06 12:55:39 +01:00
"http 1.1.0",
2024-01-28 14:33:45 +01:00
"http-body 1.0.0",
"http-body-util",
"hyper 1.4.1",
2024-01-28 14:33:45 +01:00
"hyper-util",
"pin-project-lite",
"rustls 0.23.12",
2024-06-04 13:05:03 +02:00
"rustls-pemfile 2.1.2",
"rustls-pki-types",
"tokio",
"tokio-rustls 0.26.0",
2024-01-28 14:33:45 +01:00
"tower",
"tower-service",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "backtrace"
2024-06-13 15:37:01 +02:00
version = "0.3.73"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-13 15:37:01 +02:00
checksum = "5cc23269a4f8976d0a4d2e7109211a419fe30e8d88d677cd60b6bc79c5732e0a"
2023-08-18 22:45:29 +02:00
dependencies = [
"addr2line",
"cc",
"cfg-if",
"libc",
"miniz_oxide",
"object",
"rustc-demangle",
]
2023-02-10 10:45:20 +01:00
[[package]]
name = "base64"
version = "0.21.7"
2023-02-10 10:45:20 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
2023-02-10 10:45:20 +01:00
[[package]]
name = "base64"
version = "0.22.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
[[package]]
name = "base64ct"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8c3c1a368f70d6cf7302d78f8f7093da241fb8e8807c05cc9e51a125895a6d5b"
[[package]]
name = "beef"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3a8241f3ebb85c056b509d4327ad0358fbbba6ffb340bf388f26350aeda225b1"
[[package]]
name = "bitflags"
2021-12-17 20:00:08 +01:00
version = "1.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 20:00:08 +01:00
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
2023-08-14 10:59:08 +02:00
[[package]]
name = "bitflags"
version = "2.6.0"
2023-08-14 10:59:08 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
2023-08-18 22:45:29 +02:00
dependencies = [
"serde",
]
2023-08-14 10:59:08 +02:00
[[package]]
name = "blake2"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
dependencies = [
"digest",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "block-buffer"
2023-08-18 22:45:29 +02:00
version = "0.10.4"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
2021-02-14 14:28:01 +01:00
dependencies = [
"generic-array",
2021-02-14 14:28:01 +01:00
]
[[package]]
name = "block2"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c132eebf10f5cad5289222520a4a058514204aed6d791f1cf4fe8088b82d15f"
dependencies = [
"objc2",
]
[[package]]
name = "bumpalo"
2024-06-04 13:05:03 +02:00
version = "3.16.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
[[package]]
name = "by_address"
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64fa3c856b712db6612c019f14756e64e4bcea13337a6b33b696333a9eaa2d06"
[[package]]
name = "bytemuck"
version = "1.16.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b236fc92302c97ed75b38da1f4917b5cdda4984745740f153a5d3059e48d725e"
2021-02-14 14:28:01 +01:00
[[package]]
name = "byteorder"
2023-10-25 20:06:59 +02:00
version = "1.5.0"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
2021-02-14 14:28:01 +01:00
[[package]]
name = "bytes"
2024-06-04 13:05:03 +02:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
2021-03-20 01:50:31 +01:00
[[package]]
name = "cassowary"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df8670b8c7b9dae1793364eafadf7239c40d669904660c5960d74cfd80b46a53"
[[package]]
name = "castaway"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0abae9be0aaf9ea96a3b1b8b1b55c602ca751eba1b1500220cea4ecbafe7c0d5"
dependencies = [
"rustversion",
]
2020-10-05 02:12:22 +02:00
[[package]]
name = "cc"
version = "1.1.15"
2020-10-05 02:12:22 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57b6a275aa2903740dc87da01c62040406b8812552e97129a63ea8850a17c6e6"
dependencies = [
"shlex",
]
2020-10-05 02:12:22 +02:00
[[package]]
name = "cfg-if"
2021-02-13 18:02:52 +01:00
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-02-13 18:02:52 +01:00
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
[[package]]
name = "cfg_aliases"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd16c4719339c4530435d38e511904438d07cce7950afa3718a84ac36c10e89e"
[[package]]
name = "chacha20"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c3613f74bd2eac03dad61bd53dbe620703d4371614fe0bc3b9f04dd36fe4e818"
dependencies = [
"cfg-if",
"cipher",
"cpufeatures",
]
[[package]]
name = "chrono"
2024-06-04 13:05:03 +02:00
version = "0.4.38"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "a21f936df1771bf62b77f047b726c4625ff2e8aa607c01ec06e5a05bd8463401"
dependencies = [
"android-tzdata",
"iana-time-zone",
"num-traits",
"serde",
"windows-targets 0.52.6",
]
[[package]]
name = "cipher"
version = "0.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
dependencies = [
"crypto-common",
"inout",
"zeroize",
]
[[package]]
name = "clap"
version = "4.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64acc1846d54c1fe936a78dc189c34e28d3f5afc348403f28ecf53660b9b8462"
dependencies = [
"clap_builder",
2022-04-07 07:32:11 +02:00
"clap_derive",
]
[[package]]
name = "clap_builder"
version = "4.5.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6fb8393d67ba2e7bfaf28a23458e4e2b543cc73a99595511eb207fdb8aede942"
dependencies = [
2023-08-18 22:45:29 +02:00
"anstream",
"anstyle",
"clap_lex",
2024-06-04 13:05:03 +02:00
"strsim",
"terminal_size",
2022-04-07 07:32:11 +02:00
]
[[package]]
name = "clap_complete"
version = "4.5.8"
2022-04-07 07:32:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b4be9c4c4b1f30b78d8a750e0822b6a6102d97e62061c583a6c1dea2dfb33ae"
2022-04-07 07:32:11 +02:00
dependencies = [
"clap",
]
[[package]]
name = "clap_complete_nushell"
version = "4.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1accf1b463dee0d3ab2be72591dccdab8bef314958340447c882c4c72acfe2a3"
dependencies = [
"clap",
"clap_complete",
]
2022-04-07 07:32:11 +02:00
[[package]]
name = "clap_derive"
version = "4.5.8"
2022-04-07 07:32:11 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bac35c6dafb060fd4d275d9a4ffae97917c13a6327903a8be2153cd964f7085"
2022-04-07 07:32:11 +02:00
dependencies = [
"heck",
2022-04-07 07:32:11 +02:00
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "clap_lex"
2024-06-13 15:37:01 +02:00
version = "0.7.1"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-13 15:37:01 +02:00
checksum = "4b82cf0babdbd58558212896d1a4272303a57bdb245c2bf1147185fb45640e70"
2023-08-18 22:45:29 +02:00
[[package]]
name = "clipboard-win"
version = "5.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "15efe7a882b08f34e38556b14f2fb3daa98769d06c7f0c1b076dfd0d983bc892"
dependencies = [
"error-code",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "colorchoice"
2024-06-04 13:05:03 +02:00
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "0b6a852b24ab71dffc585bcb46eaf7959d175cb865a7152e35b348d1b2960422"
[[package]]
name = "colored"
2023-12-16 20:20:40 +01:00
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 20:20:40 +01:00
checksum = "cbf2150cce219b664a8a70df7a1f933836724b503f8a413af9365b4dcc4d90b8"
dependencies = [
"lazy_static",
"windows-sys 0.48.0",
]
[[package]]
name = "compact_str"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f86b9c4c00838774a6d902ef931eff7470720c51d90c2e32cfe15dc304737b3f"
dependencies = [
"castaway",
"cfg-if",
"itoa",
"ryu",
"static_assertions",
]
[[package]]
name = "concurrent-queue"
version = "2.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4ca0197aee26d1ae37445ee532fefce43251d24cc7c166799f4d46817f1d3973"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "condtype"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "baf0a07a401f374238ab8e2f11a104d2851bf9ce711ec69804834de8af45c7af"
[[package]]
name = "config"
2023-12-02 12:12:14 +01:00
version = "0.13.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "23738e11972c7643e4ec947840fc463b6a571afcd3e735bdfce7d03c7a784aca"
dependencies = [
"async-trait",
2021-03-10 22:24:08 +01:00
"lazy_static",
"nom",
"pathdiff",
"serde",
"toml",
]
2021-02-13 20:37:00 +01:00
[[package]]
name = "console"
version = "0.15.8"
2021-02-13 20:37:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb"
2021-02-13 20:37:00 +01:00
dependencies = [
"encode_unicode",
"lazy_static",
2021-02-13 20:37:00 +01:00
"libc",
"unicode-width",
"windows-sys 0.52.0",
2021-02-13 20:37:00 +01:00
]
[[package]]
name = "const-oid"
2023-12-16 20:20:40 +01:00
version = "0.9.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 20:20:40 +01:00
checksum = "c2459377285ad874054d797f3ccebf984978aa39129f6eafde5cdc8315b612f8"
[[package]]
name = "core-foundation"
2023-12-02 12:12:14 +01:00
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "91e195e091a93c46f7102ec7818a2aa394e1e1771c3ab4825963fa03e45afb8f"
dependencies = [
"core-foundation-sys",
"libc",
]
2022-09-13 21:03:52 +02:00
[[package]]
name = "core-foundation-sys"
2023-12-02 12:12:14 +01:00
version = "0.8.6"
2022-09-13 21:03:52 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f"
2022-09-13 21:03:52 +02:00
[[package]]
name = "core-graphics"
version = "0.23.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c07782be35f9e1140080c6b96f0d44b739e2278479f64e02fdab4e32dfd8b081"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"core-graphics-types",
"foreign-types",
"libc",
]
[[package]]
name = "core-graphics-types"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "45390e6114f68f718cc7a830514a96f903cccd70d02a8f6d9f643ac4ba45afaf"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"libc",
]
[[package]]
2021-12-17 20:00:08 +01:00
name = "cpufeatures"
version = "0.2.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53fe5e26ff1b7aef8bca9c6080520cfb8d9333c7568e1829cef191a9723e5504"
2021-12-17 20:00:08 +01:00
dependencies = [
"libc",
]
[[package]]
name = "crc"
2024-06-04 13:05:03 +02:00
version = "3.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "69e6e4d7b33a94f0991c26729976b10ebde1d34c3ee82408fb536164fa10d636"
dependencies = [
"crc-catalog",
]
[[package]]
name = "crc-catalog"
2023-12-02 12:12:14 +01:00
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "19d374276b40fb8bbdee95aef7c7fa6b5316ec764510eb64b8dd0e2ed0d7e7f5"
[[package]]
name = "crc32fast"
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
dependencies = [
"cfg-if",
]
[[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",
]
[[package]]
name = "crossbeam-queue"
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "df0346b5d5e76ac2fe4e327c5fd1118d6be7c51dfb18f9b7922923f287471e35"
dependencies = [
"crossbeam-utils",
]
[[package]]
name = "crossbeam-utils"
2024-06-04 13:05:03 +02:00
version = "0.8.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "22ec99545bb0ed0ea7bb9b8e1e9122ea386ff8a48c0922e43f36d45ab09e0e80"
[[package]]
name = "crossterm"
version = "0.27.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f476fe445d41c9e991fd07515a6f463074b782242ccf4a5b7b1d1012e70824df"
dependencies = [
"bitflags 2.6.0",
"crossterm_winapi",
"filedescriptor",
"libc",
"mio",
2023-08-18 22:45:29 +02:00
"parking_lot",
"serde",
"signal-hook",
"signal-hook-mio",
"winapi",
]
[[package]]
name = "crossterm_winapi"
2023-08-18 22:45:29 +02:00
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "acdd7c62a3665c7f6830a51635d9ac9b23ed385797f70a83bb8bafe9c572ab2b"
dependencies = [
"winapi",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "crypto-common"
2022-09-13 21:03:52 +02:00
version = "0.1.6"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-13 21:03:52 +02:00
checksum = "1bfb12502f3fc46cca1bb51ac28df9d618d813cdc3d2f25b9fe775a34af26bb3"
2021-02-14 14:28:01 +01:00
dependencies = [
"generic-array",
"rand_core",
"typenum",
2021-02-14 14:28:01 +01:00
]
[[package]]
2023-08-18 22:45:29 +02:00
name = "crypto_secretbox"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "b9d6cf87adf719ddf43a805e92c6870a531aedda35ff640442cbaf8674e141e1"
dependencies = [
2023-08-18 22:45:29 +02:00
"aead",
"cipher",
2023-08-18 22:45:29 +02:00
"generic-array",
"poly1305",
"salsa20",
"subtle",
"zeroize",
]
[[package]]
name = "curve25519-dalek"
version = "4.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97fb8b7c4503de7d6ae7b42ab72a5a59857b4c937ec27a3d4539dba95b5ab2be"
dependencies = [
"cfg-if",
2023-08-18 22:45:29 +02:00
"cpufeatures",
"curve25519-dalek-derive",
"digest",
"fiat-crypto",
2023-08-18 22:45:29 +02:00
"rustc_version",
"subtle",
"zeroize",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "curve25519-dalek-derive"
2023-12-02 12:12:14 +01:00
version = "0.1.1"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "f46882e17999c6cc590af592290432be3bce0428cb0d5f8b6715e4dc7b383eb3"
2023-08-18 22:45:29 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2023-08-18 22:45:29 +02:00
]
[[package]]
name = "darling"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f63b86c8a8826a49b8c21f08a2d07338eec8d900540f8630dc76284be802989"
dependencies = [
"darling_core",
"darling_macro",
]
[[package]]
name = "darling_core"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "95133861a8032aaea082871032f5815eb9e98cef03fa916ab4500513994df9e5"
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
2024-06-04 13:05:03 +02:00
"strsim",
"syn",
]
[[package]]
name = "darling_macro"
version = "0.20.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d336a2a514f6ccccaa3e09b02d41d35330c07ddf03a62165fcec10bb561c7806"
dependencies = [
"darling_core",
"quote",
"syn",
]
[[package]]
name = "dashmap"
version = "5.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856"
dependencies = [
"cfg-if",
2024-06-04 13:05:03 +02:00
"hashbrown 0.14.5",
"lock_api",
"once_cell",
"parking_lot_core",
]
[[package]]
name = "der"
2024-06-04 13:05:03 +02:00
version = "0.7.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "f55bf8e7b65898637379c1b74eb1551107c8294ed26d855ceb9fd1a09cfc9bc0"
dependencies = [
"const-oid",
2023-08-18 22:45:29 +02:00
"pem-rfc7468",
"zeroize",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "deranged"
version = "0.3.11"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b42b6fa04a440b495c8b04d0e71b707c585f83cb9cb28cf8cd0d976c315e31b4"
dependencies = [
2023-12-16 20:20:40 +01:00
"powerfmt",
"serde",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "derive-new"
version = "0.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d150dea618e920167e5973d70ae6ece4385b7164e0d799fe7c122dd0a5d912ad"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "diff"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8"
[[package]]
name = "digest"
version = "0.10.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
dependencies = [
"block-buffer",
2023-08-18 22:45:29 +02:00
"const-oid",
"crypto-common",
"subtle",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "directories"
2023-12-16 20:20:40 +01:00
version = "5.0.1"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 20:20:40 +01:00
checksum = "9a49173b84e034382284f27f1af4dcbbd231ffa358c0fe316541a7337f376a35"
2021-02-14 14:28:01 +01:00
dependencies = [
2023-12-16 20:20:40 +01:00
"dirs-sys",
2021-02-14 14:28:01 +01:00
]
[[package]]
name = "dirs"
2023-10-25 20:06:59 +02:00
version = "5.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225"
dependencies = [
2023-12-16 20:20:40 +01:00
"dirs-sys",
2021-02-13 18:02:52 +01:00
]
2023-10-25 20:06:59 +02:00
[[package]]
name = "dirs-sys"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c"
dependencies = [
"libc",
"option-ext",
"redox_users",
"windows-sys 0.48.0",
]
[[package]]
name = "divan"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0d567df2c9c2870a43f3f2bd65aaeb18dbce1c18f217c3e564b4fbaeb3ee56c"
dependencies = [
"cfg-if",
"clap",
"condtype",
"divan-macros",
"libc",
"regex-lite",
]
[[package]]
name = "divan-macros"
version = "0.1.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "27540baf49be0d484d8f0130d7d8da3011c32a44d4fc873368154f1510e574a2"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "dlib"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "330c60081dcc4c72131f8eb70510f1ac07223e5d4163db481a04a0befcffa412"
dependencies = [
"libloading",
]
[[package]]
name = "dotenvy"
2023-08-18 22:45:29 +02:00
version = "0.15.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "1aaf95b3e5c8f23aa320147307562d361db0ae0d51242340f558153b4eb2439b"
[[package]]
name = "downcast-rs"
2024-06-04 13:05:03 +02:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "75b325c5dbd37f80359721ad39aca5a29fb04c89279657cffdda8736d0c0b9d2"
[[package]]
name = "ed25519"
2023-10-25 20:06:59 +02:00
version = "2.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "115531babc129696a58c64a4fef0a8bf9e9698629fb97e9e40767d235cfbcd53"
dependencies = [
"pkcs8",
"signature",
]
[[package]]
name = "ed25519-dalek"
2024-02-26 15:57:32 +01:00
version = "2.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "4a3daa8e81a3963a60642bcc1f90a670680bd4a77535faa384e9d1c79d620871"
dependencies = [
"curve25519-dalek",
"ed25519",
"serde",
"sha2",
2023-12-02 12:12:14 +01:00
"subtle",
"zeroize",
]
2021-03-20 01:50:31 +01:00
[[package]]
name = "either"
version = "1.13.0"
2021-03-20 01:50:31 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
2023-08-18 22:45:29 +02:00
dependencies = [
"serde",
]
2021-03-20 01:50:31 +01:00
2021-02-13 20:37:00 +01: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-06-04 13:05:03 +02:00
version = "0.8.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "b45de904aa0b010bce2ab45264d0631681847fa7b6f2eaa7dab7619943bc4f59"
dependencies = [
"cfg-if",
]
[[package]]
name = "env_filter"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a009aa4810eb158359dda09d0c87378e4bbb89b5a801f016885a4707ba24f7ea"
dependencies = [
"log",
"regex",
]
[[package]]
name = "env_logger"
version = "0.11.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13fa619b91fb2381732789fc5de83b45675e882f66623b7d8cb4f643017018d"
dependencies = [
"anstream",
"anstyle",
"env_filter",
"humantime",
"log",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "equivalent"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
[[package]]
name = "errno"
2024-06-04 13:05:03 +02:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "534c5cf6194dfab3db3242765c03bbe257cf92f22b38f6bc0c58d59108a820ba"
dependencies = [
"libc",
2023-12-02 12:12:14 +01:00
"windows-sys 0.52.0",
]
[[package]]
name = "error-code"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0474425d51df81997e2f90a21591180b38eccf27292d755f3e30750225c175b"
2023-08-18 22:45:29 +02:00
[[package]]
name = "etcetera"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "136d1b5283a1ab77bd9257427ffd09d8667ced0570b6f938942bc7568ed5b943"
dependencies = [
"cfg-if",
"home",
"windows-sys 0.48.0",
]
[[package]]
name = "event-listener"
version = "5.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6032be9bd27023a771701cc49f9f053c751055f71efb2e0ae5c15809093675ba"
dependencies = [
"concurrent-queue",
"parking",
"pin-project-lite",
]
[[package]]
name = "eyre"
2024-02-26 15:57:32 +01:00
version = "0.6.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "7cd915d99f24784cdc19fd37ef22b97e3ff0ae756c7e492e9fbfe897d61e2aec"
dependencies = [
"indenter",
"once_cell",
]
[[package]]
name = "fast-srgb8"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd2e7510819d6fbf51a5545c8f922716ecfb14df168a3242f7d33e0239efe6a1"
2023-08-18 22:45:29 +02:00
[[package]]
name = "fastrand"
2024-06-04 13:05:03 +02:00
version = "2.1.0"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
2023-08-18 22:45:29 +02:00
[[package]]
name = "fdeflate"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4f9bfee30e4dedf0ab8b422f03af778d9612b63f502710fc500a334ebe2de645"
dependencies = [
"simd-adler32",
]
[[package]]
name = "fiat-crypto"
2024-06-04 13:05:03 +02:00
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "28dea519a9695b9977216879a3ebfddf92f1c08c05d984f8996aecd6ecdc811d"
[[package]]
name = "filedescriptor"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7199d965852c3bac31f779ef99cbb4537f80e952e2d6aa0ffeb30cce00f4f46e"
dependencies = [
"libc",
"thiserror",
"winapi",
]
[[package]]
name = "fixedbitset"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ce7134b9999ecaf8bcd65542e436736ef32ddca1b3e06094cb6ec5755203b80"
[[package]]
name = "flate2"
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
dependencies = [
"crc32fast",
"miniz_oxide",
]
[[package]]
name = "flume"
2023-10-25 20:06:59 +02:00
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "55ac459de2512911e4b674ce33cf20befaba382d05b62b008afc1c8b57cbf181"
dependencies = [
"futures-core",
"futures-sink",
"spin",
]
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
name = "foreign-types"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965"
dependencies = [
"foreign-types-macros",
"foreign-types-shared",
]
[[package]]
name = "foreign-types-macros"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "foreign-types-shared"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b"
[[package]]
name = "form_urlencoded"
2023-12-02 12:12:14 +01:00
version = "1.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
dependencies = [
"percent-encoding",
]
2022-04-13 19:08:49 +02:00
[[package]]
name = "fs-err"
2023-12-02 12:12:14 +01:00
version = "2.11.0"
2022-04-13 19:08:49 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
dependencies = [
"autocfg",
]
2022-04-13 19:08:49 +02:00
[[package]]
name = "futures"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "645c6916888f6cb6350d2550b80fb63e734897a8498abe35cfb732b6487804b0"
dependencies = [
"futures-channel",
"futures-core",
"futures-executor",
"futures-io",
"futures-sink",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-channel"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "eac8f7d7865dcb88bd4373ab671c8cf4508703796caa2b1985a9ca867b3fcb78"
dependencies = [
"futures-core",
"futures-sink",
]
[[package]]
name = "futures-core"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dfc6580bb841c5a68e9ef15c77ccc837b40a7504914d52e47b8b0e9bbda25a1d"
[[package]]
name = "futures-executor"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a576fc72ae164fca6b9db127eaa9a9dda0d61316034f33a0a0d4eda41f02b01d"
dependencies = [
"futures-core",
"futures-task",
"futures-util",
]
[[package]]
name = "futures-intrusive"
2023-08-18 22:45:29 +02:00
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "1d930c203dd0b6ff06e0201a4a2fe9149b43c684fd4420555b26d21b1a02956f"
dependencies = [
"futures-core",
"lock_api",
2023-08-18 22:45:29 +02:00
"parking_lot",
]
[[package]]
name = "futures-io"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a44623e20b9681a318efdd71c299b6b222ed6f231972bfe2f224ebad6311f0c1"
2023-02-10 19:14:48 +01:00
[[package]]
name = "futures-macro"
version = "0.3.30"
2023-02-10 19:14:48 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87750cf4b7a4c0625b1529e4c543c2182106e4dedc60a2a6455e00d212c489ac"
2023-02-10 19:14:48 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2023-02-10 19:14:48 +01:00
]
[[package]]
name = "futures-sink"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9fb8e00e87438d937621c1c6269e53f536c14d3fbd6a042bb24879e57d474fb5"
[[package]]
name = "futures-task"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38d84fa142264698cdce1a9f9172cf383a0c82de1bddcf3092901442c4097004"
[[package]]
name = "futures-util"
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d6401deb83407ab3da39eba7e33987a73c3df0c82b4bb5813ee871c19c41d48"
dependencies = [
"futures-channel",
"futures-core",
"futures-io",
2023-02-10 19:14:48 +01:00
"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 = "generic-array"
2023-08-18 22:45:29 +02:00
version = "0.14.7"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
2021-02-14 14:28:01 +01:00
dependencies = [
"serde",
2021-02-14 14:28:01 +01:00
"typenum",
"version_check",
2023-08-18 22:45:29 +02:00
"zeroize",
2021-02-14 14:28:01 +01:00
]
[[package]]
name = "gethostname"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0176e0459c2e4a1fe232f984bca6890e681076abb9934f6cea7c326f3fc47818"
dependencies = [
"libc",
"windows-targets 0.48.5",
]
[[package]]
name = "getrandom"
2024-06-04 13:05:03 +02:00
version = "0.2.15"
2021-02-13 18:02:52 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
2021-02-13 18:02:52 +01:00
dependencies = [
"cfg-if",
2021-02-13 18:02:52 +01:00
"libc",
"wasi",
2021-02-13 18:02:52 +01:00
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "gimli"
2024-06-04 13:05:03 +02:00
version = "0.29.0"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "40ecd4077b5ae9fd2e9e169b102c6c330d0605168eb0e8bf79952b256dbefffd"
2023-08-18 22:45:29 +02:00
[[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",
2024-03-06 12:55:39 +01:00
"http 0.2.12",
2024-06-04 13:05:03 +02:00
"indexmap 2.2.6",
"slab",
"tokio",
2022-04-13 00:06:19 +02:00
"tokio-util",
"tracing",
]
2024-01-28 14:33:45 +01:00
[[package]]
name = "h2"
2024-06-04 13:05:03 +02:00
version = "0.4.5"
2024-01-28 14:33:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "fa82e28a107a8cc405f0839610bdc9b15f1e25ec7d696aa5cf173edbcb1486ab"
2024-01-28 14:33:45 +01:00
dependencies = [
2024-06-04 13:05:03 +02:00
"atomic-waker",
2024-01-28 14:33:45 +01:00
"bytes",
"fnv",
"futures-core",
"futures-sink",
2024-03-06 12:55:39 +01:00
"http 1.1.0",
2024-06-04 13:05:03 +02:00
"indexmap 2.2.6",
2024-01-28 14:33:45 +01: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"
2023-08-18 22:45:29 +02:00
[[package]]
name = "hashbrown"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ff8ae62cd3a9102e5637afc8452c55acf3844001bd5374e0b0bd7b6616c038"
dependencies = [
"ahash",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "hashbrown"
2024-06-04 13:05:03 +02:00
version = "0.14.5"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
dependencies = [
"ahash",
2023-08-18 22:45:29 +02:00
"allocator-api2",
]
2021-02-13 18:02:52 +01:00
[[package]]
name = "hashlink"
version = "0.9.1"
2021-02-13 18:02:52 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6ba4ff7128dee98c7dc9794b6a411377e1404dba1c97deb8d1a55297bd25d8af"
2021-02-13 18:02:52 +01:00
dependencies = [
2024-06-04 13:05:03 +02:00
"hashbrown 0.14.5",
2021-02-13 18:02:52 +01:00
]
[[package]]
name = "heck"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
[[package]]
name = "hermit-abi"
2024-03-06 12:55:39 +01:00
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "d231dfb89cfffdbc30e7fc41579ed6066ad03abda9e567ccafae602b97ec5024"
2021-02-14 14:28:01 +01:00
[[package]]
name = "hex"
version = "0.4.3"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70"
2021-02-14 14:28:01 +01:00
[[package]]
name = "hkdf"
2023-12-16 20:20:40 +01:00
version = "0.12.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 20:20:40 +01:00
checksum = "7b5f8eb2ad728638ea2c7d47a21db23b7b58a72ed6a38256b8a1849f15fbbdf7"
dependencies = [
"hmac",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "hmac"
version = "0.12.1"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c49c37c09c17a53d937dfbb742eb3a961d65a994e6bcdcf37e7399d0cc8ab5e"
2021-02-14 14:28:01 +01:00
dependencies = [
"digest",
2021-02-14 14:28:01 +01:00
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "home"
2023-12-16 20:20:40 +01:00
version = "0.5.9"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 20:20:40 +01:00
checksum = "e3d1354bf6b7235cb4a0576c2619fd4ed18183f689b12b006a0ee7329eeff9a5"
2023-08-18 22:45:29 +02:00
dependencies = [
2023-12-16 20:20:40 +01:00
"windows-sys 0.52.0",
2023-08-18 22:45:29 +02:00
]
2021-02-13 21:21:49 +01:00
[[package]]
name = "http"
2024-03-06 12:55:39 +01:00
version = "0.2.12"
2021-02-13 21:21:49 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
2021-02-13 21:21:49 +01:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http"
2024-03-06 12:55:39 +01:00
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
dependencies = [
"bytes",
"fnv",
"itoa",
]
[[package]]
name = "http-body"
2023-12-16 20:20:40 +01:00
version = "0.4.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 20:20:40 +01:00
checksum = "7ceab25649e9960c0311ea418d17bee82c0dcec1bd053b5f9a66e265a693bed2"
dependencies = [
"bytes",
2024-03-06 12:55:39 +01:00
"http 0.2.12",
"pin-project-lite",
2021-02-13 21:21:49 +01:00
]
[[package]]
name = "http-body"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1cac85db508abc24a2e48553ba12a996e87244a0395ce011e62b37158745d643"
dependencies = [
"bytes",
2024-03-06 12:55:39 +01:00
"http 1.1.0",
]
2022-04-13 00:06:19 +02:00
[[package]]
2024-01-28 14:33:45 +01:00
name = "http-body-util"
2024-06-13 15:37:01 +02:00
version = "0.1.2"
2022-04-13 00:06:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-13 15:37:01 +02:00
checksum = "793429d76616a256bcb62c2a2ec2bed781c8307e797e2598c50010f2bee2544f"
2024-01-28 14:33:45 +01:00
dependencies = [
"bytes",
2024-06-13 15:37:01 +02:00
"futures-util",
2024-03-06 12:55:39 +01:00
"http 1.1.0",
2024-01-28 14:33:45 +01:00
"http-body 1.0.0",
"pin-project-lite",
]
2022-04-13 00:06:19 +02:00
2021-02-14 14:28:01 +01:00
[[package]]
name = "httparse"
version = "1.9.4"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fcc0b4a115bf80b728eb8ea024ad5bd707b615bfed49e0665b6e0f86fd082d9"
2021-02-14 14:28:01 +01:00
[[package]]
name = "httpdate"
2023-08-18 22:45:29 +02:00
version = "1.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9"
[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"
[[package]]
name = "hyper"
version = "0.14.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a152ddd61dfaec7273fe8419ab357f33aee0d914c5f4efbf0d96fa749eea5ec9"
dependencies = [
"bytes",
"futures-channel",
"futures-core",
"futures-util",
"h2 0.3.26",
2024-03-06 12:55:39 +01:00
"http 0.2.12",
"http-body 0.4.6",
"httparse",
"httpdate",
"itoa",
2021-12-17 20:00:08 +01:00
"pin-project-lite",
"socket2",
"tokio",
"tower-service",
"tracing",
"want",
]
[[package]]
name = "hyper"
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "50dfd22e0e76d0f662d429a5f80fcaf3855009297eab6a0a9f8543834744ba05"
dependencies = [
"bytes",
2024-01-28 14:33:45 +01:00
"futures-channel",
"futures-util",
2024-06-04 13:05:03 +02:00
"h2 0.4.5",
2024-03-06 12:55:39 +01:00
"http 1.1.0",
"http-body 1.0.0",
2024-01-28 14:33:45 +01:00
"httparse",
"httpdate",
"itoa",
"pin-project-lite",
2024-02-26 15:57:32 +01:00
"smallvec",
"tokio",
"want",
]
[[package]]
name = "hyper-rustls"
2023-12-02 12:12:14 +01:00
version = "0.24.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "ec3efd23720e2049821a693cbc7e65ea87c72f1c58ff2f9522ff332b1491e590"
dependencies = [
2023-08-18 22:45:29 +02:00
"futures-util",
2024-03-06 12:55:39 +01:00
"http 0.2.12",
"hyper 0.14.30",
"rustls 0.21.12",
"tokio",
"tokio-rustls 0.24.1",
]
[[package]]
name = "hyper-rustls"
version = "0.27.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5ee4be2c948921a1a5320b629c4193916ed787a7f7f293fd3f7f5a6c9de74155"
dependencies = [
"futures-util",
"http 1.1.0",
"hyper 1.4.1",
"hyper-util",
"rustls 0.23.12",
"rustls-pki-types",
"tokio",
"tokio-rustls 0.26.0",
"tower-service",
"webpki-roots",
2021-02-14 14:28:01 +01:00
]
[[package]]
name = "hyper-timeout"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3203a961e5c83b6f5498933e78b6b263e208c197b63e9c6c53cc82ffd3f63793"
dependencies = [
"hyper 1.4.1",
"hyper-util",
"pin-project-lite",
"tokio",
"tower-service",
]
2024-01-28 14:33:45 +01:00
[[package]]
name = "hyper-util"
version = "0.1.6"
2024-01-28 14:33:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ab92f4f49ee4fb4f997c784b7a2e0fa70050211e0b6a287f898c3c9785ca956"
2024-01-28 14:33:45 +01:00
dependencies = [
"bytes",
"futures-channel",
2024-01-28 14:33:45 +01:00
"futures-util",
2024-03-06 12:55:39 +01:00
"http 1.1.0",
2024-01-28 14:33:45 +01:00
"http-body 1.0.0",
"hyper 1.4.1",
2024-01-28 14:33:45 +01:00
"pin-project-lite",
"socket2",
2024-01-28 14:33:45 +01:00
"tokio",
"tower",
"tower-service",
"tracing",
2024-01-28 14:33:45 +01:00
]
[[package]]
name = "iana-time-zone"
2024-02-26 15:57:32 +01:00
version = "0.1.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "e7ffbb5a1b541ea2561f8c41c087286cc091e21e556a4f09a8f6cbf17b69b141"
dependencies = [
"android_system_properties",
"core-foundation-sys",
"iana-time-zone-haiku",
"js-sys",
"wasm-bindgen",
"windows-core",
]
[[package]]
name = "iana-time-zone-haiku"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f"
dependencies = [
"cc",
]
[[package]]
name = "ident_case"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
[[package]]
name = "idna"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
dependencies = [
"unicode-bidi",
"unicode-normalization",
]
[[package]]
name = "image"
version = "0.25.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fd54d660e773627692c524beaad361aca785a4f9f5730ce91f42aabe5bce3d11"
dependencies = [
"bytemuck",
"byteorder",
"num-traits",
"png",
"tiff",
]
[[package]]
name = "indenter"
version = "0.3.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce23b50ad8242c51a442f3ff322d56b02f08852c77e4c0b4d3fd684abc89c683"
2021-02-14 14:28:01 +01:00
[[package]]
name = "indexmap"
2023-08-18 22:45:29 +02:00
version = "1.9.3"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
2021-02-14 14:28:01 +01:00
dependencies = [
"autocfg",
2023-08-18 22:45:29 +02:00
"hashbrown 0.12.3",
"serde",
2023-08-18 22:45:29 +02:00
]
[[package]]
name = "indexmap"
2024-06-04 13:05:03 +02:00
version = "2.2.6"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "168fb715dda47215e360912c096649d23d58bf392ac62f73919e831745e40f26"
2023-08-18 22:45:29 +02:00
dependencies = [
"equivalent",
2024-06-04 13:05:03 +02:00
"hashbrown 0.14.5",
"serde",
2021-02-14 14:28:01 +01:00
]
2021-02-13 20:37:00 +01:00
[[package]]
name = "indicatif"
2024-02-26 15:57:32 +01:00
version = "0.17.8"
2021-02-13 20:37:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "763a5a8f45087d6bcea4222e7b72c291a054edf80e4ef6efd2a4979878c7bea3"
2021-02-13 20:37:00 +01:00
dependencies = [
"console",
"instant",
2021-02-13 20:37:00 +01:00
"number_prefix",
"portable-atomic",
"unicode-width",
2021-02-13 20:37:00 +01:00
]
[[package]]
name = "inout"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a0c10553d664a4d0bcff9f4215d0aac67a639cc68ef660840afe309b807bc9f5"
dependencies = [
"generic-array",
]
[[package]]
name = "instant"
2024-06-04 13:05:03 +02:00
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "e0242819d153cba4b4b05a5a8f2a7e9bbf97b6055b2a002b395c96b5ff3c0222"
dependencies = [
"cfg-if",
]
[[package]]
name = "interim"
2024-06-04 13:05:03 +02:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "9afd0f0bff60c0e845844b6ee665e07990541ef3b70d8cd21861cf85b69fbef4"
dependencies = [
2024-06-13 15:37:01 +02:00
"logos",
"time",
]
[[package]]
name = "ipnet"
2023-10-25 20:06:59 +02:00
version = "2.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "8f518f335dce6725a761382244631d86cf0ccb2863413590b31338feb467f9c3"
2024-06-04 13:05:03 +02:00
[[package]]
name = "is_terminal_polyfill"
version = "1.70.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f8478577c03552c21db0e2724ffb8986a5ce7af88107e6be5d2ee6e158c12800"
[[package]]
name = "iso8601"
version = "0.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "924e5d73ea28f59011fec52a0d12185d496a9b075d360657aed2a5707f701153"
dependencies = [
"nom",
]
[[package]]
name = "itertools"
version = "0.13.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "413ee7dfc52ee1a4949ceeb7dbc8a33f2d6c088194d9f922fb8318faf1f01186"
dependencies = [
"either",
]
2021-12-17 20:00:08 +01:00
[[package]]
name = "itoa"
2024-06-04 13:05:03 +02:00
version = "1.0.11"
2021-12-17 20:00:08 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
[[package]]
name = "jpeg-decoder"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f5d4a7da358eff58addd2877a45865158f0d78c911d43a5784ceb7bbf52833b0"
[[package]]
name = "js-sys"
2024-03-06 12:55:39 +01:00
version = "0.3.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
dependencies = [
"wasm-bindgen",
]
[[package]]
name = "lazy_static"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
2023-08-18 22:45:29 +02:00
dependencies = [
"spin",
2023-08-18 22:45:29 +02:00
]
[[package]]
name = "libc"
2024-06-04 13:05:03 +02:00
version = "0.2.155"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "97b3888a4aecf77e811145cadf6eef5901f4782c53886191b2f693f24761847c"
[[package]]
name = "libloading"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e310b3a6b5907f99202fcdb4960ff45b93735d7c7d96b760fcff8db2dc0e103d"
dependencies = [
"cfg-if",
"windows-targets 0.52.6",
]
[[package]]
name = "libm"
2023-10-25 20:06:59 +02:00
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058"
2023-12-02 12:12:14 +01:00
[[package]]
name = "libredox"
2024-06-04 13:05:03 +02:00
version = "0.1.3"
2023-12-02 12:12:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "c0ff37bd590ca25063e35af745c343cb7a0271906fb7b37e4813e8f79f00268d"
2023-12-02 12:12:14 +01:00
dependencies = [
"bitflags 2.6.0",
2023-12-02 12:12:14 +01:00
"libc",
]
[[package]]
name = "libsqlite3-sys"
version = "0.30.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2e99fb7a497b1e3339bc746195567ed8d3e24945ecd636e3619d20b9de9e9149"
dependencies = [
2020-10-05 02:12:22 +02:00
"cc",
"pkg-config",
"vcpkg",
]
[[package]]
name = "linux-raw-sys"
2024-06-04 13:05:03 +02:00
version = "0.4.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "78b3ae25bc7c8c38cec158d1f2757ee79e9b3740fbc7ccf0e59e4b08d793fa89"
[[package]]
name = "listenfd"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0500463acd96259d219abb05dc57e5a076ef04b2db9a2112846929b5f174c96"
dependencies = [
"libc",
"uuid",
"winapi",
]
[[package]]
name = "lock_api"
2024-06-04 13:05:03 +02:00
version = "0.4.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
dependencies = [
"autocfg",
"scopeguard",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "log"
version = "0.4.22"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
2021-02-14 14:28:01 +01:00
[[package]]
name = "logos"
2024-06-04 13:05:03 +02:00
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "161971eb88a0da7ae0c333e1063467c5b5727e7fb6b710b8db4814eade3a42e8"
dependencies = [
2024-06-13 15:37:01 +02:00
"logos-derive",
]
[[package]]
2023-10-25 20:06:59 +02:00
name = "logos-codegen"
2024-06-04 13:05:03 +02:00
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "8e31badd9de5131fdf4921f6473d457e3dd85b11b7f091ceb50e4df7c3eeb12a"
dependencies = [
"beef",
"fnv",
2024-06-04 13:05:03 +02:00
"lazy_static",
"proc-macro2",
"quote",
2024-06-13 15:37:01 +02:00
"regex-syntax 0.8.4",
"syn",
2023-10-25 20:06:59 +02:00
]
[[package]]
name = "logos-derive"
2024-06-04 13:05:03 +02:00
version = "0.14.0"
2023-10-25 20:06:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "1c2a69b3eb68d5bd595107c9ee58d7e07fe2bb5e360cc85b0f084dedac80de0a"
2023-10-25 20:06:59 +02:00
dependencies = [
2024-06-13 15:37:01 +02:00
"logos-codegen",
]
[[package]]
name = "lru"
2024-02-26 15:57:32 +01:00
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "d3262e75e648fce39813cb56ac41f3c3e3f65217ebf3844d818d1f9398cfb0dc"
dependencies = [
2024-06-04 13:05:03 +02:00
"hashbrown 0.14.5",
]
[[package]]
name = "mach2"
version = "0.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "19b955cdeb2a02b9117f121ce63aa52d08ade45de53e48fe6a38b39c10f6f709"
dependencies = [
"libc",
]
[[package]]
name = "matchers"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8263075bb86c5a1b1427b5ae862e8889656f126e9f77c484496e8b47cf5c5558"
dependencies = [
"regex-automata 0.1.10",
]
2022-04-13 00:06:19 +02:00
[[package]]
name = "matchit"
2023-10-25 20:06:59 +02:00
version = "0.7.3"
2022-04-13 00:06:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "0e7465ac9959cc2b1404e8e2367b43684a6d13790fe23056cc8c6c5a6b7bcb94"
2022-04-13 00:06:19 +02:00
2021-02-13 21:21:49 +01:00
[[package]]
name = "md-5"
2023-10-25 20:06:59 +02:00
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "d89e7ee0cfbedfc4da3340218492196241d89eefb6dab27de5df917a6d2e78cf"
dependencies = [
2023-10-25 20:06:59 +02:00
"cfg-if",
"digest",
]
[[package]]
name = "memchr"
version = "2.7.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
[[package]]
name = "metrics"
version = "0.21.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fde3af1a009ed76a778cb84fdef9e7dbbdf5775ae3e4cc1f434a6a307f6f76c5"
dependencies = [
"ahash",
"metrics-macros",
"portable-atomic",
]
[[package]]
name = "metrics-exporter-prometheus"
2023-12-16 20:20:40 +01:00
version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 20:20:40 +01:00
checksum = "1d4fa7ce7c4862db464a37b0b31d89bca874562f034bd7993895572783d02950"
dependencies = [
"base64 0.21.7",
"hyper 0.14.30",
"indexmap 1.9.3",
"ipnet",
"metrics",
"metrics-util",
"quanta",
"thiserror",
"tokio",
"tracing",
]
[[package]]
name = "metrics-macros"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38b4faf00617defe497754acde3024865bc143d44a86799b24e191ecff91354f"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "metrics-util"
version = "0.15.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4de2ed6e491ed114b40b732e4d1659a9d53992ebd87490c44a6ffe23739d973e"
dependencies = [
"crossbeam-epoch",
"crossbeam-utils",
"hashbrown 0.13.1",
"metrics",
"num_cpus",
"quanta",
"sketches-ddsketch",
]
[[package]]
name = "miette"
version = "7.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4edc8853320c2a0dab800fbda86253c8938f6ea88510dc92c5f1ed20e794afc1"
dependencies = [
"cfg-if",
"miette-derive",
"thiserror",
"unicode-width",
]
[[package]]
name = "miette-derive"
version = "7.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dcf09caffaac8068c346b6df2a7fc27a177fd20b39421a39ce0a211bde679a6c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "mime"
2023-08-18 22:45:29 +02:00
version = "0.3.17"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
2021-02-14 14:28:01 +01:00
2021-12-17 20:00:08 +01:00
[[package]]
name = "minimal-lexical"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
2023-08-18 22:45:29 +02:00
[[package]]
name = "miniz_oxide"
version = "0.7.4"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8a240ddb74feaf34a79a7add65a741f3167852fba007066dcac1ca548d89c08"
2023-08-18 22:45:29 +02:00
dependencies = [
"adler",
"simd-adler32",
2023-08-18 22:45:29 +02:00
]
[[package]]
name = "minspan"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1269a17ac308ae0b906ec1b0ff8062fd0c82f18cc2956faa367302ec3380f4e8"
[[package]]
name = "mio"
version = "0.8.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4a650543ca06a924e8b371db273b2756685faae30f8487da1b56505a8f78b0c"
dependencies = [
"libc",
"log",
"wasi",
2023-08-18 22:45:29 +02:00
"windows-sys 0.48.0",
]
[[package]]
name = "multimap"
2024-06-04 13:05:03 +02:00
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "defc4c55412d89136f966bbb339008b474350e5e6e78d2714439c386b3137a03"
[[package]]
name = "nix"
version = "0.28.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ab2156c4fce2f8df6c499cc1c763e4394b7482525bf2a9701c9d79d215f519e4"
dependencies = [
"bitflags 2.6.0",
"cfg-if",
"cfg_aliases",
"libc",
]
[[package]]
name = "nom"
2023-08-18 22:45:29 +02:00
version = "7.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
dependencies = [
"memchr",
2021-12-17 20:00:08 +01:00
"minimal-lexical",
]
[[package]]
name = "ntapi"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e8a3895c6391c39d7fe7ebc444a87eb2991b2a0bc718fdabd071eec617fc68e4"
dependencies = [
"winapi",
]
[[package]]
name = "nu-ansi-term"
version = "0.46.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a8165726e8236064dbb45459242600304b42a5ea24ee2948e18e023bf7ba84"
dependencies = [
"overload",
"winapi",
]
2023-12-16 20:20:40 +01:00
[[package]]
name = "nu-ansi-term"
version = "0.50.0"
2023-12-16 20:20:40 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd2800e1520bdc966782168a627aa5d1ad92e33b984bf7c7615d31280c83ff14"
2023-12-16 20:20:40 +01:00
dependencies = [
"windows-sys 0.48.0",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "num-bigint-dig"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dc84195820f291c7697304f3cbdadd1cb7199c0efc917ff5eafd71225c136151"
dependencies = [
"byteorder",
"lazy_static",
"libm",
"num-integer",
"num-iter",
"num-traits",
"rand",
2023-08-18 22:45:29 +02:00
"smallvec",
"zeroize",
]
2024-02-26 15:57:32 +01:00
[[package]]
name = "num-conv"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "51d515d32fb182ee37cda2ccdcb92950d6a3c2893aa280e540671c2cd0f3b1d9"
[[package]]
name = "num-integer"
2024-02-26 15:57:32 +01:00
version = "0.1.46"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "7969661fd2958a5cb096e56c8e1ad0444ac2bbcd0061bd28660485a44879858f"
dependencies = [
"num-traits",
]
[[package]]
name = "num-iter"
2024-06-04 13:05:03 +02:00
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "1429034a0490724d0075ebb2bc9e875d6503c3cf69e235a8941aa757d83ef5bf"
dependencies = [
"autocfg",
"num-integer",
"num-traits",
]
[[package]]
name = "num-traits"
2024-06-04 13:05:03 +02:00
version = "0.2.19"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
dependencies = [
"autocfg",
2023-08-18 22:45:29 +02:00
"libm",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "num_cpus"
2023-08-18 22:45:29 +02:00
version = "1.16.0"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
2021-02-14 14:28:01 +01:00
dependencies = [
2023-08-18 22:45:29 +02:00
"hermit-abi",
2021-02-14 14:28:01 +01:00
"libc",
]
[[package]]
name = "num_threads"
2024-02-26 15:57:32 +01:00
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "5c7398b9c8b70908f6371f47ed36737907c87c52af34c268fed0bf0ceb92ead9"
dependencies = [
"libc",
]
2021-02-13 20:37:00 +01:00
[[package]]
name = "number_prefix"
version = "0.4.0"
2021-02-13 20:37:00 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"
2021-02-13 20:37:00 +01:00
[[package]]
name = "objc-sys"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cdb91bdd390c7ce1a8607f35f3ca7151b65afc0ff5ff3b34fa350f7d7c7e4310"
[[package]]
name = "objc2"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "46a785d4eeff09c14c487497c162e92766fbb3e4059a71840cecc03d9a50b804"
dependencies = [
"objc-sys",
"objc2-encode",
]
[[package]]
name = "objc2-app-kit"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4e89ad9e3d7d297152b17d39ed92cd50ca8063a89a9fa569046d41568891eff"
dependencies = [
"bitflags 2.6.0",
"block2",
"libc",
"objc2",
"objc2-core-data",
"objc2-core-image",
"objc2-foundation",
"objc2-quartz-core",
]
[[package]]
name = "objc2-core-data"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "617fbf49e071c178c0b24c080767db52958f716d9eabdf0890523aeae54773ef"
dependencies = [
"bitflags 2.6.0",
"block2",
"objc2",
"objc2-foundation",
]
[[package]]
name = "objc2-core-image"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55260963a527c99f1819c4f8e3b47fe04f9650694ef348ffd2227e8196d34c80"
dependencies = [
"block2",
"objc2",
"objc2-foundation",
"objc2-metal",
]
[[package]]
name = "objc2-encode"
version = "4.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7891e71393cd1f227313c9379a26a584ff3d7e6e7159e988851f0934c993f0f8"
[[package]]
name = "objc2-foundation"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0ee638a5da3799329310ad4cfa62fbf045d5f56e3ef5ba4149e7452dcf89d5a8"
dependencies = [
"bitflags 2.6.0",
"block2",
"libc",
"objc2",
]
[[package]]
name = "objc2-metal"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd0cba1276f6023976a406a14ffa85e1fdd19df6b0f737b063b95f6c8c7aadd6"
dependencies = [
"bitflags 2.6.0",
"block2",
"objc2",
"objc2-foundation",
]
[[package]]
name = "objc2-quartz-core"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e42bee7bff906b14b167da2bac5efe6b6a07e6f7c0a21a7308d40c960242dc7a"
dependencies = [
"bitflags 2.6.0",
"block2",
"objc2",
"objc2-foundation",
"objc2-metal",
]
[[package]]
2023-08-18 22:45:29 +02:00
name = "object"
version = "0.36.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "081b846d1d56ddfc18fdf1a922e4f6e07a11768ea1b92dec44e42b72712ccfce"
2023-08-18 22:45:29 +02:00
dependencies = [
"memchr",
]
[[package]]
2023-08-18 22:45:29 +02:00
name = "once_cell"
2023-12-16 20:20:40 +01:00
version = "1.19.0"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 20:20:40 +01:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2023-08-18 22:45:29 +02:00
[[package]]
name = "opaque-debug"
2024-03-06 12:55:39 +01:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "c08d65885ee38876c4f86fa503fb49d7b507c2b62552df7c70b2fce627e06381"
[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"
2023-10-25 20:06:59 +02:00
[[package]]
name = "option-ext"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d"
[[package]]
name = "os_pipe"
2024-06-13 15:37:01 +02:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-13 15:37:01 +02:00
checksum = "29d73ba8daf8fac13b0501d1abeddcfe21ba7401ada61a819144b6c2a4f32209"
dependencies = [
"libc",
"windows-sys 0.52.0",
]
[[package]]
name = "overload"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b15813163c1d831bf4a13c3610c05c0d03b39feb07f7e09fa234dac9b15aaf39"
[[package]]
name = "palette"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4cbf71184cc5ecc2e4e1baccdb21026c20e5fc3dcf63028a086131b3ab00b6e6"
dependencies = [
"approx",
"fast-srgb8",
"palette_derive",
"phf",
"serde",
]
[[package]]
name = "palette_derive"
version = "0.7.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f5030daf005bface118c096f510ffb781fc28f9ab6a32ab224d8631be6851d30"
dependencies = [
"by_address",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "parking"
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bb813b8af86854136c6922af0598d719255ecb2179515e6e7730d468f05c9cae"
[[package]]
name = "parking_lot"
2024-06-04 13:05:03 +02:00
version = "0.12.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
dependencies = [
"lock_api",
2023-08-18 22:45:29 +02:00
"parking_lot_core",
]
[[package]]
name = "parking_lot_core"
2024-06-04 13:05:03 +02:00
version = "0.9.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
dependencies = [
"cfg-if",
"libc",
"redox_syscall 0.5.2",
"smallvec",
"windows-targets 0.52.6",
]
[[package]]
name = "password-hash"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "346f04948ba92c43e8469c1ee6736c7563d71012b17d40745260fe106aac2166"
dependencies = [
"base64ct",
"rand_core",
"subtle",
]
[[package]]
name = "paste"
2024-06-04 13:05:03 +02:00
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
[[package]]
name = "pathdiff"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8835116a5c179084a830efb3adc117ab007512b535bc1a21c991d3b32a6b44dd"
2023-02-06 20:22:58 +01:00
[[package]]
name = "pbkdf2"
version = "0.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "83a0692ec44e4cf1ef28ca317f14f8f07da2d95ec3fa01f86e4467b725e60917"
dependencies = [
"digest",
2023-02-06 20:22:58 +01:00
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "pem-rfc7468"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "88b39c9bfcfc231068454382784bb460aae594343fb030d46e9f50a645418412"
dependencies = [
"base64ct",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "percent-encoding"
2023-12-02 12:12:14 +01:00
version = "2.3.1"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2021-02-14 14:28:01 +01:00
[[package]]
name = "petgraph"
2024-06-04 13:05:03 +02:00
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "b4c5cc86750666a3ed20bdaf5ca2a0344f9c67674cae0515bec2da16fbaa47db"
dependencies = [
"fixedbitset",
2024-06-04 13:05:03 +02:00
"indexmap 2.2.6",
]
[[package]]
name = "phf"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc"
dependencies = [
"phf_macros",
"phf_shared",
]
[[package]]
name = "phf_generator"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0"
dependencies = [
"phf_shared",
"rand",
]
[[package]]
name = "phf_macros"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b"
dependencies = [
"phf_generator",
"phf_shared",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "phf_shared"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b"
dependencies = [
"siphasher",
]
[[package]]
name = "pin-project"
2024-03-06 12:55:39 +01:00
version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "b6bf43b791c5b9e34c3d182969b4abb522f9343702850a2e57f460d00d09b4b3"
dependencies = [
"pin-project-internal",
]
[[package]]
name = "pin-project-internal"
2024-03-06 12:55:39 +01:00
version = "1.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "2f38a4412a78282e09a2cf38d195ea5420d15ba0602cb375210efbc877243965"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "pin-project-lite"
2024-06-04 13:05:03 +02:00
version = "0.2.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "bda66fc9667c18cb2758a2ac84d1167245054bcf85d5d1aaa6923f45801bdd02"
[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
2023-08-18 22:45:29 +02:00
[[package]]
name = "pkcs1"
version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c8ffb9f10fa047879315e6625af03c164b16962a5368d724ed16323b68ace47f"
dependencies = [
"der",
"pkcs8",
"spki",
]
[[package]]
name = "pkcs8"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f950b2377845cebe5cf8b5165cb3cc1a5e0fa5cfa3e1f7f55707d8fd82e0a7b7"
dependencies = [
"der",
"spki",
]
[[package]]
name = "pkg-config"
2024-02-26 15:57:32 +01:00
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
[[package]]
name = "png"
version = "0.17.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "06e4b0d3d1312775e782c86c91a111aa1f910cbb65e1337f9975b5f9a554b5e1"
dependencies = [
"bitflags 1.3.2",
"crc32fast",
"fdeflate",
"flate2",
"miniz_oxide",
]
[[package]]
name = "poly1305"
version = "0.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8159bd90725d2df49889a078b54f4f79e87f1f8a8444194cdca81d38f5393abf"
dependencies = [
"cpufeatures",
"opaque-debug",
"universal-hash",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "portable-atomic"
2023-12-16 20:20:40 +01:00
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0"
[[package]]
name = "postmark"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8c1982389836857cc378c3f46992bb6712464aa30567831ba0985495b0f6d83"
dependencies = [
"async-trait",
"bytes",
"http 1.1.0",
"reqwest 0.12.5",
"serde",
"serde_json",
"thiserror",
"typed-builder",
"url",
]
2023-12-16 20:20:40 +01:00
[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 20:20:40 +01:00
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"
[[package]]
name = "ppv-lite86"
2023-08-18 22:45:29 +02:00
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"
2021-02-14 14:28:01 +01:00
[[package]]
name = "pretty_assertions"
2023-08-18 22:45:29 +02:00
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "af7cee1a6c8a5b9208b3cb1061f10c0cb689087b3d8ce85fb9d2dd7a29b6ba66"
dependencies = [
"diff",
"yansi",
]
[[package]]
name = "prettyplease"
2024-06-04 13:05:03 +02:00
version = "0.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "5f12335488a2f3b0a83b14edad48dca9879ce89b2edd10e80237e4e852dd645e"
dependencies = [
"proc-macro2",
"syn",
]
[[package]]
name = "proc-macro2"
version = "1.0.86"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5e719e8df665df0d1c8fbfd238015744736151d4445ec0836b8e628aae103b77"
dependencies = [
"unicode-ident",
]
[[package]]
name = "prost"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e13db3d3fde688c61e2446b4d843bc27a7e8af269a69440c0308021dc92333cc"
dependencies = [
"bytes",
"prost-derive",
]
[[package]]
name = "prost-build"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5bb182580f71dd070f88d01ce3de9f4da5021db7115d2e1c3605a754153b77c1"
dependencies = [
"bytes",
"heck",
"itertools",
"log",
"multimap",
"once_cell",
"petgraph",
"prettyplease",
"prost",
"prost-types",
"regex",
"syn",
"tempfile",
]
[[package]]
name = "prost-derive"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "18bec9b0adc4eba778b33684b7ba3e7137789434769ee3ce3930463ef904cfca"
dependencies = [
"anyhow",
"itertools",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "prost-reflect"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55a6a9143ae25c25fa7b6a48d6cc08b10785372060009c25140a4e7c340e95af"
dependencies = [
2024-06-13 15:37:01 +02:00
"logos",
"miette",
"once_cell",
"prost",
"prost-types",
]
[[package]]
name = "prost-types"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cee5168b05f49d4b0ca581206eb14a7b22fafd963efe729ac48eb03266e25cc2"
dependencies = [
"prost",
]
[[package]]
name = "protox"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70cdc4ca5487c1fddc30fa2bebba28c0f250f80c944190652ccaaeb157349175"
dependencies = [
"bytes",
"miette",
"prost",
"prost-reflect",
"prost-types",
"protox-parse",
"thiserror",
]
[[package]]
name = "protox-parse"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a3a462d115462c080ae000c29a47f0b3985737e5d3a995fcdbcaa5c782068dde"
dependencies = [
2024-06-13 15:37:01 +02:00
"logos",
"miette",
"prost-types",
"thiserror",
]
[[package]]
name = "quanta"
version = "0.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a17e662a7a8291a865152364c20c7abc5e60486ab2001e8ec10b24862de0b9ab"
dependencies = [
"crossbeam-utils",
"libc",
"mach2",
"once_cell",
"raw-cpuid",
"wasi",
"web-sys",
"winapi",
]
[[package]]
name = "quick-xml"
version = "0.34.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6f24d770aeca0eacb81ac29dfbc55ebcc09312fdd1f8bbecdc7e4a84e000e3b4"
dependencies = [
"memchr",
]
[[package]]
name = "quinn"
version = "0.11.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b22d8e7369034b9a7132bc2008cac12f2013c8132b45e0554e6e20e2617f2156"
dependencies = [
"bytes",
"pin-project-lite",
"quinn-proto",
"quinn-udp",
"rustc-hash 2.0.0",
"rustls 0.23.12",
"socket2",
"thiserror",
"tokio",
"tracing",
]
[[package]]
name = "quinn-proto"
version = "0.11.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fadfaed2cd7f389d0161bb73eeb07b7b78f8691047a6f3e73caaeae55310a4a6"
dependencies = [
"bytes",
"rand",
"ring",
"rustc-hash 2.0.0",
"rustls 0.23.12",
"slab",
"thiserror",
"tinyvec",
"tracing",
]
[[package]]
name = "quinn-udp"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8bffec3605b73c6f1754535084a85229fa8a30f86014e6c81aeec4abb68b0285"
dependencies = [
"libc",
"once_cell",
"socket2",
"tracing",
"windows-sys 0.52.0",
]
[[package]]
name = "quote"
2024-06-04 13:05:03 +02:00
version = "1.0.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
dependencies = [
"proc-macro2",
2021-02-14 14:28:01 +01:00
]
[[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",
2021-02-14 14:28:01 +01:00
]
[[package]]
name = "rand_chacha"
2021-12-17 20:00:08 +01:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 20:00:08 +01:00
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
"ppv-lite86",
"rand_core",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "rand_core"
version = "0.6.4"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
2021-02-14 14:28:01 +01:00
dependencies = [
"getrandom",
]
2023-07-18 00:16:37 +02:00
[[package]]
name = "ratatui"
version = "0.27.0"
2023-07-18 00:16:37 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d16546c5b5962abf8ce6e2881e722b4e0ae3b6f1a08a26ae3573c55853ca68d3"
2023-07-18 00:16:37 +02:00
dependencies = [
"bitflags 2.6.0",
2023-07-18 00:16:37 +02:00
"cassowary",
"compact_str",
"crossterm",
"itertools",
"lru",
2023-08-14 10:59:08 +02:00
"paste",
"stability",
"strum",
"strum_macros",
2023-07-18 00:16:37 +02:00
"unicode-segmentation",
2024-06-04 13:05:03 +02:00
"unicode-truncate",
2023-07-18 00:16:37 +02:00
"unicode-width",
]
[[package]]
name = "raw-cpuid"
version = "10.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6c297679cb867470fa8c9f67dbba74a78d78e3e98d7cf2b08d6d71540f797332"
dependencies = [
"bitflags 1.3.2",
]
[[package]]
name = "rayon"
2024-06-04 13:05:03 +02:00
version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
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",
]
2023-10-25 20:06:59 +02:00
[[package]]
name = "redox_syscall"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa"
dependencies = [
"bitflags 1.3.2",
]
2024-06-04 13:05:03 +02:00
[[package]]
name = "redox_syscall"
version = "0.5.2"
2024-06-04 13:05:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c82cf8cff14456045f55ec4241383baeff27af886adb72ffb2162f99911de0fd"
2024-06-04 13:05:03 +02:00
dependencies = [
"bitflags 2.6.0",
2024-06-04 13:05:03 +02:00
]
2021-02-13 18:02:52 +01:00
[[package]]
name = "redox_users"
2024-06-04 13:05:03 +02:00
version = "0.4.5"
2021-02-13 18:02:52 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "bd283d9651eeda4b2a83a43c1c91b266c40fd76ecd39a50a8c630ae69dc72891"
2021-02-13 18:02:52 +01:00
dependencies = [
"getrandom",
2023-12-02 12:12:14 +01:00
"libredox",
"thiserror",
2021-02-13 18:02:52 +01:00
]
[[package]]
name = "regex"
version = "1.10.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b91213439dad192326a0d7c6ee3955910425f441d7038e0d6933b0aec5c4517f"
dependencies = [
"aho-corasick",
"memchr",
2024-06-13 15:37:01 +02:00
"regex-automata 0.4.7",
"regex-syntax 0.8.4",
]
[[package]]
name = "regex-automata"
2021-12-17 20:00:08 +01:00
version = "0.1.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 20:00:08 +01:00
checksum = "6c230d73fb8d8c1b9c0b3135c5142a8acee3a0558fb8db5cf1cb65f8d7862132"
dependencies = [
"regex-syntax 0.6.29",
]
[[package]]
name = "regex-automata"
2024-06-13 15:37:01 +02:00
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-13 15:37:01 +02:00
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
dependencies = [
"aho-corasick",
"memchr",
2024-06-13 15:37:01 +02:00
"regex-syntax 0.8.4",
]
[[package]]
name = "regex-lite"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"
[[package]]
name = "regex-syntax"
version = "0.6.29"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f162c6dd7b008981e4d40210aca20b4bd0f9b60ca9271061b07f78537722f2e1"
[[package]]
name = "regex-syntax"
2024-06-13 15:37:01 +02:00
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-13 15:37:01 +02:00
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"
[[package]]
name = "reqwest"
2024-06-04 13:05:03 +02:00
version = "0.11.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
dependencies = [
"base64 0.21.7",
"bytes",
"encoding_rs",
"futures-core",
"futures-util",
"h2 0.3.26",
2024-03-06 12:55:39 +01:00
"http 0.2.12",
"http-body 0.4.6",
"hyper 0.14.30",
"hyper-rustls 0.24.2",
"ipnet",
"js-sys",
"log",
"mime",
"once_cell",
"percent-encoding",
"pin-project-lite",
"rustls 0.21.12",
"rustls-native-certs",
2024-01-28 14:33:45 +01:00
"rustls-pemfile 1.0.4",
"serde",
"serde_json",
"serde_urlencoded",
2024-06-04 13:05:03 +02:00
"sync_wrapper 0.1.2",
2023-10-25 20:06:59 +02:00
"system-configuration",
"tokio",
"tokio-rustls 0.24.1",
2022-09-13 21:03:52 +02:00
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"winreg 0.50.0",
]
[[package]]
name = "reqwest"
version = "0.12.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7d6d2a27d57148378eb5e111173f4276ad26340ecc5c49a4a2152167a2d6a37"
dependencies = [
"base64 0.22.1",
"bytes",
"futures-core",
"futures-util",
"http 1.1.0",
"http-body 1.0.0",
"http-body-util",
"hyper 1.4.1",
"hyper-rustls 0.27.2",
"hyper-util",
"ipnet",
"js-sys",
"log",
"mime",
"once_cell",
"percent-encoding",
"pin-project-lite",
"quinn",
"rustls 0.23.12",
"rustls-pemfile 2.1.2",
"rustls-pki-types",
"serde",
"serde_json",
"serde_urlencoded",
"sync_wrapper 1.0.1",
"tokio",
"tokio-rustls 0.26.0",
"tower-service",
"url",
"wasm-bindgen",
"wasm-bindgen-futures",
"web-sys",
"webpki-roots",
"winreg 0.52.0",
]
2023-10-25 20:06:59 +02:00
[[package]]
name = "ring"
2024-02-26 15:57:32 +01:00
version = "0.17.8"
2023-10-25 20:06:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
2023-10-25 20:06:59 +02:00
dependencies = [
"cc",
2024-02-26 15:57:32 +01:00
"cfg-if",
"getrandom",
2023-10-25 20:06:59 +02:00
"libc",
"spin",
"untrusted",
2024-02-26 15:57:32 +01:00
"windows-sys 0.52.0",
2023-10-25 20:06:59 +02:00
]
[[package]]
name = "rmp"
version = "0.8.14"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "228ed7c16fa39782c3b3468e974aec2795e9089153cd08ee2e9aefb3613334c4"
dependencies = [
"byteorder",
"num-traits",
"paste",
]
[[package]]
name = "rpassword"
2023-12-02 12:12:14 +01:00
version = "7.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "80472be3c897911d0137b2d2b9055faf6eeac5b14e324073d83bc17b191d7e3f"
dependencies = [
"libc",
"rtoolbox",
2023-12-02 12:12:14 +01:00
"windows-sys 0.48.0",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "rsa"
2023-12-02 12:12:14 +01:00
version = "0.9.6"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "5d0e5124fcb30e76a7e79bfee683a2746db83784b86289f6251b54b7950a0dfc"
2023-08-18 22:45:29 +02:00
dependencies = [
"const-oid",
"digest",
2023-08-18 22:45:29 +02:00
"num-bigint-dig",
"num-integer",
"num-traits",
"pkcs1",
"pkcs8",
"rand_core",
"signature",
2023-08-18 22:45:29 +02:00
"spki",
"subtle",
"zeroize",
]
[[package]]
name = "rtoolbox"
2023-12-02 12:12:14 +01:00
version = "0.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "c247d24e63230cdb56463ae328478bd5eac8b8faa8c69461a77e8e323afac90e"
dependencies = [
"libc",
2023-12-02 12:12:14 +01:00
"windows-sys 0.48.0",
]
[[package]]
name = "runtime-format"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09958d5b38bca768ede7928c767c89a08ba568144a7b61992aecae79b03c8c94"
dependencies = [
"tinyvec",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "rustc-demangle"
2024-06-04 13:05:03 +02:00
version = "0.1.24"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
2023-08-18 22:45:29 +02:00
2023-02-06 20:22:58 +01:00
[[package]]
name = "rustc-hash"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2"
[[package]]
name = "rustc-hash"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "583034fd73374156e66797ed8e5b0d5690409c9226b22d87cb7f19821c05d152"
2023-08-18 22:45:29 +02:00
[[package]]
name = "rustc_version"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
"semver",
]
[[package]]
name = "rustix"
version = "0.38.34"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "70dc5ec042f7a43c4a73241207cecc9873a06d45debb38b329f8541d85c2730f"
dependencies = [
"bitflags 2.6.0",
"errno",
"libc",
"linux-raw-sys",
2023-12-02 12:12:14 +01:00
"windows-sys 0.52.0",
]
2021-12-17 20:00:08 +01:00
[[package]]
name = "rustls"
2024-06-04 13:05:03 +02:00
version = "0.21.12"
2021-12-17 20:00:08 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
2021-12-17 20:00:08 +01:00
dependencies = [
"log",
"ring",
"rustls-webpki 0.101.7",
"sct",
2021-12-17 20:00:08 +01:00
]
[[package]]
name = "rustls"
version = "0.23.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c58f8c84392efc0a126acce10fa59ff7b3d2ac06ab451a33f2741989b806b044"
dependencies = [
"once_cell",
"ring",
"rustls-pki-types",
"rustls-webpki 0.102.6",
"subtle",
"zeroize",
]
[[package]]
name = "rustls-native-certs"
2023-08-18 22:45:29 +02:00
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "a9aace74cb666635c918e9c12bc0d348266037aa8eb599b5cba565709a8dff00"
dependencies = [
"openssl-probe",
2024-01-28 14:33:45 +01:00
"rustls-pemfile 1.0.4",
"schannel",
"security-framework",
]
2021-12-17 20:00:08 +01:00
[[package]]
name = "rustls-pemfile"
2023-12-02 12:12:14 +01:00
version = "1.0.4"
2021-12-17 20:00:08 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
2021-12-17 20:00:08 +01:00
dependencies = [
"base64 0.21.7",
2023-08-18 22:45:29 +02:00
]
2024-01-28 14:33:45 +01:00
[[package]]
name = "rustls-pemfile"
2024-06-04 13:05:03 +02:00
version = "2.1.2"
2024-01-28 14:33:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "29993a25686778eb88d4189742cd713c9bce943bc54251a33509dc63cbacf73d"
2024-01-28 14:33:45 +01:00
dependencies = [
2024-06-04 13:05:03 +02:00
"base64 0.22.1",
2024-01-28 14:33:45 +01:00
"rustls-pki-types",
]
[[package]]
name = "rustls-pki-types"
version = "1.8.0"
2024-01-28 14:33:45 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc0a2ce646f8655401bb81e7927b812614bd5d91dbc968696be50603510fcaf0"
2024-01-28 14:33:45 +01:00
2023-08-18 22:45:29 +02:00
[[package]]
name = "rustls-webpki"
2023-10-25 20:06:59 +02:00
version = "0.101.7"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
2023-08-18 22:45:29 +02:00
dependencies = [
"ring",
"untrusted",
]
[[package]]
name = "rustls-webpki"
version = "0.102.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e6b52d4fda176fd835fdc55a835d4a89b8499cad995885a21149d5ad62f852e"
dependencies = [
"ring",
"rustls-pki-types",
"untrusted",
]
2023-02-10 10:45:20 +01:00
[[package]]
name = "rustversion"
2024-06-04 13:05:03 +02:00
version = "1.0.17"
2023-02-10 10:45:20 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "955d28af4278de8121b7ebeb796b6a45735dc01436d898801014aced2773a3d6"
2023-02-10 10:45:20 +01:00
[[package]]
name = "rusty_paserk"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a1d3a81ecd341ee8abf4761350ecffe3518c284ed1626bbd58f5f4bd64c61d38"
dependencies = [
"argon2",
"base64 0.22.1",
"base64ct",
"blake2",
"chacha20",
"cipher",
"curve25519-dalek",
"digest",
"ed25519-dalek",
"generic-array",
"rand",
"rusty_paseto",
"serde",
"sha2",
"subtle",
]
[[package]]
name = "rusty_paseto"
2024-06-04 13:05:03 +02:00
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "0c28b9f48df2de43da68fb7dcbd60c4f85bca5f6ae4c92cdd9540bcd4a606cb3"
dependencies = [
"base64 0.22.1",
"blake2",
"chacha20",
"digest",
"ed25519-dalek",
"hex",
"iso8601",
"rand_core",
"ring",
"thiserror",
"time",
"zeroize",
]
[[package]]
name = "ryu"
2024-06-04 13:05:03 +02:00
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
[[package]]
name = "salsa20"
version = "0.10.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97a22f5af31f73a954c10289c93e8a50cc23d971e80ee446f1f6f7137a088213"
dependencies = [
"cipher",
]
[[package]]
name = "schannel"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
dependencies = [
"windows-sys 0.52.0",
]
[[package]]
name = "scoped-tls"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"
[[package]]
name = "scopeguard"
2023-08-18 22:45:29 +02:00
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
2021-12-17 20:00:08 +01:00
[[package]]
name = "sct"
2023-10-25 20:06:59 +02:00
version = "0.7.1"
2021-12-17 20:00:08 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
2021-12-17 20:00:08 +01:00
dependencies = [
"ring",
"untrusted",
2021-12-17 20:00:08 +01:00
]
[[package]]
name = "security-framework"
2024-06-04 13:05:03 +02:00
version = "2.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "c627723fd09706bacdb5cf41499e95098555af3c3c29d014dc3c458ef6be11c0"
dependencies = [
"bitflags 2.6.0",
"core-foundation",
"core-foundation-sys",
"libc",
"security-framework-sys",
]
[[package]]
name = "security-framework-sys"
2024-06-04 13:05:03 +02:00
version = "2.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "317936bbbd05227752583946b9e66d7ce3b489f84e11a94a510b4437fef407d7"
dependencies = [
"core-foundation-sys",
"libc",
]
[[package]]
name = "semver"
2024-06-04 13:05:03 +02:00
version = "1.0.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "61697e0a1c7e512e84a621326239844a24d8207b4669b41bc18b32ea5cbf988b"
[[package]]
name = "serde"
version = "1.0.204"
2021-02-13 18:02:52 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bc76f558e0cbb2a839d37354c575f1dc3fdc6546b5be373ba43d95f231bf7c12"
dependencies = [
"serde_derive",
]
2021-02-13 18:02:52 +01:00
2021-03-10 22:24:08 +01:00
[[package]]
name = "serde_derive"
version = "1.0.204"
2021-03-10 22:24:08 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0cd7e117be63d3c3678776753929474f3b04a43a080c744d6b0ae2a8c28e222"
2021-03-10 22:24:08 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2021-03-10 22:24:08 +01:00
]
[[package]]
name = "serde_json"
version = "1.0.120"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4e0d21c9a8cae1235ad58a00c11cb40d4b1e5c784f1ef2c537876ed6ffd8b7c5"
dependencies = [
"itoa",
"ryu",
"serde",
]
2023-02-10 10:45:20 +01:00
[[package]]
name = "serde_path_to_error"
2024-06-04 13:05:03 +02:00
version = "0.1.16"
2023-02-10 10:45:20 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "af99884400da37c88f5e9146b7f1fd0fbcae8f6eec4e9da38b67d05486f814a6"
2023-02-10 10:45:20 +01:00
dependencies = [
2023-08-18 22:45:29 +02:00
"itoa",
2023-02-10 10:45:20 +01:00
"serde",
]
[[package]]
name = "serde_regex"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8136f1a4ea815d7eac4101cfd0b16dc0cb5e1fe1b8609dfd728058656b7badf"
dependencies = [
"regex",
"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",
]
[[package]]
name = "serde_with"
version = "3.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e73139bc5ec2d45e6c5fd85be5a46949c1c39a4c18e56915f5eb4c12f975e377"
dependencies = [
"base64 0.22.1",
"chrono",
"hex",
"indexmap 1.9.3",
2024-06-04 13:05:03 +02:00
"indexmap 2.2.6",
"serde",
2024-02-26 15:57:32 +01:00
"serde_derive",
"serde_json",
"serde_with_macros",
"time",
]
[[package]]
name = "serde_with_macros"
version = "3.8.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b80d3d6b56b64335c0180e5ffde23b3c5e08c14c585b51a15bd0e95393f46703"
dependencies = [
"darling",
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "sha1"
2023-10-25 20:06:59 +02:00
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
dependencies = [
"cfg-if",
2021-12-17 20:00:08 +01:00
"cpufeatures",
"digest",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "sha2"
2023-10-25 20:06:59 +02:00
version = "0.10.8"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
2021-02-14 14:28:01 +01:00
dependencies = [
"cfg-if",
2021-12-17 20:00:08 +01:00
"cpufeatures",
"digest",
2021-02-14 14:28:01 +01:00
]
[[package]]
name = "sharded-slab"
2023-10-25 20:06:59 +02:00
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
dependencies = [
"lazy_static",
]
[[package]]
name = "shellexpand"
version = "3.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da03fa3b94cc19e3ebfc88c4229c49d8f08cdbd1228870a45f0ffdf84988e14b"
dependencies = [
2022-09-13 21:03:52 +02:00
"dirs",
]
[[package]]
name = "shlex"
version = "1.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
[[package]]
name = "signal-hook"
2023-08-18 22:45:29 +02:00
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
dependencies = [
"libc",
"signal-hook-registry",
]
[[package]]
name = "signal-hook-mio"
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "29ad2e15f37ec9a6cc544097b78a1ec90001e9f71b81338ca39f430adaca99af"
dependencies = [
"libc",
"mio",
"signal-hook",
]
[[package]]
name = "signal-hook-registry"
2024-06-04 13:05:03 +02:00
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
dependencies = [
"libc",
]
[[package]]
name = "signature"
2023-12-02 12:12:14 +01:00
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "77549399552de45a898a580c1b41d445bf730df867cc44e6c0233bbc4b8329de"
2023-08-18 22:45:29 +02:00
dependencies = [
"digest",
"rand_core",
2023-08-18 22:45:29 +02:00
]
[[package]]
name = "simd-adler32"
version = "0.3.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d66dc143e6b11c1eddc06d5c423cfc97062865baf299914ab64caa38182078fe"
[[package]]
name = "siphasher"
version = "0.3.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
[[package]]
name = "sketches-ddsketch"
2024-02-26 15:57:32 +01:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "85636c14b73d81f541e525f585c0a2109e6744e1565b5c1668e31c70c10ed65c"
[[package]]
name = "slab"
2023-09-11 10:58:55 +02:00
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-11 10:58:55 +02:00
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
2022-09-13 21:03:52 +02:00
dependencies = [
"autocfg",
]
[[package]]
name = "smallvec"
2024-06-04 13:05:03 +02:00
version = "1.13.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
dependencies = [
"serde",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "socket2"
2024-06-04 13:05:03 +02:00
version = "0.5.7"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
2023-08-18 22:45:29 +02:00
dependencies = [
"libc",
2024-02-26 15:57:32 +01:00
"windows-sys 0.52.0",
2023-08-18 22:45:29 +02:00
]
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"
dependencies = [
"lock_api",
]
[[package]]
name = "spki"
2023-12-02 12:12:14 +01:00
version = "0.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "d91ed6c858b01f942cd56b37a94b3e0a1798290327d1236e4d9cf4eaca44d29d"
dependencies = [
"base64ct",
"der",
]
[[package]]
name = "sql-builder"
version = "3.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b1008d95d2ec2d062959352527be30e10fec42a1aa5e5a48d990a5ff0fb9bdc0"
dependencies = [
"anyhow",
"thiserror",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "sqlformat"
2024-06-13 15:37:01 +02:00
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-13 15:37:01 +02:00
checksum = "f895e3734318cc55f1fe66258926c9b910c124d47520339efecbb6c59cec7c1f"
dependencies = [
"nom",
"unicode_categories",
]
[[package]]
name = "sqlx"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fcfa89bea9500db4a0d038513d7a060566bfc51d46d1c014847049a45cce85e8"
dependencies = [
"sqlx-core",
"sqlx-macros",
2023-08-18 22:45:29 +02:00
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite",
]
[[package]]
name = "sqlx-core"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d06e2f2bd861719b1f3f0c7dbe1d80c30bf59e76cf019f07d9014ed7eefb8e08"
dependencies = [
"atoi",
"byteorder",
"bytes",
"crc",
"crossbeam-queue",
"either",
"event-listener",
"futures-channel",
"futures-core",
"futures-intrusive",
2023-08-18 22:45:29 +02:00
"futures-io",
"futures-util",
"hashbrown 0.14.5",
"hashlink",
"hex",
2024-06-04 13:05:03 +02:00
"indexmap 2.2.6",
"log",
"memchr",
"once_cell",
"paste",
"percent-encoding",
"rustls 0.23.12",
"rustls-pemfile 2.1.2",
"serde",
"serde_json",
"sha2",
"smallvec",
"sqlformat",
"thiserror",
"time",
2023-08-18 22:45:29 +02:00
"tokio",
"tokio-stream",
2023-08-18 22:45:29 +02:00
"tracing",
"url",
"uuid",
"webpki-roots",
]
[[package]]
name = "sqlx-macros"
version = "0.8.1"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f998a9defdbd48ed005a89362bd40dd2117502f15294f61c8d47034107dbbdc"
2023-08-18 22:45:29 +02:00
dependencies = [
"proc-macro2",
"quote",
"sqlx-core",
"sqlx-macros-core",
"syn",
2023-08-18 22:45:29 +02:00
]
[[package]]
name = "sqlx-macros-core"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3d100558134176a2629d46cec0c8891ba0be8910f7896abfdb75ef4ab6f4e7ce"
dependencies = [
"dotenvy",
"either",
"heck",
2023-08-18 22:45:29 +02:00
"hex",
"once_cell",
"proc-macro2",
"quote",
2023-08-18 22:45:29 +02:00
"serde",
"serde_json",
"sha2",
"sqlx-core",
2023-08-18 22:45:29 +02:00
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite",
"syn",
2023-08-18 22:45:29 +02:00
"tempfile",
"tokio",
"url",
]
[[package]]
2023-08-18 22:45:29 +02:00
name = "sqlx-mysql"
version = "0.8.1"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "936cac0ab331b14cb3921c62156d913e4c15b74fb6ec0f3146bd4ef6e4fb3c12"
2023-08-18 22:45:29 +02:00
dependencies = [
"atoi",
"base64 0.22.1",
"bitflags 2.6.0",
2023-08-18 22:45:29 +02:00
"byteorder",
"bytes",
"crc",
"digest",
2023-08-18 22:45:29 +02:00
"dotenvy",
"either",
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
"generic-array",
"hex",
"hkdf",
"hmac",
"itoa",
"log",
"md-5",
"memchr",
"once_cell",
"percent-encoding",
"rand",
2023-08-18 22:45:29 +02:00
"rsa",
"serde",
"sha1",
"sha2",
2023-08-18 22:45:29 +02:00
"smallvec",
"sqlx-core",
"stringprep",
"thiserror",
"time",
2023-08-18 22:45:29 +02:00
"tracing",
"uuid",
"whoami",
]
[[package]]
name = "sqlx-postgres"
version = "0.8.1"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9734dbce698c67ecf67c442f768a5e90a49b2a4d61a9f1d59f73874bd4cf0710"
dependencies = [
2023-08-18 22:45:29 +02:00
"atoi",
"base64 0.22.1",
"bitflags 2.6.0",
2023-08-18 22:45:29 +02:00
"byteorder",
"crc",
"dotenvy",
"etcetera",
"futures-channel",
"futures-core",
"futures-io",
"futures-util",
"hex",
"hkdf",
"hmac",
"home",
"itoa",
"log",
"md-5",
"memchr",
"once_cell",
"rand",
2023-08-18 22:45:29 +02:00
"serde",
"serde_json",
"sha2",
2023-08-18 22:45:29 +02:00
"smallvec",
"sqlx-core",
"stringprep",
"thiserror",
"time",
2023-08-18 22:45:29 +02:00
"tracing",
"uuid",
"whoami",
]
[[package]]
name = "sqlx-sqlite"
version = "0.8.1"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75b419c3c1b1697833dd927bdc4c6545a620bc1bbafabd44e1efbe9afcd337e"
2023-08-18 22:45:29 +02:00
dependencies = [
"atoi",
"flume",
"futures-channel",
"futures-core",
"futures-executor",
"futures-intrusive",
"futures-util",
"libsqlite3-sys",
"log",
"percent-encoding",
"regex",
2023-08-18 22:45:29 +02:00
"serde",
"serde_urlencoded",
2023-08-18 22:45:29 +02:00
"sqlx-core",
"time",
2023-08-18 22:45:29 +02:00
"tracing",
"url",
"uuid",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "stability"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d904e7009df136af5297832a3ace3370cd14ff1546a232f4f185036c2736fcac"
dependencies = [
"quote",
"syn",
]
[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
[[package]]
name = "stringprep"
2024-06-04 13:05:03 +02:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
dependencies = [
"unicode-bidi",
"unicode-normalization",
2024-06-04 13:05:03 +02:00
"unicode-properties",
]
[[package]]
name = "strsim"
2024-06-04 13:05:03 +02:00
version = "0.11.1"
2024-02-26 15:57:32 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2024-02-26 15:57:32 +01:00
[[package]]
name = "strum"
version = "0.26.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
dependencies = [
"strum_macros",
]
[[package]]
name = "strum_macros"
version = "0.26.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
dependencies = [
"heck",
"proc-macro2",
"quote",
"rustversion",
"syn",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "subtle"
version = "2.6.1"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
2021-02-14 14:28:01 +01:00
2022-04-13 00:06:19 +02:00
[[package]]
name = "syn"
version = "2.0.70"
2023-02-06 20:22:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2f0209b68b3613b093e0ec905354eccaedcfe83b8cb37cbdeae64026c3064c16"
2023-02-06 20:22:58 +01:00
dependencies = [
"proc-macro2",
"quote",
"unicode-ident",
2023-02-06 20:22:58 +01:00
]
[[package]]
name = "sync_wrapper"
2023-08-18 22:45:29 +02:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2047c6ded9c721764247e62cd3b03c09ffc529b2ba5b10ec482ae507a4a70160"
2024-06-04 13:05:03 +02:00
[[package]]
name = "sync_wrapper"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a7065abeca94b6a8a577f9bd45aa0867a2238b74e8eb67cf10d492bc39351394"
[[package]]
name = "sysinfo"
version = "0.30.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0a5b4ddaee55fb2bea2bf0e5000747e5f5c0de765e5a5ff87f4cd106439f4bb3"
dependencies = [
"cfg-if",
"core-foundation-sys",
"libc",
"ntapi",
"once_cell",
"rayon",
"windows",
]
2023-10-25 20:06:59 +02:00
[[package]]
name = "system-configuration"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba3a3adc5c275d719af8cb4272ea1c4a6d668a777f37e115f6d11ddbc1c8e0e7"
dependencies = [
"bitflags 1.3.2",
"core-foundation",
"system-configuration-sys",
]
[[package]]
name = "system-configuration-sys"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a75fb188eb626b924683e3b95e3a48e63551fcfb51949de2f06a9d91dbee93c9"
dependencies = [
"core-foundation-sys",
"libc",
]
2023-08-18 22:45:29 +02:00
[[package]]
name = "tempfile"
2024-03-06 12:55:39 +01:00
version = "3.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "85b77fafb263dd9d05cbeac119526425676db3784113aa9295c88498cbf8bff1"
2023-08-18 22:45:29 +02:00
dependencies = [
"cfg-if",
"fastrand",
"rustix",
"windows-sys 0.52.0",
2023-08-18 22:45:29 +02:00
]
[[package]]
name = "terminal_size"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "21bebf2b7c9e0a515f6e0f8c51dc0f8e4696391e6f1ff30379559f8365fb0df7"
dependencies = [
"rustix",
"windows-sys 0.48.0",
]
[[package]]
name = "testing_logger"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d92b727cb45d33ae956f7f46b966b25f1bc712092aeef9dba5ac798fc89f720"
dependencies = [
"log",
]
[[package]]
name = "thiserror"
version = "1.0.62"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f2675633b1499176c2dff06b0856a27976a8f9d436737b4cf4f312d4d91d8bbb"
dependencies = [
"thiserror-impl",
]
[[package]]
name = "thiserror-impl"
version = "1.0.62"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d20468752b09f49e909e55a5d338caa8bedf615594e9d80bc4c565d30faf798c"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "thread_local"
2024-02-26 15:57:32 +01:00
version = "1.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
dependencies = [
"cfg-if",
"once_cell",
]
[[package]]
name = "tiff"
version = "0.9.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ba1310fcea54c6a9a4fd1aad794ecc02c31682f6bfbecdf460bf19533eed1e3e"
dependencies = [
"flate2",
"jpeg-decoder",
"weezl",
]
[[package]]
name = "time"
version = "0.3.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
dependencies = [
2023-08-18 22:45:29 +02:00
"deranged",
"itoa",
"libc",
2024-02-26 15:57:32 +01:00
"num-conv",
"num_threads",
2023-12-16 20:20:40 +01:00
"powerfmt",
"serde",
"time-core",
"time-macros",
]
[[package]]
name = "time-core"
2023-12-16 20:20:40 +01:00
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 20:20:40 +01:00
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"
[[package]]
name = "time-macros"
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
dependencies = [
2024-02-26 15:57:32 +01:00
"num-conv",
"time-core",
]
2023-02-06 20:22:58 +01:00
[[package]]
name = "tiny-bip39"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62cc94d358b5a1e84a5cb9109f559aa3c4d634d2b1b4de3d0fa4adc7c78e2861"
dependencies = [
"anyhow",
"hmac",
"once_cell",
"pbkdf2",
"rand",
"rustc-hash 1.1.0",
"sha2",
2023-02-06 20:22:58 +01:00
"thiserror",
"unicode-normalization",
"wasm-bindgen",
"zeroize",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "tinyvec"
version = "1.8.0"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
2021-02-14 14:28:01 +01:00
dependencies = [
"tinyvec_macros",
]
[[package]]
name = "tinyvec_macros"
2023-08-18 22:45:29 +02:00
version = "0.1.1"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2021-02-14 14:28:01 +01:00
[[package]]
name = "tokio"
2024-06-04 13:05:03 +02:00
version = "1.38.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "ba4f4a02a7a80d6f274636f0aa95c7e383b912d41fe721a31f29e29698585a4a"
dependencies = [
2023-08-18 22:45:29 +02:00
"backtrace",
"bytes",
"libc",
"mio",
"num_cpus",
2023-08-18 22:45:29 +02:00
"parking_lot",
"pin-project-lite",
"signal-hook-registry",
"socket2",
"tokio-macros",
2023-08-18 22:45:29 +02:00
"windows-sys 0.48.0",
]
[[package]]
name = "tokio-macros"
2024-06-04 13:05:03 +02:00
version = "2.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "5f5ae998a069d4b5aba8ee9dad856af7d520c3699e6159b185c2acd48155d39a"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-12-17 20:00:08 +01:00
[[package]]
name = "tokio-rustls"
2023-08-18 22:45:29 +02:00
version = "0.24.1"
2021-12-17 20:00:08 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
2021-12-17 20:00:08 +01:00
dependencies = [
"rustls 0.21.12",
"tokio",
]
[[package]]
name = "tokio-rustls"
version = "0.26.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c7bc40d0e5a97695bb96e27995cd3a08538541b0a846f65bba7a359f36700d4"
dependencies = [
"rustls 0.23.12",
"rustls-pki-types",
2021-12-17 20:00:08 +01:00
"tokio",
]
[[package]]
name = "tokio-stream"
2024-06-04 13:05:03 +02:00
version = "0.1.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "267ac89e0bec6e691e5813911606935d77c476ff49024f98abcea3e7b15e37af"
dependencies = [
"futures-core",
"pin-project-lite",
"tokio",
]
[[package]]
name = "tokio-util"
2024-06-04 13:05:03 +02:00
version = "0.7.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "9cf6b47b3771c49ac75ad09a6162f53ad4b8088b76ac60e8ec1455b31a189fe1"
dependencies = [
"bytes",
"futures-core",
"futures-sink",
"pin-project-lite",
"tokio",
2021-03-10 22:24:08 +01:00
]
[[package]]
2022-04-13 00:06:19 +02:00
name = "toml"
2023-08-18 22:45:29 +02:00
version = "0.5.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
2022-04-13 00:06:19 +02:00
dependencies = [
"serde",
]
[[package]]
name = "tonic"
version = "0.12.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c6f6ba989e4b2c58ae83d862d3a3e27690b6e3ae630d0deb59f3697f32aa88ad"
dependencies = [
"async-stream",
"async-trait",
"axum",
"base64 0.22.1",
"bytes",
"h2 0.4.5",
"http 1.1.0",
"http-body 1.0.0",
"http-body-util",
"hyper 1.4.1",
"hyper-timeout",
"hyper-util",
"percent-encoding",
"pin-project",
"prost",
"socket2",
"tokio",
"tokio-stream",
"tower",
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tonic-build"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "568392c5a2bd0020723e3f387891176aabafe36fd9fcd074ad309dfa0c8eb964"
dependencies = [
"prettyplease",
"proc-macro2",
"prost-build",
"quote",
"syn",
]
[[package]]
name = "tonic-types"
version = "0.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0509febcea1e686cc699f7a6c5d322fef27f19a4dd7e7feacd587fd3d9b4360"
dependencies = [
"prost",
"prost-types",
"tonic",
]
2022-04-13 00:06:19 +02:00
[[package]]
name = "tower"
2022-09-13 21:03:52 +02:00
version = "0.4.13"
2022-04-13 00:06:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-13 21:03:52 +02:00
checksum = "b8fa9be0de6cf49e536ce1851f987bd21a43b771b09473c3549a6c853db37c1c"
dependencies = [
"futures-core",
2022-04-13 00:06:19 +02:00
"futures-util",
"indexmap 1.9.3",
2022-04-13 00:06:19 +02:00
"pin-project",
"pin-project-lite",
"rand",
"slab",
"tokio",
"tokio-util",
2022-04-13 00:06:19 +02:00
"tower-layer",
"tower-service",
"tracing",
]
[[package]]
name = "tower-http"
2024-02-26 15:57:32 +01:00
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5"
dependencies = [
"bitflags 2.6.0",
"bytes",
2024-03-06 12:55:39 +01:00
"http 1.1.0",
2024-01-28 14:33:45 +01:00
"http-body 1.0.0",
"http-body-util",
"pin-project-lite",
"tower-layer",
"tower-service",
"tracing",
2021-02-14 14:28:01 +01:00
]
2022-04-13 00:06:19 +02:00
[[package]]
name = "tower-layer"
2023-02-10 10:45:20 +01:00
version = "0.3.2"
2022-04-13 00:06:19 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-02-10 10:45:20 +01:00
checksum = "c20c8dbed6283a09604c3e69b4b7eeb54e298b8a600d4d5ecb5ad39de609f1d0"
2022-04-13 00:06:19 +02:00
[[package]]
name = "tower-service"
2022-09-13 21:03:52 +02:00
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2022-09-13 21:03:52 +02:00
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"
[[package]]
name = "tracing"
2023-10-25 20:06:59 +02:00
version = "0.1.40"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
dependencies = [
"log",
"pin-project-lite",
"tracing-attributes",
"tracing-core",
]
[[package]]
name = "tracing-attributes"
2023-10-25 20:06:59 +02:00
version = "0.1.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
[[package]]
name = "tracing-core"
2023-10-25 20:06:59 +02:00
version = "0.1.32"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
dependencies = [
2022-06-13 11:10:45 +02:00
"once_cell",
"valuable",
]
[[package]]
name = "tracing-log"
2023-12-16 20:20:40 +01:00
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 20:20:40 +01:00
checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3"
dependencies = [
"log",
2023-10-25 20:06:59 +02:00
"once_cell",
"tracing-core",
]
[[package]]
name = "tracing-subscriber"
2023-12-02 12:12:14 +01:00
version = "0.3.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-02 12:12:14 +01:00
checksum = "ad0f048c97dbd9faa9b7df56362b8ebcaa52adb06b498c050d2f4e32f90a7a8b"
dependencies = [
"matchers",
2023-12-16 20:20:40 +01:00
"nu-ansi-term 0.46.0",
2022-09-13 21:03:52 +02:00
"once_cell",
"regex",
"sharded-slab",
"smallvec",
"thread_local",
"tracing",
"tracing-core",
"tracing-log",
]
[[package]]
name = "tracing-tree"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f459ca79f1b0d5f71c54ddfde6debfc59c8b6eeb46808ae492077f739dc7b49c"
dependencies = [
"nu-ansi-term 0.50.0",
"tracing-core",
"tracing-log",
"tracing-subscriber",
]
[[package]]
name = "tree_magic_mini"
2024-06-04 13:05:03 +02:00
version = "3.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "469a727cac55b41448315cc10427c069c618ac59bb6a4480283fcd811749bdc2"
dependencies = [
"fnv",
2024-06-04 13:05:03 +02:00
"home",
"memchr",
"nom",
"once_cell",
"petgraph",
]
[[package]]
name = "try-lock"
2023-12-16 20:20:40 +01:00
version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-12-16 20:20:40 +01:00
checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b"
[[package]]
name = "typed-builder"
version = "0.18.2"
2023-08-18 22:45:29 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77739c880e00693faef3d65ea3aad725f196da38b22fdc7ea6ded6e1ce4d3add"
2023-08-18 22:45:29 +02:00
dependencies = [
"typed-builder-macro",
]
[[package]]
name = "typed-builder-macro"
version = "0.18.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f718dfaf347dcb5b983bfc87608144b0bad87970aebcbea5ce44d2a30c08e63"
dependencies = [
"proc-macro2",
"quote",
"syn",
]
2021-02-14 14:28:01 +01:00
[[package]]
name = "typenum"
2023-10-25 20:06:59 +02:00
version = "1.17.0"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
2021-02-14 14:28:01 +01:00
[[package]]
name = "unicode-bidi"
version = "0.3.15"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
[[package]]
name = "unicode-ident"
2023-10-25 20:06:59 +02:00
version = "1.0.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-10-25 20:06:59 +02:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2021-02-14 14:28:01 +01:00
[[package]]
name = "unicode-normalization"
2024-02-26 15:57:32 +01:00
version = "0.1.23"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-02-26 15:57:32 +01:00
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
2021-02-14 14:28:01 +01:00
dependencies = [
"tinyvec",
]
2024-06-04 13:05:03 +02:00
[[package]]
name = "unicode-properties"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e4259d9d4425d9f0661581b804cb85fe66a4c631cadd8f490d1c13a35d5d9291"
[[package]]
name = "unicode-segmentation"
version = "1.11.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d4c87d22b6e3f4a18d4d40ef354e97c90fcb14dd91d7dc0aa9d8a1172ebf7202"
2024-06-04 13:05:03 +02:00
[[package]]
name = "unicode-truncate"
version = "1.1.0"
2024-06-04 13:05:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b3644627a5af5fa321c95b9b235a72fd24cd29c648c2c379431e6628655627bf"
2024-06-04 13:05:03 +02:00
dependencies = [
"itertools",
"unicode-segmentation",
2024-06-04 13:05:03 +02:00
"unicode-width",
]
[[package]]
name = "unicode-width"
version = "0.1.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0336d538f7abc86d282a4189614dfaa90810dfc2c6f6427eaf88e16311dd225d"
2021-02-14 14:28:01 +01:00
[[package]]
name = "unicode_categories"
version = "0.1.1"
2021-02-14 14:28:01 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
2021-02-14 14:28:01 +01:00
[[package]]
name = "universal-hash"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fc1de2c688dc15305988b563c3854064043356019f97a4b46276fe734c4f07ea"
dependencies = [
"crypto-common",
"subtle",
]
2023-10-25 20:06:59 +02:00
[[package]]
name = "untrusted"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1"
[[package]]
name = "url"
version = "2.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
[[package]]
name = "urlencoding"
2023-08-18 22:45:29 +02:00
version = "2.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da"
[[package]]
name = "utf8parse"
2024-06-13 15:37:01 +02:00
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-13 15:37:01 +02:00
checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
2021-02-13 18:02:52 +01:00
[[package]]
name = "uuid"
version = "1.10.0"
2021-02-13 18:02:52 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "81dfa00651efa65069b0b6b651f4aaa31ba9e3c3ce0137aaad053604ee7e0314"
2021-02-13 18:02:52 +01:00
dependencies = [
"getrandom",
"serde",
2021-02-13 18:02:52 +01:00
]
[[package]]
name = "valuable"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b7e5d4d90034032940e4ace0d9a9a057e7a45cd94e6c007832e39edb82f6d"
[[package]]
name = "vcpkg"
2021-12-17 20:00:08 +01:00
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-12-17 20:00:08 +01:00
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]]
name = "want"
2023-08-18 22:45:29 +02:00
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
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 = "wasite"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b8dad83b4f25e74f184f64c43b150b91efe7647395b42289f38e50566d82855b"
[[package]]
name = "wasm-bindgen"
2024-03-06 12:55:39 +01:00
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2024-03-06 12:55:39 +01:00
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
dependencies = [
"bumpalo",
"log",
2022-09-13 21:03:52 +02:00
"once_cell",
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-futures"
2024-03-06 12:55:39 +01:00
version = "0.4.42"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "76bc14366121efc8dbb487ab05bcc9d346b3b5ec0eaa76e46594cabbe51762c0"
dependencies = [
"cfg-if",
"js-sys",
"wasm-bindgen",
"web-sys",
]
[[package]]
name = "wasm-bindgen-macro"
2024-03-06 12:55:39 +01:00
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2024-03-06 12:55:39 +01:00
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
dependencies = [
"proc-macro2",
"quote",
"syn",
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2024-03-06 12:55:39 +01:00
version = "0.2.92"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
[[package]]
name = "wayland-backend"
version = "0.3.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "269c04f203640d0da2092d1b8d89a2d081714ae3ac2f1b53e99f205740517198"
dependencies = [
"cc",
"downcast-rs",
"rustix",
"scoped-tls",
"smallvec",
"wayland-sys",
]
[[package]]
name = "wayland-client"
version = "0.31.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "08bd0f46c069d3382a36c8666c1b9ccef32b8b04f41667ca1fef06a1adcc2982"
dependencies = [
"bitflags 2.6.0",
"rustix",
"wayland-backend",
"wayland-scanner",
]
[[package]]
name = "wayland-protocols"
version = "0.31.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8f81f365b8b4a97f422ac0e8737c438024b5951734506b0e1d775c73030561f4"
dependencies = [
"bitflags 2.6.0",
"wayland-backend",
"wayland-client",
"wayland-scanner",
]
[[package]]
name = "wayland-protocols-wlr"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ad1f61b76b6c2d8742e10f9ba5c3737f6530b4c243132c2a2ccc8aa96fe25cd6"
dependencies = [
"bitflags 2.6.0",
"wayland-backend",
"wayland-client",
"wayland-protocols",
"wayland-scanner",
]
[[package]]
name = "wayland-scanner"
version = "0.31.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "edf466fc49a4feb65a511ca403fec3601494d0dee85dbf37fff6fa0dd4eec3b6"
dependencies = [
"proc-macro2",
"quick-xml",
"quote",
]
[[package]]
name = "wayland-sys"
version = "0.31.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4a6754825230fa5b27bafaa28c30b3c9e72c55530581220cef401fa422c0fae7"
dependencies = [
"dlib",
"log",
"pkg-config",
]
[[package]]
name = "web-sys"
2024-03-06 12:55:39 +01:00
version = "0.3.69"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-03-06 12:55:39 +01:00
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
dependencies = [
"js-sys",
"wasm-bindgen",
]
[[package]]
name = "webpki-roots"
version = "0.26.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd7c23921eeb1713a4e851530e9b9756e4fb0e89978582942612524cf09f01cd"
dependencies = [
"rustls-pki-types",
]
[[package]]
name = "weezl"
version = "0.1.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53a85b86a771b1c87058196170769dd264f66c0782acf1ae6cc51bfd64b39082"
[[package]]
name = "whoami"
version = "1.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a44ab49fad634e88f55bf8f9bb3abd2f27d7204172a112c7c9987e01c1c94ea9"
dependencies = [
2024-06-04 13:05:03 +02:00
"redox_syscall 0.4.1",
"wasite",
"web-sys",
]
[[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-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
2021-02-14 14:28:01 +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",
]
[[package]]
name = "windows-core"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "33ab640c8d7e35bf8ba19b884ba838ceb4fba93a4e8c65a9059d08afcfc683d9"
dependencies = [
"windows-targets 0.52.6",
]
[[package]]
name = "windows-sys"
version = "0.48.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9"
dependencies = [
2023-08-18 22:45:29 +02:00
"windows-targets 0.48.5",
]
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows-sys"
version = "0.52.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d"
dependencies = [
"windows-targets 0.52.6",
2023-12-02 12:12:14 +01:00
]
[[package]]
2023-08-18 22:45:29 +02:00
name = "windows-targets"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
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",
]
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows-targets"
version = "0.52.6"
2023-12-02 12:12:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
2023-12-02 12:12:14 +01:00
dependencies = [
"windows_aarch64_gnullvm 0.52.6",
"windows_aarch64_msvc 0.52.6",
"windows_i686_gnu 0.52.6",
2024-06-04 13:05:03 +02:00
"windows_i686_gnullvm",
"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",
2023-12-02 12:12:14 +01:00
]
[[package]]
2023-08-18 22:45:29 +02:00
name = "windows_aarch64_gnullvm"
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_aarch64_gnullvm"
version = "0.52.6"
2023-12-02 12:12:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_aarch64_msvc"
2023-08-18 22:45:29 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_aarch64_msvc"
version = "0.52.6"
2023-12-02 12:12:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_i686_gnu"
2023-08-18 22:45:29 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_i686_gnu"
version = "0.52.6"
2023-12-02 12:12:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
2024-06-04 13:05:03 +02:00
[[package]]
name = "windows_i686_gnullvm"
version = "0.52.6"
2024-06-04 13:05:03 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_i686_msvc"
2023-08-18 22:45:29 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_i686_msvc"
version = "0.52.6"
2023-12-02 12:12:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_x86_64_gnu"
2023-08-18 22:45:29 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_x86_64_gnu"
version = "0.52.6"
2023-12-02 12:12:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_x86_64_gnullvm"
2023-08-18 22:45:29 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_x86_64_gnullvm"
version = "0.52.6"
2023-12-02 12:12:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_x86_64_msvc"
2023-08-18 22:45:29 +02:00
version = "0.48.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-08-18 22:45:29 +02:00
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538"
2023-12-02 12:12:14 +01:00
[[package]]
name = "windows_x86_64_msvc"
version = "0.52.6"
2023-12-02 12:12:14 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
2023-12-02 12:12:14 +01:00
[[package]]
name = "winreg"
2023-09-11 10:58:55 +02:00
version = "0.50.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-11 10:58:55 +02:00
checksum = "524e57b2c537c0f9b1e69f1965311ec12182b4122e45035b1508cd24d2adadb1"
dependencies = [
2023-09-11 10:58:55 +02:00
"cfg-if",
"windows-sys 0.48.0",
]
2023-02-06 20:22:58 +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",
]
[[package]]
name = "wl-clipboard-rs"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "12b41773911497b18ca8553c3daaf8ec9fe9819caf93d451d3055f69de028adb"
dependencies = [
"derive-new",
"libc",
"log",
"nix",
"os_pipe",
"tempfile",
"thiserror",
"tree_magic_mini",
"wayland-backend",
"wayland-client",
"wayland-protocols",
"wayland-protocols-wlr",
]
[[package]]
name = "x11rb"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d91ffca73ee7f68ce055750bf9f6eca0780b8c85eff9bc046a3b0da41755e12"
dependencies = [
"gethostname",
"rustix",
"x11rb-protocol",
]
[[package]]
name = "x11rb-protocol"
version = "0.13.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec107c4503ea0b4a98ef47356329af139c0a4f7750e621cf2973cd3385ebcb3d"
[[package]]
name = "yansi"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "09041cd90cf85f7f8b2df60c646f853b7f535ce68f85244eb6731cf89fa498ec"
2023-10-25 20:06:59 +02:00
[[package]]
name = "zerocopy"
version = "0.7.35"
2023-10-25 20:06:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1b9b4fd18abc82b8136838da5d50bae7bdea537c574d8dc1a34ed098d6c166f0"
2023-10-25 20:06:59 +02:00
dependencies = [
"zerocopy-derive",
]
[[package]]
name = "zerocopy-derive"
version = "0.7.35"
2023-10-25 20:06:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fa4f8080344d4671fb4e831a13ad1e68092748387dfc4f55e356242fae12ce3e"
2023-10-25 20:06:59 +02:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2023-10-25 20:06:59 +02:00
]
2023-02-06 20:22:58 +01:00
[[package]]
name = "zeroize"
2024-06-04 13:05:03 +02:00
version = "1.8.1"
2023-02-06 20:22:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-06-04 13:05:03 +02:00
checksum = "ced3678a2879b30306d323f4542626697a464a97c0a07c9aebf7ebca65cd4dde"
2023-02-06 20:22:58 +01:00
dependencies = [
"zeroize_derive",
]
[[package]]
name = "zeroize_derive"
version = "1.4.2"
2023-02-06 20:22:58 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ce36e65b0d2999d2aafac989fb249189a141aee1f53c612c1f37d72631959f69"
2023-02-06 20:22:58 +01:00
dependencies = [
"proc-macro2",
"quote",
"syn",
2023-02-06 20:22:58 +01:00
]