2024-05-09 23:30:18 +02:00
|
|
|
# This file is automatically @generated by Cargo.
|
|
|
|
# It is not intended for manual editing.
|
|
|
|
version = 3
|
|
|
|
|
2024-05-11 21:14:20 +02:00
|
|
|
[[package]]
|
2024-08-29 20:08:46 +02:00
|
|
|
name = "adler2"
|
|
|
|
version = "2.0.0"
|
2024-05-11 21:14:20 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "512761e0bb2578dd7380c6baaa0f4ce03e84f95e960231d1dec8bf4d7d6e2627"
|
2024-05-11 21:14:20 +02:00
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "anyhow"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "1.0.95"
|
2024-11-13 19:53:58 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "34ac096ce696dc2fcabef30516bb13c0a68a11d30131d3df6f04711467681b04"
|
2024-11-13 19:53:58 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "askama"
|
|
|
|
version = "0.11.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "fb98f10f371286b177db5eeb9a6e5396609555686a35e1d4f7b9a9c6d8af0139"
|
|
|
|
dependencies = [
|
|
|
|
"askama_derive 0.11.2",
|
|
|
|
"askama_escape",
|
|
|
|
"askama_shared",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "askama"
|
|
|
|
version = "0.12.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b79091df18a97caea757e28cd2d5fda49c6cd4bd01ddffd7ff01ace0c0ad2c28"
|
|
|
|
dependencies = [
|
|
|
|
"askama_derive 0.12.5",
|
|
|
|
"askama_escape",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "askama_derive"
|
|
|
|
version = "0.11.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "87bf87e6e8b47264efa9bde63d6225c6276a52e05e91bf37eaa8afd0032d6b71"
|
|
|
|
dependencies = [
|
|
|
|
"askama_shared",
|
|
|
|
"proc-macro2",
|
|
|
|
"syn 1.0.109",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "askama_derive"
|
|
|
|
version = "0.12.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "19fe8d6cb13c4714962c072ea496f3392015f0989b1a2847bb4b2d9effd71d83"
|
|
|
|
dependencies = [
|
|
|
|
"askama_parser",
|
|
|
|
"basic-toml",
|
|
|
|
"mime",
|
|
|
|
"mime_guess",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"serde",
|
2024-11-24 16:12:38 +01:00
|
|
|
"syn 2.0.96",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "askama_escape"
|
|
|
|
version = "0.10.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "619743e34b5ba4e9703bba34deac3427c72507c7159f5fd030aea8cac0cfe341"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "askama_parser"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "acb1161c6b64d1c3d83108213c2a2533a342ac225aabd0bda218278c2ddb00c0"
|
|
|
|
dependencies = [
|
|
|
|
"nom",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "askama_shared"
|
|
|
|
version = "0.12.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "bf722b94118a07fcbc6640190f247334027685d4e218b794dbfe17c32bf38ed0"
|
|
|
|
dependencies = [
|
|
|
|
"askama_escape",
|
|
|
|
"mime",
|
|
|
|
"mime_guess",
|
|
|
|
"nom",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"serde",
|
|
|
|
"syn 1.0.109",
|
2025-02-16 13:13:54 +01:00
|
|
|
"toml",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "atty"
|
|
|
|
version = "0.2.14"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
|
|
|
|
dependencies = [
|
|
|
|
"hermit-abi",
|
|
|
|
"libc",
|
|
|
|
"winapi",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "autocfg"
|
|
|
|
version = "1.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "basic-toml"
|
|
|
|
version = "0.1.9"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "823388e228f614e9558c6804262db37960ec8821856535f5c3f59913140558f8"
|
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bincode"
|
|
|
|
version = "1.3.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b1f45e9417d87227c7a56d22e471c6206462cba514c7590c09aff4cf6d1ddcad"
|
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bitflags"
|
|
|
|
version = "1.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a"
|
|
|
|
|
2024-06-03 21:08:26 +02:00
|
|
|
[[package]]
|
|
|
|
name = "bitvec"
|
|
|
|
version = "1.0.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1bc2832c24239b0141d5674bb9174f9d68a8b5b3f2753311927c172ca46f7e9c"
|
|
|
|
dependencies = [
|
|
|
|
"funty",
|
|
|
|
"radium",
|
|
|
|
"tap",
|
|
|
|
"wyz",
|
|
|
|
]
|
|
|
|
|
2024-10-12 16:18:27 +02:00
|
|
|
[[package]]
|
|
|
|
name = "bytes"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "1.9.0"
|
2024-10-12 16:18:27 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "325918d6fe32f23b19878fe4b34794ae41fc19ddbe53b10571a4874d44ffd39b"
|
2024-10-12 16:18:27 +02:00
|
|
|
|
2024-05-11 23:16:41 +02:00
|
|
|
[[package]]
|
|
|
|
name = "bzip2"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "0.5.0"
|
2024-05-11 23:16:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "bafdbf26611df8c14810e268ddceda071c297570a5fb360ceddf617fe417ef58"
|
2024-05-11 23:16:41 +02:00
|
|
|
dependencies = [
|
|
|
|
"bzip2-sys",
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "bzip2-sys"
|
|
|
|
version = "0.1.11+1.0.8"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "736a955f3fa7875102d57c82b8cac37ec45224a07fd32d58f9f7a186b6cd4cdc"
|
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"libc",
|
|
|
|
"pkg-config",
|
|
|
|
]
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "camino"
|
|
|
|
version = "1.1.9"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
|
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cargo-platform"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "0.1.9"
|
2024-11-13 19:53:58 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea"
|
2024-11-13 19:53:58 +01:00
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "cargo_metadata"
|
|
|
|
version = "0.15.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "eee4243f1f26fc7a42710e7439c149e2b10b05472f88090acce52632f231a73a"
|
|
|
|
dependencies = [
|
|
|
|
"camino",
|
|
|
|
"cargo-platform",
|
|
|
|
"semver",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
2024-11-24 16:12:38 +01:00
|
|
|
"thiserror 1.0.69",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
2024-05-11 23:16:41 +02:00
|
|
|
[[package]]
|
|
|
|
name = "cc"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "1.2.9"
|
2024-05-11 23:16:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "c8293772165d9345bdaaa39b45b2109591e63fe5e6fbc23c6ff930a048aa310b"
|
2024-05-11 23:16:41 +02:00
|
|
|
dependencies = [
|
|
|
|
"jobserver",
|
|
|
|
"libc",
|
2024-08-29 20:08:46 +02:00
|
|
|
"shlex",
|
2024-05-11 23:16:41 +02:00
|
|
|
]
|
|
|
|
|
2024-05-11 21:14:20 +02:00
|
|
|
[[package]]
|
|
|
|
name = "cfg-if"
|
|
|
|
version = "1.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "clap"
|
|
|
|
version = "3.2.25"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "4ea181bf566f71cb9a5d17a59e1871af638180a18fb0035c92ae62b705207123"
|
|
|
|
dependencies = [
|
|
|
|
"atty",
|
2025-02-16 13:13:54 +01:00
|
|
|
"bitflags",
|
|
|
|
"clap_derive",
|
|
|
|
"clap_lex",
|
|
|
|
"indexmap",
|
2024-11-13 19:53:58 +01:00
|
|
|
"once_cell",
|
2025-02-16 13:13:54 +01:00
|
|
|
"strsim",
|
2024-11-13 19:53:58 +01:00
|
|
|
"termcolor",
|
|
|
|
"textwrap",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "clap_derive"
|
|
|
|
version = "3.2.25"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ae6371b8bdc8b7d3959e9cf7b22d4435ef3e79e138688421ec654acf8c81b008"
|
|
|
|
dependencies = [
|
2025-02-16 13:13:54 +01:00
|
|
|
"heck",
|
2024-11-13 19:53:58 +01:00
|
|
|
"proc-macro-error",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn 1.0.109",
|
2024-05-12 13:51:41 +02:00
|
|
|
]
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "clap_lex"
|
|
|
|
version = "0.2.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2850f2f5a82cbf437dd5af4d49848fbdfc27c157c3d010345776f952765261c5"
|
|
|
|
dependencies = [
|
|
|
|
"os_str_bytes",
|
2024-05-12 13:51:41 +02:00
|
|
|
]
|
|
|
|
|
2024-05-11 21:14:20 +02:00
|
|
|
[[package]]
|
|
|
|
name = "crc32fast"
|
2024-05-25 11:16:37 +02:00
|
|
|
version = "1.4.2"
|
2024-05-11 21:14:20 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-05-25 11:16:37 +02:00
|
|
|
checksum = "a97769d94ddab943e4510d138150169a2758b5ef3eb191a9ee688de3e23ef7b3"
|
2024-05-11 21:14:20 +02:00
|
|
|
dependencies = [
|
|
|
|
"cfg-if",
|
|
|
|
]
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "extend"
|
|
|
|
version = "1.2.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "311a6d2f1f9d60bff73d2c78a0af97ed27f79672f15c238192a5bbb64db56d00"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-11-24 16:12:38 +01:00
|
|
|
"syn 2.0.96",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
2024-05-11 21:14:20 +02:00
|
|
|
[[package]]
|
|
|
|
name = "flate2"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "1.0.35"
|
2024-05-11 21:14:20 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "c936bfdafb507ebbf50b8074c54fa31c5be9a1e7e5f467dd659697041407d07c"
|
2024-05-11 21:14:20 +02:00
|
|
|
dependencies = [
|
|
|
|
"crc32fast",
|
|
|
|
"miniz_oxide",
|
|
|
|
]
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "fs-err"
|
|
|
|
version = "2.11.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "88a41f105fe1d5b6b34b2055e3dc59bb79b46b48b2040b9e6c7b4b5de097aa41"
|
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
|
|
|
]
|
|
|
|
|
2024-06-03 21:08:26 +02:00
|
|
|
[[package]]
|
|
|
|
name = "funty"
|
|
|
|
version = "2.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e6d5a32815ae3f33302d95fdcb2ce17862f8c65363dcfd29360480ba1001fc9c"
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "glob"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "0.3.2"
|
2024-11-13 19:53:58 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "a8d1add55171497b4705a648c6b583acafb01d58050a51727785f0b2c8e0a2b2"
|
2024-11-13 19:53:58 +01:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "goblin"
|
|
|
|
version = "0.6.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0d6b4de4a8eb6c46a8c77e1d3be942cb9a8bf073c22374578e5ba4b08ed0ff68"
|
|
|
|
dependencies = [
|
|
|
|
"log",
|
|
|
|
"plain",
|
|
|
|
"scroll",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "hashbrown"
|
|
|
|
version = "0.12.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888"
|
|
|
|
|
2024-05-25 11:16:37 +02:00
|
|
|
[[package]]
|
|
|
|
name = "heck"
|
|
|
|
version = "0.4.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "hermit-abi"
|
|
|
|
version = "0.1.19"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "62b467343b94ba476dcb2500d242dadbb39557df889310ac77c5d99100aaac33"
|
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "indexmap"
|
|
|
|
version = "1.9.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99"
|
|
|
|
dependencies = [
|
|
|
|
"autocfg",
|
2025-02-16 13:13:54 +01:00
|
|
|
"hashbrown",
|
2024-05-25 11:16:37 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "itoa"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "1.0.14"
|
2024-05-25 11:16:37 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "d75a2a4b1b190afb6f5425f10f6a8f959d2ea0b9c2b1d79553551850539e4674"
|
2024-05-25 11:16:37 +02:00
|
|
|
|
2024-05-11 23:16:41 +02:00
|
|
|
[[package]]
|
|
|
|
name = "jobserver"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "0.1.32"
|
2024-05-11 23:16:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "48d1dbcbbeb6a7fec7e059840aa538bd62aaccf972c7346c4d9d2059312853d0"
|
2024-05-11 23:16:41 +02:00
|
|
|
dependencies = [
|
|
|
|
"libc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "libc"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "0.2.169"
|
2024-05-11 23:16:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "b5aba8db14291edd000dfcc4d620c7ebfb122c613afb886ca8803fa4e128a20a"
|
2024-05-25 11:16:37 +02:00
|
|
|
|
2024-05-11 14:41:09 +02:00
|
|
|
[[package]]
|
|
|
|
name = "log"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "0.4.22"
|
2024-05-11 14:41:09 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
|
2024-05-11 14:41:09 +02:00
|
|
|
|
2024-05-12 13:51:41 +02:00
|
|
|
[[package]]
|
|
|
|
name = "memchr"
|
2024-06-27 21:04:31 +02:00
|
|
|
version = "2.7.4"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-06-27 21:04:31 +02:00
|
|
|
checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
|
2024-05-12 13:51:41 +02:00
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "mime"
|
|
|
|
version = "0.3.17"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "mime_guess"
|
|
|
|
version = "2.0.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f7c44f8e672c00fe5308fa235f821cb4198414e1c77935c1ab6948d3fd78550e"
|
|
|
|
dependencies = [
|
|
|
|
"mime",
|
|
|
|
"unicase",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "minimal-lexical"
|
|
|
|
version = "0.2.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
|
|
|
|
|
2024-05-11 21:14:20 +02:00
|
|
|
[[package]]
|
|
|
|
name = "miniz_oxide"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "0.8.2"
|
2024-05-11 21:14:20 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "4ffbe83022cedc1d264172192511ae958937694cd57ce297164951b8b3568394"
|
2024-05-11 21:14:20 +02:00
|
|
|
dependencies = [
|
2024-08-29 20:08:46 +02:00
|
|
|
"adler2",
|
2024-05-11 21:14:20 +02:00
|
|
|
]
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "nom"
|
|
|
|
version = "7.1.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
|
|
|
|
dependencies = [
|
|
|
|
"memchr",
|
|
|
|
"minimal-lexical",
|
|
|
|
]
|
|
|
|
|
2024-05-11 23:16:41 +02:00
|
|
|
[[package]]
|
|
|
|
name = "once_cell"
|
2024-10-11 21:42:26 +02:00
|
|
|
version = "1.20.2"
|
2024-05-11 23:16:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-10-11 21:42:26 +02:00
|
|
|
checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
|
2024-05-11 23:16:41 +02:00
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "oneshot-uniffi"
|
|
|
|
version = "0.1.6"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6c548d5c78976f6955d72d0ced18c48ca07030f7a1d4024529fedd7c1c01b29c"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "os_str_bytes"
|
|
|
|
version = "6.6.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "e2355d85b9a3786f481747ced0e0ff2ba35213a1f9bd406ed906554d7af805a1"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "paste"
|
|
|
|
version = "1.0.15"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
|
|
|
2024-05-11 23:16:41 +02:00
|
|
|
[[package]]
|
|
|
|
name = "pkg-config"
|
2024-10-11 21:42:26 +02:00
|
|
|
version = "0.3.31"
|
2024-05-11 23:16:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-10-11 21:42:26 +02:00
|
|
|
checksum = "953ec861398dccce10c670dfeaf3ec4911ca479e9c02154b3a215178c5f566f2"
|
2024-05-11 23:16:41 +02:00
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "plain"
|
|
|
|
version = "0.2.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b4596b6d070b27117e987119b4dac604f3c58cfb0b191112e24771b2faeac1a6"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-error"
|
|
|
|
version = "1.0.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro-error-attr",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn 1.0.109",
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "proc-macro-error-attr"
|
|
|
|
version = "1.0.4"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"version_check",
|
|
|
|
]
|
|
|
|
|
2024-05-12 13:51:41 +02:00
|
|
|
[[package]]
|
|
|
|
name = "proc-macro2"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "1.0.93"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "60946a68e5f9d28b0dc1c21bb8a97ee7d018a8b322fa57838ba31cc878e22d99"
|
2024-05-12 13:51:41 +02:00
|
|
|
dependencies = [
|
|
|
|
"unicode-ident",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "quote"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "1.0.38"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "0e4dccaaaf89514f546c693ddc140f729f958c247918a13380cccc6078391acc"
|
2024-05-12 13:51:41 +02:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
]
|
|
|
|
|
2024-06-03 21:08:26 +02:00
|
|
|
[[package]]
|
|
|
|
name = "radium"
|
|
|
|
version = "0.7.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "dc33ff2d4973d518d823d61aa239014831e521c75da58e3df4840d3f47749d09"
|
|
|
|
|
2024-05-16 21:32:33 +02:00
|
|
|
[[package]]
|
|
|
|
name = "rust-lzma"
|
|
|
|
version = "0.6.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7d62915608f6cee1d7f2fc00f28b4f058ff79d6e4ec3c2fe0006b09b52437c84"
|
|
|
|
dependencies = [
|
|
|
|
"pkg-config",
|
|
|
|
"vcpkg",
|
|
|
|
]
|
|
|
|
|
2024-05-25 11:16:37 +02:00
|
|
|
[[package]]
|
|
|
|
name = "ryu"
|
|
|
|
version = "1.0.18"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "scroll"
|
|
|
|
version = "0.11.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "04c565b551bafbef4157586fa379538366e4385d42082f255bfd96e4fe8519da"
|
|
|
|
dependencies = [
|
|
|
|
"scroll_derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "scroll_derive"
|
|
|
|
version = "0.11.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1db149f81d46d2deba7cd3c50772474707729550221e69588478ebf9ada425ae"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-11-24 16:12:38 +01:00
|
|
|
"syn 2.0.96",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "semver"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "1.0.24"
|
2024-11-13 19:53:58 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "3cb6eb87a131f756572d7fb904f6e7b68633f09cca868c5df1c4b8d1a694bbba"
|
2024-11-13 19:53:58 +01:00
|
|
|
dependencies = [
|
|
|
|
"serde",
|
|
|
|
]
|
|
|
|
|
2024-05-25 11:16:37 +02:00
|
|
|
[[package]]
|
|
|
|
name = "serde"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "1.0.217"
|
2024-05-25 11:16:37 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "02fc4265df13d6fa1d00ecff087228cc0a2b5f3c0e87e258d8b94a156e984c70"
|
2024-05-25 11:16:37 +02:00
|
|
|
dependencies = [
|
|
|
|
"serde_derive",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_derive"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "1.0.217"
|
2024-05-25 11:16:37 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "5a9bf7cf98d04a2b28aead066b7496853d4779c9cc183c440dbac457641e19a0"
|
2024-05-25 11:16:37 +02:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-11-24 16:12:38 +01:00
|
|
|
"syn 2.0.96",
|
2024-05-25 11:16:37 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "serde_json"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "1.0.135"
|
2024-05-25 11:16:37 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "2b0d7ba2887406110130a978386c4e1befb98c674b4fba677954e4db976630d9"
|
2024-05-25 11:16:37 +02:00
|
|
|
dependencies = [
|
|
|
|
"itoa",
|
2024-08-29 20:08:46 +02:00
|
|
|
"memchr",
|
2024-05-25 11:16:37 +02:00
|
|
|
"ryu",
|
|
|
|
"serde",
|
2024-05-13 00:17:40 +02:00
|
|
|
]
|
|
|
|
|
2024-05-09 23:30:18 +02:00
|
|
|
[[package]]
|
2024-05-25 11:16:37 +02:00
|
|
|
name = "servicepoint"
|
2025-02-15 12:15:09 +01:00
|
|
|
version = "0.13.1"
|
2025-02-16 13:13:54 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "93b52049be55a15fe37c13249d7f96aa8a5de56e1a41838e74a822ee8316a0c4"
|
2024-05-10 18:33:51 +02:00
|
|
|
dependencies = [
|
2024-06-03 21:08:26 +02:00
|
|
|
"bitvec",
|
2024-05-11 23:16:41 +02:00
|
|
|
"bzip2",
|
2024-05-11 21:14:20 +02:00
|
|
|
"flate2",
|
2024-05-11 14:41:09 +02:00
|
|
|
"log",
|
2024-10-12 18:23:36 +02:00
|
|
|
"once_cell",
|
2024-05-16 21:32:33 +02:00
|
|
|
"rust-lzma",
|
2024-11-24 16:12:38 +01:00
|
|
|
"thiserror 2.0.11",
|
2024-05-11 23:16:41 +02:00
|
|
|
"zstd",
|
2024-05-10 18:33:51 +02:00
|
|
|
]
|
|
|
|
|
2024-05-25 11:16:37 +02:00
|
|
|
[[package]]
|
2024-11-13 19:53:58 +01:00
|
|
|
name = "servicepoint_binding_uniffi"
|
2025-02-15 12:15:09 +01:00
|
|
|
version = "0.13.1"
|
2024-05-25 11:16:37 +02:00
|
|
|
dependencies = [
|
2024-05-26 13:25:36 +02:00
|
|
|
"servicepoint",
|
2024-11-24 16:12:38 +01:00
|
|
|
"thiserror 2.0.11",
|
2024-11-13 19:53:58 +01:00
|
|
|
"uniffi",
|
|
|
|
"uniffi-bindgen-cs",
|
|
|
|
"uniffi-bindgen-go",
|
2024-05-25 11:16:37 +02:00
|
|
|
]
|
|
|
|
|
2024-08-29 20:08:46 +02:00
|
|
|
[[package]]
|
|
|
|
name = "shlex"
|
|
|
|
version = "1.3.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64"
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "siphasher"
|
|
|
|
version = "0.3.11"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "smawk"
|
|
|
|
version = "0.3.2"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "b7c388c1b5e93756d0c740965c41e8822f866621d41acbdf6336a6a168f8840c"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "static_assertions"
|
|
|
|
version = "1.1.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "strsim"
|
|
|
|
version = "0.10.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
|
|
|
version = "1.0.109"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"unicode-ident",
|
|
|
|
]
|
|
|
|
|
2024-05-13 00:17:40 +02:00
|
|
|
[[package]]
|
|
|
|
name = "syn"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "2.0.96"
|
2024-05-13 00:17:40 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "d5d0adab1ae378d7f53bdebc67a39f1f151407ef230f0ce2883572f5d8985c80"
|
2024-05-12 13:51:41 +02:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"unicode-ident",
|
|
|
|
]
|
|
|
|
|
2024-06-03 21:08:26 +02:00
|
|
|
[[package]]
|
|
|
|
name = "tap"
|
|
|
|
version = "1.0.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "termcolor"
|
|
|
|
version = "1.4.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
|
|
|
|
dependencies = [
|
|
|
|
"winapi-util",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "textwrap"
|
|
|
|
version = "0.16.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "23d434d3f8967a09480fb04132ebe0a3e088c173e6d0ee7897abbdf4eab0f8b9"
|
|
|
|
dependencies = [
|
|
|
|
"smawk",
|
|
|
|
"unicode-linebreak",
|
|
|
|
"unicode-width",
|
|
|
|
]
|
|
|
|
|
2024-10-12 16:18:27 +02:00
|
|
|
[[package]]
|
|
|
|
name = "thiserror"
|
2024-11-12 19:38:20 +01:00
|
|
|
version = "1.0.69"
|
2024-10-12 16:18:27 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-12 19:38:20 +01:00
|
|
|
checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52"
|
2024-10-12 16:18:27 +02:00
|
|
|
dependencies = [
|
2024-11-24 16:12:38 +01:00
|
|
|
"thiserror-impl 1.0.69",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror"
|
|
|
|
version = "2.0.11"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "d452f284b73e6d76dd36758a0c8684b1d5be31f92b89d07fd5822175732206fc"
|
|
|
|
dependencies = [
|
|
|
|
"thiserror-impl 2.0.11",
|
2024-10-12 16:18:27 +02:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror-impl"
|
2024-11-12 19:38:20 +01:00
|
|
|
version = "1.0.69"
|
2024-10-12 16:18:27 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-12 19:38:20 +01:00
|
|
|
checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1"
|
2024-10-12 16:18:27 +02:00
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
2024-11-24 16:12:38 +01:00
|
|
|
"syn 2.0.96",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "thiserror-impl"
|
|
|
|
version = "2.0.11"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "26afc1baea8a989337eeb52b6e72a039780ce45c3edfcc9c5b9d112feeb173c2"
|
|
|
|
dependencies = [
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"syn 2.0.96",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "toml"
|
|
|
|
version = "0.5.11"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
|
|
|
|
dependencies = [
|
|
|
|
"serde",
|
2024-10-12 16:18:27 +02:00
|
|
|
]
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "unicase"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "2.8.1"
|
2024-11-13 19:53:58 +01:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "75b844d17643ee918803943289730bec8aac480150456169e647ed0b576ba539"
|
2024-11-13 19:53:58 +01:00
|
|
|
|
2024-05-12 13:51:41 +02:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-ident"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "1.0.14"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-11-24 16:12:38 +01:00
|
|
|
checksum = "adb9e6ca4f869e1180728b7950e35922a7fc6397f7b641499e8f3ef06e50dc83"
|
2024-05-12 13:51:41 +02:00
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "unicode-linebreak"
|
|
|
|
version = "0.1.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "3b09c83c3c29d37506a3e260c08c03743a6bb66a9cd432c6934ab501a190571f"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "unicode-width"
|
|
|
|
version = "0.1.14"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi"
|
|
|
|
version = "0.25.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "21345172d31092fd48c47fd56c53d4ae9e41c4b1f559fb8c38c1ab1685fd919f"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"uniffi_build",
|
|
|
|
"uniffi_core",
|
|
|
|
"uniffi_macros",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi-bindgen-cs"
|
|
|
|
version = "0.8.3+v0.25.0"
|
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce#f68639fbc720b50ebe561ba75c66c84dc456bdce"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"askama 0.11.1",
|
|
|
|
"camino",
|
2025-02-16 13:13:54 +01:00
|
|
|
"clap",
|
2024-11-13 19:53:58 +01:00
|
|
|
"extend",
|
|
|
|
"fs-err",
|
2025-02-16 13:13:54 +01:00
|
|
|
"heck",
|
2024-11-13 19:53:58 +01:00
|
|
|
"paste",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
"textwrap",
|
2025-02-16 13:13:54 +01:00
|
|
|
"toml",
|
2024-11-13 19:53:58 +01:00
|
|
|
"uniffi_bindgen 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce)",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi-bindgen-go"
|
2024-11-24 16:12:38 +01:00
|
|
|
version = "0.2.2+v0.25.0"
|
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c#ba23bab72f1a9bcc39ce81924d3d9265598e017c"
|
2024-11-13 19:53:58 +01:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"askama 0.12.1",
|
|
|
|
"camino",
|
|
|
|
"cargo_metadata",
|
2025-02-16 13:13:54 +01:00
|
|
|
"clap",
|
2024-11-13 19:53:58 +01:00
|
|
|
"extend",
|
|
|
|
"fs-err",
|
2025-02-16 13:13:54 +01:00
|
|
|
"heck",
|
2024-11-13 19:53:58 +01:00
|
|
|
"paste",
|
|
|
|
"serde",
|
|
|
|
"serde_json",
|
|
|
|
"textwrap",
|
2025-02-16 13:13:54 +01:00
|
|
|
"toml",
|
2024-11-24 16:12:38 +01:00
|
|
|
"uniffi_bindgen 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c)",
|
|
|
|
"uniffi_meta 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c)",
|
|
|
|
"uniffi_udl 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c)",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_bindgen"
|
|
|
|
version = "0.25.0"
|
2024-11-24 16:12:38 +01:00
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c#ba23bab72f1a9bcc39ce81924d3d9265598e017c"
|
2024-11-13 19:53:58 +01:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"askama 0.12.1",
|
|
|
|
"camino",
|
|
|
|
"cargo_metadata",
|
|
|
|
"fs-err",
|
|
|
|
"glob",
|
|
|
|
"goblin",
|
2025-02-16 13:13:54 +01:00
|
|
|
"heck",
|
2024-11-13 19:53:58 +01:00
|
|
|
"once_cell",
|
|
|
|
"paste",
|
|
|
|
"serde",
|
|
|
|
"textwrap",
|
2025-02-16 13:13:54 +01:00
|
|
|
"toml",
|
2024-11-24 16:12:38 +01:00
|
|
|
"uniffi_meta 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c)",
|
|
|
|
"uniffi_testing 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c)",
|
|
|
|
"uniffi_udl 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c)",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_bindgen"
|
|
|
|
version = "0.25.0"
|
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce#f68639fbc720b50ebe561ba75c66c84dc456bdce"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"askama 0.12.1",
|
|
|
|
"camino",
|
|
|
|
"cargo_metadata",
|
|
|
|
"fs-err",
|
|
|
|
"glob",
|
|
|
|
"goblin",
|
2025-02-16 13:13:54 +01:00
|
|
|
"heck",
|
2024-11-13 19:53:58 +01:00
|
|
|
"once_cell",
|
|
|
|
"paste",
|
|
|
|
"serde",
|
|
|
|
"textwrap",
|
2025-02-16 13:13:54 +01:00
|
|
|
"toml",
|
2024-11-13 19:53:58 +01:00
|
|
|
"uniffi_meta 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce)",
|
|
|
|
"uniffi_testing 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce)",
|
|
|
|
"uniffi_udl 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce)",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_bindgen"
|
|
|
|
version = "0.25.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "fd992f2929a053829d5875af1eff2ee3d7a7001cb3b9a46cc7895f2caede6940"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"askama 0.12.1",
|
|
|
|
"camino",
|
|
|
|
"cargo_metadata",
|
|
|
|
"fs-err",
|
|
|
|
"glob",
|
|
|
|
"goblin",
|
2025-02-16 13:13:54 +01:00
|
|
|
"heck",
|
2024-11-13 19:53:58 +01:00
|
|
|
"once_cell",
|
|
|
|
"paste",
|
|
|
|
"serde",
|
2025-02-16 13:13:54 +01:00
|
|
|
"toml",
|
2024-11-13 19:53:58 +01:00
|
|
|
"uniffi_meta 0.25.3",
|
|
|
|
"uniffi_testing 0.25.3",
|
|
|
|
"uniffi_udl 0.25.3",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_build"
|
|
|
|
version = "0.25.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "001964dd3682d600084b3aaf75acf9c3426699bc27b65e96bb32d175a31c74e9"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"camino",
|
|
|
|
"uniffi_bindgen 0.25.3",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_checksum_derive"
|
|
|
|
version = "0.25.0"
|
2024-11-24 16:12:38 +01:00
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c#ba23bab72f1a9bcc39ce81924d3d9265598e017c"
|
2024-11-13 19:53:58 +01:00
|
|
|
dependencies = [
|
|
|
|
"quote",
|
2024-11-24 16:12:38 +01:00
|
|
|
"syn 2.0.96",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_checksum_derive"
|
|
|
|
version = "0.25.0"
|
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce#f68639fbc720b50ebe561ba75c66c84dc456bdce"
|
|
|
|
dependencies = [
|
|
|
|
"quote",
|
2024-11-24 16:12:38 +01:00
|
|
|
"syn 2.0.96",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_checksum_derive"
|
|
|
|
version = "0.25.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "55137c122f712d9330fd985d66fa61bdc381752e89c35708c13ce63049a3002c"
|
|
|
|
dependencies = [
|
|
|
|
"quote",
|
2024-11-24 16:12:38 +01:00
|
|
|
"syn 2.0.96",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_core"
|
|
|
|
version = "0.25.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "6121a127a3af1665cd90d12dd2b3683c2643c5103281d0fed5838324ca1fad5b"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"bytes",
|
|
|
|
"camino",
|
|
|
|
"log",
|
|
|
|
"once_cell",
|
|
|
|
"oneshot-uniffi",
|
|
|
|
"paste",
|
|
|
|
"static_assertions",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_macros"
|
|
|
|
version = "0.25.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "11cf7a58f101fcedafa5b77ea037999b88748607f0ef3a33eaa0efc5392e92e4"
|
|
|
|
dependencies = [
|
|
|
|
"bincode",
|
|
|
|
"camino",
|
|
|
|
"fs-err",
|
|
|
|
"once_cell",
|
|
|
|
"proc-macro2",
|
|
|
|
"quote",
|
|
|
|
"serde",
|
2024-11-24 16:12:38 +01:00
|
|
|
"syn 2.0.96",
|
2025-02-16 13:13:54 +01:00
|
|
|
"toml",
|
2024-11-13 19:53:58 +01:00
|
|
|
"uniffi_build",
|
|
|
|
"uniffi_meta 0.25.3",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_meta"
|
|
|
|
version = "0.25.0"
|
2024-11-24 16:12:38 +01:00
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c#ba23bab72f1a9bcc39ce81924d3d9265598e017c"
|
2024-11-13 19:53:58 +01:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"bytes",
|
|
|
|
"siphasher",
|
2024-11-24 16:12:38 +01:00
|
|
|
"uniffi_checksum_derive 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c)",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_meta"
|
|
|
|
version = "0.25.0"
|
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce#f68639fbc720b50ebe561ba75c66c84dc456bdce"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"bytes",
|
|
|
|
"siphasher",
|
|
|
|
"uniffi_checksum_derive 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce)",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_meta"
|
|
|
|
version = "0.25.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "71dc8573a7b1ac4b71643d6da34888273ebfc03440c525121f1b3634ad3417a2"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"bytes",
|
|
|
|
"siphasher",
|
|
|
|
"uniffi_checksum_derive 0.25.3",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_testing"
|
|
|
|
version = "0.25.0"
|
2024-11-24 16:12:38 +01:00
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c#ba23bab72f1a9bcc39ce81924d3d9265598e017c"
|
2024-11-13 19:53:58 +01:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"camino",
|
|
|
|
"cargo_metadata",
|
|
|
|
"fs-err",
|
|
|
|
"once_cell",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_testing"
|
|
|
|
version = "0.25.0"
|
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce#f68639fbc720b50ebe561ba75c66c84dc456bdce"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"camino",
|
|
|
|
"cargo_metadata",
|
|
|
|
"fs-err",
|
|
|
|
"once_cell",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_testing"
|
|
|
|
version = "0.25.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "118448debffcb676ddbe8c5305fb933ab7e0123753e659a71dc4a693f8d9f23c"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"camino",
|
|
|
|
"cargo_metadata",
|
|
|
|
"fs-err",
|
|
|
|
"once_cell",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_udl"
|
|
|
|
version = "0.25.0"
|
2024-11-24 16:12:38 +01:00
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c#ba23bab72f1a9bcc39ce81924d3d9265598e017c"
|
2024-11-13 19:53:58 +01:00
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
2024-11-24 16:12:38 +01:00
|
|
|
"uniffi_meta 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c)",
|
|
|
|
"uniffi_testing 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c)",
|
|
|
|
"weedle2 4.0.0 (git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c)",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_udl"
|
|
|
|
version = "0.25.0"
|
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce#f68639fbc720b50ebe561ba75c66c84dc456bdce"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"uniffi_meta 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce)",
|
|
|
|
"uniffi_testing 0.25.0 (git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce)",
|
|
|
|
"weedle2 4.0.0 (git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce)",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "uniffi_udl"
|
|
|
|
version = "0.25.3"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "889edb7109c6078abe0e53e9b4070cf74a6b3468d141bdf5ef1bd4d1dc24a1c3"
|
|
|
|
dependencies = [
|
|
|
|
"anyhow",
|
|
|
|
"uniffi_meta 0.25.3",
|
|
|
|
"uniffi_testing 0.25.3",
|
|
|
|
"weedle2 4.0.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
|
|
|
]
|
|
|
|
|
2024-05-16 21:32:33 +02:00
|
|
|
[[package]]
|
|
|
|
name = "vcpkg"
|
|
|
|
version = "0.2.15"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"
|
|
|
|
|
2024-10-12 16:18:27 +02:00
|
|
|
[[package]]
|
|
|
|
name = "version_check"
|
|
|
|
version = "0.9.5"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
|
|
|
2024-11-13 19:53:58 +01:00
|
|
|
[[package]]
|
|
|
|
name = "weedle2"
|
|
|
|
version = "4.0.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "2e79c5206e1f43a2306fd64bdb95025ee4228960f2e6c5a8b173f3caaf807741"
|
|
|
|
dependencies = [
|
|
|
|
"nom",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "weedle2"
|
|
|
|
version = "4.0.0"
|
2024-11-24 16:12:38 +01:00
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-go.git?rev=ba23bab72f1a9bcc39ce81924d3d9265598e017c#ba23bab72f1a9bcc39ce81924d3d9265598e017c"
|
2024-11-13 19:53:58 +01:00
|
|
|
dependencies = [
|
|
|
|
"nom",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "weedle2"
|
|
|
|
version = "4.0.0"
|
|
|
|
source = "git+https://github.com/NordSecurity/uniffi-bindgen-cs?rev=f68639fbc720b50ebe561ba75c66c84dc456bdce#f68639fbc720b50ebe561ba75c66c84dc456bdce"
|
|
|
|
dependencies = [
|
|
|
|
"nom",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi"
|
|
|
|
version = "0.3.9"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
|
|
|
|
dependencies = [
|
|
|
|
"winapi-i686-pc-windows-gnu",
|
|
|
|
"winapi-x86_64-pc-windows-gnu",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-i686-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-util"
|
|
|
|
version = "0.1.9"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
|
|
|
|
dependencies = [
|
2024-11-24 16:12:38 +01:00
|
|
|
"windows-sys",
|
2024-11-13 19:53:58 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "winapi-x86_64-pc-windows-gnu"
|
|
|
|
version = "0.4.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"
|
|
|
|
|
2024-08-29 20:08:46 +02:00
|
|
|
[[package]]
|
|
|
|
name = "windows-sys"
|
|
|
|
version = "0.59.0"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
|
|
dependencies = [
|
|
|
|
"windows-targets",
|
|
|
|
]
|
|
|
|
|
2024-05-12 13:51:41 +02:00
|
|
|
[[package]]
|
|
|
|
name = "windows-targets"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "0.52.6"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
2024-05-12 13:51:41 +02:00
|
|
|
dependencies = [
|
|
|
|
"windows_aarch64_gnullvm",
|
|
|
|
"windows_aarch64_msvc",
|
|
|
|
"windows_i686_gnu",
|
|
|
|
"windows_i686_gnullvm",
|
|
|
|
"windows_i686_msvc",
|
|
|
|
"windows_x86_64_gnu",
|
|
|
|
"windows_x86_64_gnullvm",
|
|
|
|
"windows_x86_64_msvc",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_gnullvm"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "0.52.6"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
2024-05-12 13:51:41 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_aarch64_msvc"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "0.52.6"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
2024-05-12 13:51:41 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnu"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "0.52.6"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
2024-05-12 13:51:41 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_gnullvm"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "0.52.6"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
2024-05-12 13:51:41 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_i686_msvc"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "0.52.6"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
2024-05-12 13:51:41 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnu"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "0.52.6"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
2024-05-12 13:51:41 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_gnullvm"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "0.52.6"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
2024-05-12 13:51:41 +02:00
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "windows_x86_64_msvc"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "0.52.6"
|
2024-05-12 13:51:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
2024-05-12 13:51:41 +02:00
|
|
|
|
2024-06-03 21:08:26 +02:00
|
|
|
[[package]]
|
|
|
|
name = "wyz"
|
|
|
|
version = "0.5.1"
|
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
|
|
checksum = "05f360fc0b24296329c78fda852a1e9ae82de9cf7b27dae4b7f62f118f77b9ed"
|
|
|
|
dependencies = [
|
|
|
|
"tap",
|
|
|
|
]
|
|
|
|
|
2024-05-11 23:16:41 +02:00
|
|
|
[[package]]
|
|
|
|
name = "zstd"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "0.13.2"
|
2024-05-11 23:16:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "fcf2b778a664581e31e389454a7072dab1647606d44f7feea22cd5abb9c9f3f9"
|
2024-05-11 23:16:41 +02:00
|
|
|
dependencies = [
|
|
|
|
"zstd-safe",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zstd-safe"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "7.2.1"
|
2024-05-11 23:16:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "54a3ab4db68cea366acc5c897c7b4d4d1b8994a9cd6e6f841f8964566a419059"
|
2024-05-11 23:16:41 +02:00
|
|
|
dependencies = [
|
|
|
|
"zstd-sys",
|
|
|
|
]
|
|
|
|
|
|
|
|
[[package]]
|
|
|
|
name = "zstd-sys"
|
2024-08-29 20:08:46 +02:00
|
|
|
version = "2.0.13+zstd.1.5.6"
|
2024-05-11 23:16:41 +02:00
|
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
2024-08-29 20:08:46 +02:00
|
|
|
checksum = "38ff0f21cfee8f97d94cef41359e0c89aa6113028ab0291aa8ca0038995a95aa"
|
2024-05-11 23:16:41 +02:00
|
|
|
dependencies = [
|
|
|
|
"cc",
|
|
|
|
"pkg-config",
|
|
|
|
]
|