Skip to content
Cargo.lock 92 KiB
Newer Older
theMackabu's avatar
theMackabu committed

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

[[package]]
name = "percent-encoding"
version = "2.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"

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

[[package]]
name = "pest_derive"
version = "2.7.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2a548d2beca6773b1c244554d36fcf8548a8a58e74156968211567250e48e49a"
dependencies = [
 "pest",
 "pest_generator",
]

[[package]]
name = "pest_generator"
version = "2.7.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3c93a82e8d145725dcbaf44e5ea887c8a869efdcc28706df2d08c69e17077183"
dependencies = [
 "pest",
 "pest_meta",
 "proc-macro2",
 "quote",
 "syn 2.0.77",
]

[[package]]
name = "pest_meta"
version = "2.7.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a941429fea7e08bedec25e4f6785b6ffaacc6b755da98df5ef3e7dcf4a124c4f"
dependencies = [
 "once_cell",
 "pest",
 "sha2",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "pickledb"
version = "0.5.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c53a5ade47760e8cc4986bdc5e72daeffaaaee64cbc374f9cfe0a00c1cd87b1f"
dependencies = [
 "bincode",
 "serde",
 "serde_cbor",
 "serde_json",
 "serde_yaml",
]

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

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "piper"
version = "0.2.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "96c8c490f422ef9a4efd2cb5b42b76c8613d7e7dfc1caf667b8a3350a5acc066"
dependencies = [
 "atomic-waker",
 "fastrand 2.1.1",
 "futures-io",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "pkg-config"
theMackabu's avatar
theMackabu committed
version = "0.3.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "d231b230927b5e4ad203db57bbcbee2802f6bce620b1e4a9024a07d94e2907ec"
theMackabu's avatar
theMackabu committed
[[package]]
name = "polling"
version = "2.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4b2d323e8ca7996b3e23126511a523f7e62924d93ecd5ae73b333815b0eb3dce"
dependencies = [
 "autocfg",
 "bitflags 1.3.2",
 "cfg-if",
 "concurrent-queue",
 "libc",
 "log",
 "pin-project-lite",
 "windows-sys 0.48.0",
]

[[package]]
name = "polling"
version = "3.7.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cc2790cd301dec6cd3b7a025e4815cf825724a51c98dccfe6a3e55f05ffb6511"
dependencies = [
 "cfg-if",
 "concurrent-queue",
 "hermit-abi 0.4.0",
 "pin-project-lite",
 "rustix 0.38.35",
 "tracing",
 "windows-sys 0.59.0",
]

[[package]]
name = "powerfmt"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391"

[[package]]
name = "ppv-lite86"
theMackabu's avatar
theMackabu committed
version = "0.2.20"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "77957b295656769bb8ad2b6a6b09d897d94f05c41b069aede1fcdaa675eaea04"
dependencies = [
 "zerocopy",
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "proptest"
version = "1.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b4c2511913b88df1637da85cc8d96ec8e43a3f8bb8ccb71ee1ac240d6f3df58d"
dependencies = [
 "bitflags 2.6.0",
 "lazy_static",
 "num-traits",
 "rand",
 "rand_chacha",
 "rand_xorshift",
 "regex-syntax",
 "unarray",
]

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

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

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

[[package]]
name = "rand"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404"
dependencies = [
 "libc",
 "rand_chacha",
 "rand_core",
]

[[package]]
name = "rand_chacha"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88"
dependencies = [
 "ppv-lite86",
 "rand_core",
]

[[package]]
name = "rand_core"
version = "0.6.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c"
dependencies = [
 "getrandom",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "rand_xorshift"
version = "0.3.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d25bf25ec5ae4a3f1b92f929810509a2f53d7dca2f50b794ff57e3face536c8f"
dependencies = [
 "rand_core",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "redis"
version = "0.24.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c580d9cbbe1d1b479e8d67cf9daf6a62c957e6846048408b80b43ac3f6af84cd"
dependencies = [
 "combine",
 "itoa",
 "percent-encoding",
 "ryu",
 "sha1_smol",
 "socket2 0.4.10",
 "url",
]

[[package]]
name = "redox_syscall"
theMackabu's avatar
theMackabu committed
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "2a908a6e00f1fdd0dfd9c0eb08ce85126f6d8bbda50017e74bc4a4b7d4a926a4"
dependencies = [
theMackabu's avatar
theMackabu committed
 "bitflags 2.6.0",
]

[[package]]
name = "regex"
theMackabu's avatar
theMackabu committed
version = "1.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "4219d74c6b67a3654a9fbebc4b419e22126d13d2f3c4a07ee0cb61ff79a79619"
dependencies = [
 "aho-corasick",
 "memchr",
theMackabu's avatar
theMackabu committed
 "regex-automata",
 "regex-syntax",
]

[[package]]
name = "regex-automata"
theMackabu's avatar
theMackabu committed
version = "0.4.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "38caf58cc5ef2fed281f89292ef23f6365465ed9a41b7a7754eb4e26496c92df"
dependencies = [
 "aho-corasick",
 "memchr",
theMackabu's avatar
theMackabu committed
 "regex-syntax",
theMackabu's avatar
theMackabu committed
[[package]]
name = "regex-lite"
version = "0.1.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "53a49587ad06b26609c52e423de037e7f57f20d53535d66e08c695f347df952a"

[[package]]
name = "regex-syntax"
theMackabu's avatar
theMackabu committed
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a66a03ae7c801facd77a29370b4faec201768915ac14a721ba36f20bc9c209b"

[[package]]
name = "reqwest"
version = "0.11.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "dd67538700a17451e7cba03ac727fb961abb7607553461627b97de0b89cf4a62"
dependencies = [
 "base64 0.21.7",
 "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",
 "rustls-pemfile",
 "serde",
 "serde_json",
 "serde_urlencoded",
 "sync_wrapper",
 "system-configuration",
 "tokio",
 "tokio-native-tls",
 "tower-service",
 "url",
 "wasm-bindgen",
 "wasm-bindgen-futures",
 "web-sys",
 "winreg",
]

[[package]]
name = "resolv-conf"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "52e44394d2086d010551b14b53b1f24e31647570cd1deb0379e2c21b329aba00"
dependencies = [
 "hostname",
 "quick-error",
]

[[package]]
name = "rhai"
theMackabu's avatar
theMackabu committed
version = "1.19.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "61797318be89b1a268a018a92a7657096d83f3ecb31418b9e9c16dcbb043b702"
dependencies = [
 "ahash",
theMackabu's avatar
theMackabu committed
 "bitflags 2.6.0",
 "instant",
 "num-traits",
 "once_cell",
 "rhai_codegen",
theMackabu's avatar
theMackabu committed
 "serde",
 "serde_json",
 "smallvec",
 "smartstring",
theMackabu's avatar
theMackabu committed
 "thin-vec",
theMackabu's avatar
theMackabu committed
name = "rhai-fs"
version = "0.1.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "9af3f7717d7194033924473b3e4f0b3dbd569e3528837c3fbb00b4e1d1c6ff16"
dependencies = [
theMackabu's avatar
theMackabu committed
 "rhai",
 "serde",
 "serde_json",
]

[[package]]
theMackabu's avatar
theMackabu committed
name = "rhai-url"
version = "0.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "e2de48c06355410886a07e47691db696438b784788ef800ef7ca19ac78447964"
dependencies = [
theMackabu's avatar
theMackabu committed
 "rhai",
 "serde",
theMackabu's avatar
theMackabu committed
 "serde_json",
 "url",
theMackabu's avatar
theMackabu committed
name = "rhai_codegen"
theMackabu's avatar
theMackabu committed
version = "2.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "a5a11a05ee1ce44058fa3d5961d05194fdbe3ad6b40f904af764d81b86450e6b"
dependencies = [
 "proc-macro2",
 "quote",
theMackabu's avatar
theMackabu committed
 "syn 2.0.77",
]

[[package]]
name = "ring"
version = "0.17.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c17fa4cb658e3583423e915b9f3acc01cceaee1860e33d59ebae66adc3a2dc0d"
dependencies = [
 "cc",
 "cfg-if",
 "getrandom",
 "libc",
 "spin",
 "untrusted",
 "windows-sys 0.52.0",
theMackabu's avatar
theMackabu committed
[[package]]
name = "ron"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b91f7eff05f748767f183df4320a63d6936e9c6107d97c9e6bdd9784f4289c94"
dependencies = [
 "base64 0.21.7",
 "bitflags 2.6.0",
 "serde",
 "serde_derive",
]

[[package]]
name = "rustc-demangle"
theMackabu's avatar
theMackabu committed
version = "0.1.24"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "719b953e2095829ee67db738b3bfa9fa368c94900df327b3f07fe6e794d2fe1f"
theMackabu's avatar
theMackabu committed
name = "rustc_version"
theMackabu's avatar
theMackabu committed
version = "0.2.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "138e3e0acb6c9fb258b19b67cb8abd63c00679d2851805ea151465464fe9030a"
dependencies = [
 "semver 0.9.0",
]

[[package]]
name = "rustc_version"
version = "0.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
dependencies = [
 "semver 1.0.23",
]

[[package]]
name = "rustc_version_runtime"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d31b7153270ebf48bf91c65ae5b0c00e749c4cfad505f66530ac74950249582f"
dependencies = [
 "rustc_version 0.2.3",
 "semver 0.9.0",
]

[[package]]
name = "rustix"
version = "0.37.27"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fea8ca367a3a01fe35e6943c400addf443c0f57670e6ec51196f71a4b8762dd2"
dependencies = [
 "bitflags 1.3.2",
 "errno",
 "io-lifetimes",
 "libc",
 "linux-raw-sys 0.3.8",
 "windows-sys 0.48.0",
]

[[package]]
name = "rustix"
version = "0.38.35"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a85d50532239da68e9addb745ba38ff4612a242c1c7ceea689c4bc7c2f43c36f"
dependencies = [
 "bitflags 2.6.0",
 "errno",
 "libc",
 "linux-raw-sys 0.4.14",
 "windows-sys 0.52.0",
]

[[package]]
name = "rustls"
version = "0.21.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f56a14d1f48b391359b22f731fd4bd7e43c97f3c50eee276f3aa09c94784d3e"
dependencies = [
 "log",
 "ring",
 "rustls-webpki",
 "sct",
]

[[package]]
name = "rustls-pemfile"
version = "1.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c74cae0a4cf6ccbbf5f359f08efdf8ee7e1dc532573bf0db71968cb56b1448c"
dependencies = [
 "base64 0.21.7",
]

[[package]]
name = "rustls-webpki"
version = "0.101.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "8b6275d1ee7a1cd780b64aca7726599a1dbc893b1e64144529e55c3c2f745765"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "ring",
 "untrusted",
[[package]]
name = "ryu"
theMackabu's avatar
theMackabu committed
version = "1.0.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"

[[package]]
name = "schannel"
version = "0.1.23"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "fbc91545643bcf3a0bbb6569265615222618bdf33ce4ffbbd13c4bbd4c093534"
dependencies = [
 "windows-sys 0.52.0",
]
theMackabu's avatar
theMackabu committed

[[package]]
name = "scopeguard"
version = "1.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"

theMackabu's avatar
theMackabu committed
[[package]]
name = "script"
theMackabu's avatar
theMackabu committed
dependencies = [
 "actix-web",
theMackabu's avatar
theMackabu committed
 "anyhow",
theMackabu's avatar
theMackabu committed
 "askama",
theMackabu's avatar
theMackabu committed
 "chrono",
theMackabu's avatar
theMackabu committed
 "colored",
theMackabu's avatar
theMackabu committed
 "const-hex",
theMackabu's avatar
theMackabu committed
 "fancy-regex",
theMackabu's avatar
theMackabu committed
 "global_placeholders",
theMackabu's avatar
theMackabu committed
 "home",
theMackabu's avatar
theMackabu committed
 "macros-rs",
theMackabu's avatar
theMackabu committed
 "md-5",
theMackabu's avatar
theMackabu committed
 "mime",
theMackabu's avatar
theMackabu committed
 "mongodb",
theMackabu's avatar
theMackabu committed
 "peg",
theMackabu's avatar
theMackabu committed
 "pest",
 "pest_derive",
theMackabu's avatar
theMackabu committed
 "pickledb",
theMackabu's avatar
theMackabu committed
 "redis",
theMackabu's avatar
theMackabu committed
 "reqwest",
 "rhai",
theMackabu's avatar
theMackabu committed
 "rhai-fs",
 "rhai-url",
theMackabu's avatar
theMackabu committed
 "ron",
theMackabu's avatar
theMackabu committed
 "serde",
theMackabu's avatar
theMackabu committed
 "serde_json",
theMackabu's avatar
theMackabu committed
 "smartstring",
theMackabu's avatar
theMackabu committed
 "termcolor",
theMackabu's avatar
theMackabu committed
 "tokio",
theMackabu's avatar
theMackabu committed
 "toml",
 "tracing",
 "tracing-bunyan-formatter",
 "tracing-subscriber",
theMackabu's avatar
theMackabu committed
[[package]]
name = "sct"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "da046153aa2352493d6cb7da4b6e5c0c057d8a1d0a9aa8560baffdd945acd414"
dependencies = [
 "ring",
 "untrusted",
]

[[package]]
name = "security-framework"
version = "2.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "897b2245f0b511c87893af39b033e5ca9cce68824c4d7e7630b5a1d339658d02"
dependencies = [
 "bitflags 2.6.0",
 "core-foundation",
 "core-foundation-sys",
 "libc",
 "security-framework-sys",
]

[[package]]
name = "security-framework-sys"
version = "2.11.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "75da29fe9b9b08fe9d6b22b5b4bcbc75d8db3aa31e639aa56bb62e9d46bfceaf"
dependencies = [
 "core-foundation-sys",
 "libc",
]

[[package]]
name = "semver"
version = "0.9.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1d7eb9ef2c18661902cc47e535f9bc51b78acd254da71d375c2f6720d9a40403"
dependencies = [
 "semver-parser",
]

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

[[package]]
name = "semver-parser"
version = "0.7.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"
[[package]]
name = "serde"
theMackabu's avatar
theMackabu committed
version = "1.0.209"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "99fce0ffe7310761ca6bf9faf5115afbc19688edd00171d81b1bb1b116c63e09"
dependencies = [
 "serde_derive",
]

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

[[package]]
name = "serde_cbor"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2bef2ebfde456fb76bbcf9f59315333decc4fda0b2b44b420243c11e0f5ec1f5"
dependencies = [
 "half",
 "serde",
]

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

[[package]]
name = "serde_json"
theMackabu's avatar
theMackabu committed
version = "1.0.127"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "8043c06d9f82bd7271361ed64f415fe5e12a77fdb52e573e7f06a516dea329ad"
dependencies = [
theMackabu's avatar
theMackabu committed
 "indexmap 2.5.0",
 "itoa",
theMackabu's avatar
theMackabu committed
 "memchr",
theMackabu's avatar
theMackabu committed
[[package]]
name = "serde_spanned"
theMackabu's avatar
theMackabu committed
version = "0.6.7"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "eb5b1b31579f3811bf615c144393417496f152e12ac8b7663bf664f4a815306d"
theMackabu's avatar
theMackabu committed
dependencies = [
 "serde",
]

theMackabu's avatar
theMackabu committed
[[package]]
theMackabu's avatar
theMackabu committed
name = "serde_urlencoded"
version = "0.7.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "form_urlencoded",
 "itoa",
 "ryu",
 "serde",
theMackabu's avatar
theMackabu committed
[[package]]
name = "serde_with"
version = "1.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "678b5a069e50bf00ecd22d0cd8ddf7c236f68581b03db652061ed5eb13a312ff"
dependencies = [
 "serde",
 "serde_with_macros",
]

[[package]]
name = "serde_with_macros"
version = "1.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e182d6ec6f05393cc0e5ed1bf81ad6db3a8feedf8ee515ecdd369809bcce8082"
dependencies = [
 "darling",
 "proc-macro2",
 "quote",
 "syn 1.0.109",
]

[[package]]
name = "serde_yaml"
version = "0.8.26"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578a7433b776b56a35785ed5ce9a7e777ac0598aac5a6dd1b4b18a307c7fc71b"
dependencies = [
 "indexmap 1.9.3",
 "ryu",
 "serde",
 "yaml-rust",
]

[[package]]
name = "sha-1"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f5058ada175748e33390e40e872bd0fe59a19f265d0158daa551c5a88a76009c"
dependencies = [
 "cfg-if",
 "cpufeatures",
 "digest",
]

[[package]]
name = "sha1"
version = "0.10.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e3bf829a2d51ab4a5ddf1352d8470c140cadc8301b2ae1789db023f01cedd6ba"
dependencies = [
 "cfg-if",
 "cpufeatures",
 "digest",
]

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

[[package]]
name = "sha2"
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"
dependencies = [
 "cfg-if",
 "cpufeatures",
 "digest",
]
theMackabu's avatar
theMackabu committed

theMackabu's avatar
theMackabu committed
[[package]]
name = "sharded-slab"
version = "0.1.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6"
dependencies = [
 "lazy_static",
]

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

[[package]]
name = "signal-hook-registry"
theMackabu's avatar
theMackabu committed
version = "1.4.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "a9e9e0b4211b72e7b8b6e85c807d36c212bdb33ea8587f7569562a84df5465b1"
dependencies = [
 "libc",
]

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

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

[[package]]
name = "smartstring"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3fb72c633efbaa2dd666986505016c32c3044395ceaf881518399d2f4127ee29"
dependencies = [
 "autocfg",
theMackabu's avatar
theMackabu committed
 "serde",
 "static_assertions",
 "version_check",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "socket2"
version = "0.4.10"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9f7916fc008ca5542385b89a3d3ce689953c143e9304a9bf8beec1de48994c0d"
dependencies = [
 "libc",
 "winapi",
]

[[package]]
name = "socket2"
theMackabu's avatar
theMackabu committed
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "ce305eb0b4296696835b71df73eb912e0f1ffd2556a501fcede6e0c50349191c"
dependencies = [
 "libc",
theMackabu's avatar
theMackabu committed
 "windows-sys 0.52.0",
theMackabu's avatar
theMackabu committed
[[package]]
name = "spin"
version = "0.9.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6980e8d7511241f8acf4aebddbb1ff938df5eebe98691418c4468d0b72a96a67"

[[package]]
name = "static_assertions"
version = "1.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a2eb9349b6444b326872e140eb1cf5e7c522154d69e7a0ffb0fb81c06b37543f"

theMackabu's avatar
theMackabu committed
[[package]]
name = "stringprep"
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7b4df3d392d81bd458a8a621b8bffbd2302a12ffe288a9d931670948749463b1"
dependencies = [
 "unicode-bidi",
 "unicode-normalization",
 "unicode-properties",
]

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

[[package]]
name = "subtle"
version = "2.6.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"

[[package]]
name = "syn"
version = "1.0.109"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237"
dependencies = [
 "proc-macro2",
 "quote",
 "unicode-ident",
]

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

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

[[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",
]

[[package]]
name = "take_mut"
version = "0.2.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f764005d11ee5f36500a149ace24e00e3da98b0158b3e2d53a7495660d3f4d60"

[[package]]
name = "tap"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369"

[[package]]
name = "tempfile"
version = "3.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "04cbcdd0c794ebb0d4cf35e88edd2f7d2c4c3e9a5a6dab322839b321c6a87a64"
dependencies = [
 "cfg-if",
 "fastrand 2.1.1",
 "once_cell",
 "rustix 0.38.35",
 "windows-sys 0.59.0",
]

[[package]]
name = "termcolor"
theMackabu's avatar
theMackabu committed
version = "1.4.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "06794f8f6c5c898b3275aebefa6b8a1cb24cd2c6c79397ab15774837a0bc5755"
dependencies = [
 "winapi-util",
]

theMackabu's avatar
theMackabu committed
[[package]]
theMackabu's avatar
theMackabu committed
name = "thin-vec"
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 = "a38c90d48152c236a3ab59271da4f4ae63d678c5d7ad6b7714d7cb9760be5e4b"
theMackabu's avatar
theMackabu committed
dependencies = [
 "serde",
]

[[package]]
name = "thiserror"
version = "1.0.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c0342370b38b6a11b6cc11d6a805569958d54cfa061a29969c3b5ce2ea405724"
dependencies = [
 "thiserror-impl",
]

[[package]]
name = "thiserror-impl"
version = "1.0.63"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a4558b58466b9ad7ca0f102865eccc95938dca1a74a856f2b57b6629050da261"
dependencies = [
 "proc-macro2",
 "quote",
 "syn 2.0.77",
]
theMackabu's avatar
theMackabu committed
[[package]]
name = "thread_local"
theMackabu's avatar
theMackabu committed
version = "1.1.8"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "8b9ef9bad013ada3808854ceac7b46812a6465ba368859a37e2100283d2d719c"
theMackabu's avatar
theMackabu committed
dependencies = [
 "cfg-if",
 "once_cell",