Skip to content
Cargo.lock 89.2 KiB
Newer Older
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 = "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 = "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",
[[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
version = "0.4.0"
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
 "colored",
theMackabu's avatar
theMackabu committed
 "fancy-regex",
theMackabu's avatar
theMackabu committed
 "home",
theMackabu's avatar
theMackabu committed
 "macros-rs",
theMackabu's avatar
theMackabu committed
 "mime",
theMackabu's avatar
theMackabu committed
 "mongodb",
theMackabu's avatar
theMackabu committed
 "peg",
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
 "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",
]

[[package]]
name = "time"
theMackabu's avatar
theMackabu committed
version = "0.3.36"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "5dfd88e563464686c916c7e46e623e520ddc6d79fa6641390f2e3fa86e83e885"
dependencies = [
 "deranged",
 "itoa",
theMackabu's avatar
theMackabu committed
 "num-conv",
 "powerfmt",
 "serde",
 "time-core",
 "time-macros",
]

[[package]]
name = "time-core"
version = "0.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ef927ca75afb808a4d64dd374f00a2adf8d0fcff8e7b184af886c3c87ec4a3f3"

[[package]]
name = "time-macros"
theMackabu's avatar
theMackabu committed
version = "0.2.18"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "3f252a68540fde3a3877aeea552b832b40ab9a69e318efd078774a01ddee1ccf"
dependencies = [
theMackabu's avatar
theMackabu committed
 "num-conv",
 "time-core",
]

[[package]]
name = "tiny-keccak"
version = "2.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2c9d3793400a45f954c52e73d068316d76b6f4e36977e3fcebb13a2721e80237"
dependencies = [
 "crunchy",
]

[[package]]
name = "tinyvec"
theMackabu's avatar
theMackabu committed
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
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.40.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "e2b070231665d27ad9ec9b8df639893f46727666c6767db40317fbe920a5d998"
dependencies = [
 "backtrace",
 "bytes",
 "libc",
 "mio",
 "parking_lot",
 "pin-project-lite",
 "signal-hook-registry",
theMackabu's avatar
theMackabu committed
 "socket2 0.5.7",
 "tokio-macros",
 "windows-sys 0.52.0",
]

[[package]]
name = "tokio-macros"
version = "2.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "693d596312e88961bc67d7f1f97af8a70227d9f90c31bba5806eec004978d752"
dependencies = [
 "proc-macro2",
 "quote",
 "syn 2.0.77",
]

[[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-rustls"
version = "0.24.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c28327cf380ac148141087fbfb9de9d7bd4e84ab5d2c28fbc911d753de8a7081"
dependencies = [
 "rustls",
 "tokio",
theMackabu's avatar
theMackabu committed
]

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