Skip to content
Cargo.lock 55.2 KiB
Newer Older
theMackabu's avatar
theMackabu committed
dependencies = [
 "autocfg",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "merge-struct"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d82012d21e24135b839b6b9bebd622b7ff0cb40071498bc2d066d3a6d04dd4a"
dependencies = [
 "serde",
 "serde_json",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "merkle_hash"
version = "3.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c2019c22dd07fa00549b671a150d126929eb1af56a4f4808a2e62aca8676995d"
dependencies = [
 "anyhow",
 "blake3",
 "camino",
 "rayon",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "mime"
version = "0.3.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"

theMackabu's avatar
theMackabu committed
[[package]]
name = "miniz_oxide"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7810e0be55b428ada41041c41f32c9f1a42817901b4ccf45fa3d4b6561e74c7"
dependencies = [
 "adler",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "mio"
theMackabu's avatar
theMackabu committed
version = "0.8.8"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "927a765cd3fc26206e66b296465fa9d3e5ab003e651c1b3c060e7956d96b19d2"
theMackabu's avatar
theMackabu committed
dependencies = [
 "libc",
 "log",
 "wasi",
theMackabu's avatar
theMackabu committed
 "windows-sys 0.48.0",
theMackabu's avatar
theMackabu committed
[[package]]
name = "native-tls"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "07226173c32f2926027b63cce4bcd8076c3552846cbe7925f3aaffeac0a3b92e"
dependencies = [
 "lazy_static",
 "libc",
 "log",
 "openssl",
 "openssl-probe",
 "openssl-sys",
 "schannel",
 "security-framework",
 "security-framework-sys",
 "tempfile",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "newline-converter"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f71d09d5c87634207f894c6b31b6a2b2c64ea3bdcf71bd5599fdbbe1600c00f"
dependencies = [
 "unicode-segmentation",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "notify"
theMackabu's avatar
theMackabu committed
version = "6.1.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "6205bd8bb1e454ad2e27422015fb5e4f2bcc7e08fa8f27058670d208324a4d2d"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "bitflags 2.4.0",
theMackabu's avatar
theMackabu committed
 "crossbeam-channel",
 "filetime",
 "fsevent-sys",
 "inotify",
 "kqueue",
 "libc",
theMackabu's avatar
theMackabu committed
 "log",
theMackabu's avatar
theMackabu committed
 "mio",
 "walkdir",
theMackabu's avatar
theMackabu committed
 "windows-sys 0.48.0",
theMackabu's avatar
theMackabu committed
]

[[package]]
name = "notify-debouncer-mini"
theMackabu's avatar
theMackabu committed
version = "0.4.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "5d40b221972a1fc5ef4d858a2f671fb34c75983eb385463dff3780eeff6a9d43"
theMackabu's avatar
theMackabu committed
dependencies = [
 "crossbeam-channel",
theMackabu's avatar
theMackabu committed
 "log",
theMackabu's avatar
theMackabu committed
 "notify",
]

[[package]]
name = "num_cpus"
theMackabu's avatar
theMackabu committed
version = "1.16.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "4161fcb6d602d4d2081af7c3a45852d875a03dd337a6bfdd6e06407b61342a43"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "hermit-abi",
theMackabu's avatar
theMackabu committed
 "libc",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "number_prefix"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "830b246a0e5f20af87141b25c173cd1b609bd7779a4617d6ec582abaf90870f3"

theMackabu's avatar
theMackabu committed
[[package]]
name = "object"
version = "0.32.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9cf5f9dd3933bd50a9e1f149ec995f39ae2c496d31fd772c1fd45ebc27e902b0"
dependencies = [
 "memchr",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "once_cell"
theMackabu's avatar
theMackabu committed
version = "1.18.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d"
theMackabu's avatar
theMackabu committed
[[package]]
theMackabu's avatar
theMackabu committed
name = "openssl"
theMackabu's avatar
theMackabu committed
version = "0.10.57"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "bac25ee399abb46215765b1cb35bc0212377e58a061560d8b29b024fd0430e7c"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "bitflags 2.4.0",
theMackabu's avatar
theMackabu committed
 "cfg-if",
 "foreign-types",
 "libc",
 "once_cell",
 "openssl-macros",
 "openssl-sys",
theMackabu's avatar
theMackabu committed
name = "openssl-macros"
theMackabu's avatar
theMackabu committed
version = "0.1.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "a948666b637a0f465e8564c73e89d4dde00d72d4d473cc972f390fc3dcee7d9c"
theMackabu's avatar
theMackabu committed
dependencies = [
 "proc-macro2",
 "quote",
theMackabu's avatar
theMackabu committed
 "syn",
theMackabu's avatar
theMackabu committed
]

[[package]]
name = "openssl-probe"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ff011a302c396a5197692431fc1948019154afc178baf7d8e37367442a4601cf"

[[package]]
name = "openssl-sys"
theMackabu's avatar
theMackabu committed
version = "0.9.93"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "db4d56a4c0478783083cfafcc42493dd4a981d41669da64b4572a2a089b51b1d"
theMackabu's avatar
theMackabu committed
dependencies = [
 "cc",
 "libc",
 "pkg-config",
 "vcpkg",
theMackabu's avatar
theMackabu committed
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
 "lock_api",
 "parking_lot_core",
]

[[package]]
name = "parking_lot_core"
theMackabu's avatar
theMackabu committed
version = "0.9.8"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "93f00c865fe7cabf650081affecd3871070f26767e7b2070a3ffae14c654b447"
theMackabu's avatar
theMackabu committed
dependencies = [
 "cfg-if",
 "libc",
theMackabu's avatar
theMackabu committed
 "redox_syscall",
theMackabu's avatar
theMackabu committed
 "smallvec",
theMackabu's avatar
theMackabu committed
 "windows-targets 0.48.5",
theMackabu's avatar
theMackabu committed
[[package]]
name = "percent-encoding"
theMackabu's avatar
theMackabu committed
version = "2.3.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "9b2a4787296e9989611394c33f193f676704af1686e70b8f8033ab5ba9a35a94"
theMackabu's avatar
theMackabu committed

theMackabu's avatar
theMackabu committed
[[package]]
name = "pest"
theMackabu's avatar
theMackabu committed
version = "2.7.4"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "c022f1e7b65d6a24c0dbbd5fb344c66881bc01f3e5ae74a1c8100f2f985d98a4"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "memchr",
theMackabu's avatar
theMackabu committed
 "thiserror",
 "ucd-trie",
]

[[package]]
name = "pest_derive"
theMackabu's avatar
theMackabu committed
version = "2.7.4"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "35513f630d46400a977c4cb58f78e1bfbe01434316e60c37d27b9ad6139c66d8"
theMackabu's avatar
theMackabu committed
dependencies = [
 "pest",
 "pest_generator",
]

[[package]]
name = "pest_generator"
theMackabu's avatar
theMackabu committed
version = "2.7.4"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "bc9fc1b9e7057baba189b5c626e2d6f40681ae5b6eb064dc7c7834101ec8123a"
theMackabu's avatar
theMackabu committed
dependencies = [
 "pest",
 "pest_meta",
 "proc-macro2",
 "quote",
theMackabu's avatar
theMackabu committed
 "syn",
theMackabu's avatar
theMackabu committed
]

[[package]]
name = "pest_meta"
theMackabu's avatar
theMackabu committed
version = "2.7.4"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "1df74e9e7ec4053ceb980e7c0c8bd3594e977fde1af91daba9c928e8e8c6708d"
theMackabu's avatar
theMackabu committed
dependencies = [
 "once_cell",
 "pest",
 "sha2",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "pin-project-lite"
theMackabu's avatar
theMackabu committed
version = "0.2.13"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "8afb450f006bf6385ca15ef45d71d2288452bc3683ce2e2cacc0d18e4be60b58"
theMackabu's avatar
theMackabu committed

[[package]]
name = "pin-utils"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"

[[package]]
name = "pkg-config"
theMackabu's avatar
theMackabu committed
version = "0.3.27"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "26072860ba924cbfa98ea39c8c19b4dd6a4a25423dbdf219c1eca91aa0cf6964"
theMackabu's avatar
theMackabu committed

[[package]]
theMackabu's avatar
theMackabu committed
name = "portable-atomic"
theMackabu's avatar
theMackabu committed
version = "1.4.3"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "31114a898e107c51bb1609ffaf55a0e011cf6a4d7f1170d0015a165082c0338b"
theMackabu's avatar
theMackabu committed

[[package]]
name = "pretty_number"
version = "0.1.0"

theMackabu's avatar
theMackabu committed
[[package]]
name = "proc-macro2"
theMackabu's avatar
theMackabu committed
version = "1.0.67"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "3d433d9f1a3e8c1263d9456598b16fec66f4acc9a74dacffd35c7bb09b3a1328"
theMackabu's avatar
theMackabu committed
dependencies = [
 "unicode-ident",
]

[[package]]
name = "quote"
theMackabu's avatar
theMackabu committed
version = "1.0.33"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae"
theMackabu's avatar
theMackabu committed
dependencies = [
 "proc-macro2",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "rayon"
theMackabu's avatar
theMackabu committed
version = "1.8.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "9c27db03db7734835b3f53954b534c91069375ce6ccaa2e065441e07d9b6cdb1"
theMackabu's avatar
theMackabu committed
dependencies = [
 "either",
 "rayon-core",
]

[[package]]
name = "rayon-core"
theMackabu's avatar
theMackabu committed
version = "1.12.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "5ce3fb6ad83f861aac485e76e1985cd109d9a3713802152be56c3b1f0e0658ed"
theMackabu's avatar
theMackabu committed
dependencies = [
 "crossbeam-deque",
 "crossbeam-utils",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "redox_syscall"
theMackabu's avatar
theMackabu committed
version = "0.3.5"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "567664f262709473930a4bf9e51bf2ebf3348f2e748ccc50dea20646858f8f29"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "bitflags 1.3.2",
theMackabu's avatar
theMackabu committed
[[package]]
theMackabu's avatar
theMackabu committed
name = "regex"
version = "1.9.6"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "ebee201405406dbf528b8b672104ae6d6d63e6d118cb10e4d51abbc7b58044ff"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "aho-corasick",
 "memchr",
 "regex-automata",
 "regex-syntax",
theMackabu's avatar
theMackabu committed
[[package]]
theMackabu's avatar
theMackabu committed
name = "regex-automata"
version = "0.3.9"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "59b23e92ee4318893fa3fe3e6fb365258efbfe6ac6ab30f090cdcbb7aa37efa9"
theMackabu's avatar
theMackabu committed
dependencies = [
 "aho-corasick",
 "memchr",
 "regex-syntax",
]

[[package]]
name = "regex-syntax"
theMackabu's avatar
theMackabu committed
version = "0.7.5"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "dbb5fb1acd8a1a18b3dd5be62d25485eb770e05afb408a9627d14d451bae12da"
theMackabu's avatar
theMackabu committed
[[package]]
name = "reqwest"
theMackabu's avatar
theMackabu committed
version = "0.11.22"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "046cd98826c46c2ac8ddecae268eb5c2e58628688a5fc7a2643704a73faba95b"
theMackabu's avatar
theMackabu committed
dependencies = [
 "base64",
 "bytes",
 "encoding_rs",
 "futures-core",
 "futures-util",
 "h2",
 "http",
 "http-body",
 "hyper",
 "hyper-tls",
 "ipnet",
 "js-sys",
 "log",
 "mime",
 "native-tls",
 "once_cell",
 "percent-encoding",
 "pin-project-lite",
 "serde",
 "serde_json",
 "serde_urlencoded",
theMackabu's avatar
theMackabu committed
 "system-configuration",
theMackabu's avatar
theMackabu committed
 "tokio",
 "tokio-native-tls",
 "tower-service",
 "url",
 "wasm-bindgen",
 "wasm-bindgen-futures",
 "web-sys",
 "winreg",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "rustc-demangle"
version = "0.1.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d626bb9dae77e28219937af045c257c28bfd3f69333c512553507f5f9798cb76"

theMackabu's avatar
theMackabu committed
[[package]]
name = "rustix"
theMackabu's avatar
theMackabu committed
version = "0.38.15"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "d2f9da0cbd88f9f09e7814e388301c8414c51c62aa6ce1e4b5c551d49d96e531"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "bitflags 2.4.0",
theMackabu's avatar
theMackabu committed
 "errno",
theMackabu's avatar
theMackabu committed
 "libc",
theMackabu's avatar
theMackabu committed
 "linux-raw-sys",
 "windows-sys 0.48.0",
[[package]]
name = "ryu"
theMackabu's avatar
theMackabu committed
version = "1.0.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741"
theMackabu's avatar
theMackabu committed
[[package]]
name = "same-file"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
dependencies = [
 "winapi-util",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "schannel"
theMackabu's avatar
theMackabu committed
version = "0.1.22"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "0c3733bf4cf7ea0880754e19cb5a462007c4a8c1914bff372ccc95b464f1df88"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "windows-sys 0.48.0",
theMackabu's avatar
theMackabu committed
[[package]]
name = "scopeguard"
theMackabu's avatar
theMackabu committed
version = "1.2.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
theMackabu's avatar
theMackabu committed
[[package]]
name = "security-framework"
theMackabu's avatar
theMackabu committed
version = "2.9.2"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "05b64fb303737d99b81884b2c63433e9ae28abebe5eb5045dcdd175dc2ecf4de"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "bitflags 1.3.2",
theMackabu's avatar
theMackabu committed
 "core-foundation",
 "core-foundation-sys",
 "libc",
 "security-framework-sys",
]

[[package]]
name = "security-framework-sys"
theMackabu's avatar
theMackabu committed
version = "2.9.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "e932934257d3b408ed8f30db49d85ea163bfe74961f017f405b025af298f0c7a"
theMackabu's avatar
theMackabu committed
dependencies = [
 "core-foundation-sys",
 "libc",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "serde"
theMackabu's avatar
theMackabu committed
version = "1.0.188"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "cf9e0fcba69a370eed61bcf2b728575f726b50b55cba78064753d708ddc7549e"
dependencies = [
 "serde_derive",
]
theMackabu's avatar
theMackabu committed

[[package]]
name = "serde_derive"
theMackabu's avatar
theMackabu committed
version = "1.0.188"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "4eca7ac642d82aa35b60049a6eccb4be6be75e599bd2e9adb5f875a737654af2"
theMackabu's avatar
theMackabu committed
dependencies = [
 "proc-macro2",
 "quote",
theMackabu's avatar
theMackabu committed
 "syn",
[[package]]
name = "serde_json"
theMackabu's avatar
theMackabu committed
version = "1.0.107"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "6b420ce6e3d8bd882e9b243c6eed35dbc9a6110c9769e74b584e0d68d1f20c65"
dependencies = [
 "itoa",
 "ryu",
 "serde",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "serde_spanned"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96426c9936fd7a0124915f9185ea1d20aa9445cc9821142f0a73bc9207a2e186"
dependencies = [
 "serde",
]

theMackabu's avatar
theMackabu committed
[[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",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "serde_yaml"
theMackabu's avatar
theMackabu committed
version = "0.9.25"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "1a49e178e4452f45cb61d0cd8cebc1b0fafd3e41929e996cef79aa3aca91f574"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "indexmap 2.0.2",
theMackabu's avatar
theMackabu committed
 "itoa",
 "ryu",
 "serde",
 "unsafe-libyaml",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "sha2"
theMackabu's avatar
theMackabu committed
version = "0.10.8"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "793db75ad2bcafc3ffa7c68b215fee268f537982cd901d132f89c6343f3a3dc8"
theMackabu's avatar
theMackabu committed
dependencies = [
 "cfg-if",
 "cpufeatures",
 "digest",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "signal-hook"
theMackabu's avatar
theMackabu committed
version = "0.3.17"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "8621587d4798caf8eb44879d42e56b9a93ea5dcd315a6487c357130095b62801"
theMackabu's avatar
theMackabu committed
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"
theMackabu's avatar
theMackabu committed
version = "1.4.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "d8229b473baa5980ac72ef434c4415e70c4b5e71b423043adb4ba059f89c99a1"
theMackabu's avatar
theMackabu committed
dependencies = [
 "libc",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "slab"
theMackabu's avatar
theMackabu committed
version = "0.4.9"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
theMackabu's avatar
theMackabu committed
dependencies = [
 "autocfg",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "smallvec"
theMackabu's avatar
theMackabu committed
version = "1.11.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "942b4a808e05215192e39f4ab80813e599068285906cc91aa64f923db842bd5a"
theMackabu's avatar
theMackabu committed
[[package]]
name = "socket2"
version = "0.4.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662"
dependencies = [
 "libc",
 "winapi",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "socket2"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4031e820eb552adee9295814c0ced9e5cf38ddf1e8b7d566d6de8e2538ea989e"
dependencies = [
 "libc",
 "windows-sys 0.48.0",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "strip-ansi-escapes"
theMackabu's avatar
theMackabu committed
version = "0.2.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "55ff8ef943b384c414f54aefa961dd2bd853add74ec75e7ac74cf91dba62bcfa"
theMackabu's avatar
theMackabu committed
dependencies = [
 "vte",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "strsim"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "73473c0e59e6d5812c5dfe2a064a6444949f089e20eec9a2e5506596494e4623"

theMackabu's avatar
theMackabu committed
[[package]]
name = "syn"
theMackabu's avatar
theMackabu committed
version = "2.0.37"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "7303ef2c05cd654186cb250d29049a24840ca25d2747c25c0381c8d9e2f582e8"
theMackabu's avatar
theMackabu committed
dependencies = [
 "proc-macro2",
 "quote",
 "unicode-ident",
]

theMackabu's avatar
theMackabu committed
[[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",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "tempfile"
theMackabu's avatar
theMackabu committed
version = "3.8.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "cb94d2f3cc536af71caac6b6fcebf65860b347e7ce0cc9ebe8f70d3e521054ef"
theMackabu's avatar
theMackabu committed
dependencies = [
 "cfg-if",
 "fastrand",
theMackabu's avatar
theMackabu committed
 "redox_syscall",
theMackabu's avatar
theMackabu committed
 "rustix",
 "windows-sys 0.48.0",
theMackabu's avatar
theMackabu committed
[[package]]
name = "termcolor"
theMackabu's avatar
theMackabu committed
version = "1.3.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "6093bad37da69aab9d123a8091e4be0aa4a03e4d601ec641c327398315f62b64"
theMackabu's avatar
theMackabu committed
dependencies = [
 "winapi-util",
]

[[package]]
name = "text_placeholder"
theMackabu's avatar
theMackabu committed
version = "0.5.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "512104f982ce6f50def5340f9d7d14cc21f7a859e9ccd251aa19d12e1345c070"
dependencies = [
 "hashbrown 0.13.2",
]
theMackabu's avatar
theMackabu committed

[[package]]
name = "thiserror"
theMackabu's avatar
theMackabu committed
version = "1.0.49"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "1177e8c6d7ede7afde3585fd2513e611227efd6481bd78d2e82ba1ce16557ed4"
theMackabu's avatar
theMackabu committed
dependencies = [
 "thiserror-impl",
]

[[package]]
name = "thiserror-impl"
theMackabu's avatar
theMackabu committed
version = "1.0.49"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "10712f02019e9288794769fba95cd6847df9874d49d871d062172f9dd41bc4cc"
theMackabu's avatar
theMackabu committed
dependencies = [
 "proc-macro2",
 "quote",
theMackabu's avatar
theMackabu committed
 "syn",
theMackabu's avatar
theMackabu committed
]

[[package]]
name = "tinyvec"
version = "1.6.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
dependencies = [
 "tinyvec_macros",
]

[[package]]
name = "tinyvec_macros"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"

[[package]]
name = "tokio"
theMackabu's avatar
theMackabu committed
version = "1.32.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "17ed6077ed6cd6c74735e21f37eb16dc3935f96878b1fe961074089cc80893f9"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "backtrace",
theMackabu's avatar
theMackabu committed
 "bytes",
 "libc",
 "mio",
 "num_cpus",
 "pin-project-lite",
theMackabu's avatar
theMackabu committed
 "socket2 0.5.4",
theMackabu's avatar
theMackabu committed
 "windows-sys 0.48.0",
]

[[package]]
name = "tokio-native-tls"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bbae76ab933c85776efabc971569dd6119c580d8f5d448769dec1764bf796ef2"
dependencies = [
 "native-tls",
 "tokio",
]

[[package]]
name = "tokio-util"
theMackabu's avatar
theMackabu committed
version = "0.7.9"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "1d68074620f57a0b21594d9735eb2e98ab38b17f80d3fcb189fca266771ca60d"
theMackabu's avatar
theMackabu committed
dependencies = [
 "bytes",
 "futures-core",
 "futures-sink",
 "pin-project-lite",
 "tokio",
 "tracing",
theMackabu's avatar
theMackabu committed
]

[[package]]
name = "toml"
theMackabu's avatar
theMackabu committed
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d"
dependencies = [
 "serde",
 "serde_spanned",
 "toml_datetime",
 "toml_edit",
]

[[package]]
name = "toml_datetime"
version = "0.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b"
dependencies = [
 "serde",
]

[[package]]
name = "toml_edit"
version = "0.20.2"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "indexmap 2.0.2",
theMackabu's avatar
theMackabu committed
 "serde",
theMackabu's avatar
theMackabu committed
 "serde_spanned",
 "toml_datetime",
 "winnow",
theMackabu's avatar
theMackabu committed
[[package]]
name = "tower-service"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52"

[[package]]
name = "tracing"
theMackabu's avatar
theMackabu committed
version = "0.1.37"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "8ce8c33a8d48bd45d624a6e523445fd21ec13d3653cd51f681abf67418f54eb8"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "cfg-if",
theMackabu's avatar
theMackabu committed
 "pin-project-lite",
 "tracing-core",
]

[[package]]
name = "tracing-core"
theMackabu's avatar
theMackabu committed
version = "0.1.31"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "0955b8137a1df6f1a2e9a37d8a6656291ff0297c1a97c24e0d8425fe2312f79a"
theMackabu's avatar
theMackabu committed
dependencies = [
 "once_cell",
]

[[package]]
name = "try-lock"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed"

theMackabu's avatar
theMackabu committed
[[package]]
name = "typenum"
theMackabu's avatar
theMackabu committed
version = "1.17.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "42ff0bf0c66b8238c6f3b578df37d0b7848e55df8577b3f74f92a69acceeb825"
theMackabu's avatar
theMackabu committed

theMackabu's avatar
theMackabu committed
[[package]]
name = "ucd-trie"
theMackabu's avatar
theMackabu committed
version = "0.1.6"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "ed646292ffc8188ef8ea4d1e0e0150fb15a5c2e12ad9b8fc191ae7a8a7f3c4b9"
theMackabu's avatar
theMackabu committed

theMackabu's avatar
theMackabu committed
[[package]]
name = "unicode-bidi"
version = "0.3.13"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "92888ba5573ff080736b3648696b70cafad7d250551175acbaa4e0385b3e1460"

theMackabu's avatar
theMackabu committed
[[package]]
name = "unicode-ident"
theMackabu's avatar
theMackabu committed
version = "1.0.12"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
theMackabu's avatar
theMackabu committed
[[package]]
name = "unicode-normalization"
version = "0.1.22"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c5713f0fc4b5db668a2ac63cdb7bb4469d8c9fed047b1d0292cc7b0ce2ba921"
dependencies = [
 "tinyvec",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "unicode-segmentation"
theMackabu's avatar
theMackabu committed
version = "1.10.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "1dd624098567895118886609431a7c3b8f516e41d30e0643f03d94592a147e36"
theMackabu's avatar
theMackabu committed

[[package]]
name = "unicode-width"
theMackabu's avatar
theMackabu committed
version = "0.1.11"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "e51733f11c9c4f72aa0c160008246859e340b00807569a0da0e7a1079b27ba85"
theMackabu's avatar
theMackabu committed
[[package]]
name = "unsafe-libyaml"
theMackabu's avatar
theMackabu committed
version = "0.2.9"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "f28467d3e1d3c6586d8f25fa243f544f5800fec42d97032474e17222c2b75cfa"
theMackabu's avatar
theMackabu committed
[[package]]
name = "url"
theMackabu's avatar
theMackabu committed
version = "2.4.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "143b538f18257fac9cad154828a57c6bf5157e1aa604d4816b5995bf6de87ae5"
theMackabu's avatar
theMackabu committed
dependencies = [
 "form_urlencoded",
 "idna",
 "percent-encoding",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "utf8parse"
theMackabu's avatar
theMackabu committed
version = "0.2.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "711b9620af191e0cdc7468a8d14e709c3dcdb115b36f838e601583af800a370a"
theMackabu's avatar
theMackabu committed

theMackabu's avatar
theMackabu committed
[[package]]
name = "vcpkg"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accd4ea62f7bb7a82fe23066fb0957d48ef677f6eeb8215f372f52e48bb32426"

theMackabu's avatar
theMackabu committed
[[package]]
name = "version_check"
version = "0.9.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"

theMackabu's avatar
theMackabu committed
[[package]]
name = "vte"
theMackabu's avatar
theMackabu committed
version = "0.11.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "f5022b5fbf9407086c180e9557be968742d839e68346af7792b8592489732197"
theMackabu's avatar
theMackabu committed
dependencies = [
 "utf8parse",
 "vte_generate_state_changes",
]

[[package]]
name = "vte_generate_state_changes"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d257817081c7dffcdbab24b9e62d2def62e2ff7d00b1c20062551e6cccc145ff"
dependencies = [
 "proc-macro2",
 "quote",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "walkdir"
theMackabu's avatar
theMackabu committed
version = "2.4.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "d71d857dc86794ca4c280d616f7da00d2dbfd8cd788846559a6813e6aa4b54ee"
theMackabu's avatar
theMackabu committed
dependencies = [
 "same-file",
 "winapi-util",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "want"
theMackabu's avatar
theMackabu committed
version = "0.3.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e"
theMackabu's avatar
theMackabu committed
dependencies = [
 "try-lock",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "wasi"
version = "0.11.0+wasi-snapshot-preview1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423"

theMackabu's avatar
theMackabu committed
[[package]]
name = "wasm-bindgen"
theMackabu's avatar
theMackabu committed
version = "0.2.87"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "7706a72ab36d8cb1f80ffbf0e071533974a60d0a308d01a5d0375bf60499a342"
theMackabu's avatar
theMackabu committed
dependencies = [
 "cfg-if",
 "wasm-bindgen-macro",
]

[[package]]
name = "wasm-bindgen-backend"
theMackabu's avatar
theMackabu committed
version = "0.2.87"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "5ef2b6d3c510e9625e5fe6f509ab07d66a760f0885d858736483c32ed7809abd"
theMackabu's avatar
theMackabu committed
dependencies = [
 "bumpalo",
 "log",
 "once_cell",
 "proc-macro2",
 "quote",
theMackabu's avatar
theMackabu committed
 "syn",
theMackabu's avatar
theMackabu committed
 "wasm-bindgen-shared",
]

[[package]]
name = "wasm-bindgen-futures"
theMackabu's avatar
theMackabu committed
version = "0.4.37"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "c02dbc21516f9f1f04f187958890d7e6026df8d16540b7ad9492bc34a67cea03"
theMackabu's avatar
theMackabu committed
dependencies = [
 "cfg-if",
 "js-sys",
 "wasm-bindgen",
 "web-sys",
]

[[package]]
name = "wasm-bindgen-macro"
theMackabu's avatar
theMackabu committed
version = "0.2.87"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "dee495e55982a3bd48105a7b947fd2a9b4a8ae3010041b9e0faab3f9cd028f1d"