Skip to content
Cargo.lock 98.8 KiB
Newer Older
 "windows-sys 0.42.0",
theMackabu's avatar
theMackabu committed
]

[[package]]
name = "flate2"
version = "1.0.25"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a8a2db397cb1c8772f31494cb8917e48cd1e64f0fa7efac59fbd741a0a8ce841"
dependencies = [
 "crc32fast",
theMackabu's avatar
theMackabu committed
 "miniz_oxide",
theMackabu's avatar
theMackabu committed
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"

[[package]]
name = "foreign-types"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f6f339eb8adc052cd2ca78910fda869aefa38d22d5cb648e6485e4d3fc06f3b1"
dependencies = [
 "foreign-types-shared",
]

[[package]]
name = "foreign-types-shared"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00b0228411908ca8685dba7fc2cdd70ec9990a6e753e89b6ac91a84c40fbaf4b"

theMackabu's avatar
theMackabu committed
[[package]]
name = "form_urlencoded"
theMackabu's avatar
theMackabu committed
version = "1.1.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "a9c384f161156f5260c24a097c56119f9be8c798586aecc13afbcbe7b7e26bf8"
theMackabu's avatar
theMackabu committed
dependencies = [
 "percent-encoding",
theMackabu's avatar
theMackabu committed
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "from_variant"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f0981e470d2ab9f643df3921d54f1952ea100c39fdb6a3fdc820e20d2291df6c"
dependencies = [
 "pmutil",
 "proc-macro2",
 "swc_macros_common",
 "syn",
]

[[package]]
name = "fs2"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9564fc758e15025b46aa6643b1b77d047d1a56a1aea6e01002ac0c7026876213"
dependencies = [
 "libc",
 "winapi",
]

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

[[package]]
name = "futures"
theMackabu's avatar
theMackabu committed
version = "0.3.25"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "38390104763dc37a5145a53c29c63c1290b5d316d6086ec32c293f6736051bb0"
theMackabu's avatar
theMackabu committed
dependencies = [
 "futures-channel",
 "futures-core",
 "futures-executor",
 "futures-io",
 "futures-sink",
 "futures-task",
 "futures-util",
]

[[package]]
name = "futures-channel"
theMackabu's avatar
theMackabu committed
version = "0.3.25"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "52ba265a92256105f45b719605a571ffe2d1f0fea3807304b522c1d778f79eed"
theMackabu's avatar
theMackabu committed
dependencies = [
 "futures-core",
 "futures-sink",
]

[[package]]
name = "futures-core"
theMackabu's avatar
theMackabu committed
version = "0.3.25"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "04909a7a7e4633ae6c4a9ab280aeb86da1236243a77b694a49eacd659a4bd3ac"
theMackabu's avatar
theMackabu committed

[[package]]
name = "futures-executor"
theMackabu's avatar
theMackabu committed
version = "0.3.25"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "7acc85df6714c176ab5edf386123fafe217be88c0840ec11f199441134a074e2"
theMackabu's avatar
theMackabu committed
dependencies = [
 "futures-core",
 "futures-task",
 "futures-util",
]

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

[[package]]
name = "futures-lite"
version = "1.12.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7694489acd39452c77daa48516b894c153f192c3578d5a839b62c58099fcbf48"
dependencies = [
 "fastrand",
 "futures-core",
 "futures-io",
 "memchr 2.5.0",
 "parking",
 "pin-project-lite",
 "waker-fn",
]

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

[[package]]
name = "futures-sink"
theMackabu's avatar
theMackabu committed
version = "0.3.25"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "39c15cf1a4aa79df40f1bb462fb39676d0ad9e366c2a33b590d7c66f4f81fcf9"
theMackabu's avatar
theMackabu committed

[[package]]
name = "futures-task"
theMackabu's avatar
theMackabu committed
version = "0.3.25"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "2ffb393ac5d9a6eaa9d3fdf37ae2776656b706e200c8e16b1bdb227f5198e6ea"
theMackabu's avatar
theMackabu committed

[[package]]
name = "futures-util"
theMackabu's avatar
theMackabu committed
version = "0.3.25"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "197676987abd2f9cadff84926f410af1c183608d36641465df73ae8211dc65d6"
theMackabu's avatar
theMackabu committed
dependencies = [
 "futures-channel",
 "futures-core",
 "futures-io",
 "futures-macro",
 "futures-sink",
 "futures-task",
theMackabu's avatar
theMackabu committed
 "memchr 2.5.0",
theMackabu's avatar
theMackabu committed
 "pin-project-lite",
 "pin-utils",
 "slab",
]

[[package]]
name = "fxhash"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c"
dependencies = [
 "byteorder",
]

[[package]]
name = "generic-array"
version = "0.14.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bff49e947297f3312447abdca79f45f4738097cc82b06e72054d2223f601f1b9"
dependencies = [
 "typenum",
 "version_check",
theMackabu's avatar
theMackabu committed
[[package]]
name = "getrandom"
version = "0.2.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c05aeb6a22b8f62540c194aac980f2115af067bfe15a0734d7277a768d396b31"
dependencies = [
 "cfg-if",
 "libc",
theMackabu's avatar
theMackabu committed
 "wasi 0.11.0+wasi-snapshot-preview1",
theMackabu's avatar
theMackabu committed
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "h2"
version = "0.3.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5f9f29bc9dda355256b2916cf526ab02ce0aeaaaf2bad60d65ef3f12f11dd0f4"
dependencies = [
 "bytes",
 "fnv",
 "futures-core",
 "futures-sink",
 "futures-util",
 "http",
 "indexmap",
 "slab",
 "tokio",
 "tokio-util",
 "tracing",
]

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

[[package]]
name = "headers"
version = "0.3.8"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f3e372db8e5c0d213e0cd0b9be18be2aca3d44cf2fe30a9d46a65581cd454584"
dependencies = [
 "base64 0.13.1",
 "bitflags",
 "bytes",
 "headers-core",
 "http",
 "httpdate",
 "mime",
 "sha1",
]

[[package]]
name = "headers-core"
version = "0.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e7f66481bfee273957b1f20485a4ff3362987f85b2c236580d81b4eb7a326429"
dependencies = [
 "http",
]

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

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

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

[[package]]
name = "hermit-abi"
version = "0.3.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fed44880c466736ef9a5c5b5facefb5ed0785676d0c02d612db14e54f0d84286"

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "home"
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "747309b4b440c06d57b0b25f2aee03ee9b5e5397d288c60e21fc709bb98a7408"
dependencies = [
 "winapi",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "http"
version = "0.2.9"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bd6effc99afb63425aff9b05836f029929e345a6148a14b7ecd5ab67af944482"
theMackabu's avatar
theMackabu committed
dependencies = [
 "bytes",
 "fnv",
 "itoa",
]

[[package]]
name = "http-body"
version = "0.4.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1"
dependencies = [
 "bytes",
 "http",
 "pin-project-lite",
]

[[package]]
name = "httparse"
version = "1.8.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904"

[[package]]
name = "httpdate"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c4a1e36c821dbe04574f602848a19f742f4fb3c98d40449f11bcad18d6b17421"

[[package]]
name = "humantime"
version = "2.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4"

theMackabu's avatar
theMackabu committed
[[package]]
name = "hyper"
version = "0.14.23"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "034711faac9d2166cb1baf1a2fb0b60b1f277f8492fd72176c17f3515e1abd3c"
dependencies = [
 "bytes",
 "futures-channel",
 "futures-core",
 "futures-util",
 "h2",
 "http",
 "http-body",
 "httparse",
 "httpdate",
 "itoa",
 "pin-project-lite",
 "socket2",
 "tokio",
 "tower-service",
 "tracing",
 "want",
]

[[package]]
name = "hyper-tls"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d6183ddfa99b85da61a140bea0efc93fdf56ceaa041b37d553518030827f9905"
dependencies = [
 "bytes",
 "hyper",
theMackabu's avatar
theMackabu committed
 "native-tls",
 "tokio",
 "tokio-native-tls",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "iana-time-zone"
version = "0.1.53"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "64c122667b287044802d6ce17ee2ddf13207ed924c712de9a66a5814d5b64765"
dependencies = [
 "android_system_properties",
 "core-foundation-sys",
 "iana-time-zone-haiku",
 "js-sys",
 "wasm-bindgen",
 "winapi",
]

[[package]]
name = "iana-time-zone-haiku"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0703ae284fc167426161c2e3f1da3ea71d94b21bedbcc9494e92b28e334e3dca"
dependencies = [
 "cxx",
 "cxx-build",
]

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

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

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

[[package]]
name = "indexmap"
theMackabu's avatar
theMackabu committed
version = "1.9.2"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "1885e79c1fc4b10f0e172c475f458b7f7b93061064d98c3293e98c5ba0c8b399"
theMackabu's avatar
theMackabu committed
dependencies = [
 "autocfg",
theMackabu's avatar
theMackabu committed
 "hashbrown",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "indicatif"
theMackabu's avatar
theMackabu committed
version = "0.17.3"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "cef509aa9bc73864d6756f0d34d35504af3cf0844373afe9b8669a5b8005a729"
theMackabu's avatar
theMackabu committed
dependencies = [
 "console",
 "number_prefix",
 "portable-atomic",
 "unicode-width",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "inquire"
theMackabu's avatar
theMackabu committed
version = "0.5.3"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "f3a94f0659efe59329832ba0452d3ec753145fc1fb12a8e1d60de4ccf99f5364"
theMackabu's avatar
theMackabu committed
dependencies = [
 "bitflags",
theMackabu's avatar
theMackabu committed
 "crossterm",
theMackabu's avatar
theMackabu committed
 "dyn-clone",
 "lazy_static",
 "newline-converter",
 "thiserror",
 "unicode-segmentation",
 "unicode-width",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "instant"
version = "0.1.12"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7a5bbe824c507c5da5956355e86a746d82e0e1464f65d862cc5e71da70e94b2c"
dependencies = [
 "cfg-if",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "io-lifetimes"
theMackabu's avatar
theMackabu committed
version = "1.0.4"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "e7d6c6f8c91b4b9ed43484ad1a938e393caf35960fce7f82a040497207bd8e9e"
theMackabu's avatar
theMackabu committed
dependencies = [
 "libc",
 "windows-sys 0.42.0",
theMackabu's avatar
theMackabu committed
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "is-macro"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "1c068d4c6b922cd6284c609cfa6dec0e41615c9c5a1a4ba729a970d8daba05fb"
dependencies = [
 "Inflector",
 "pmutil",
 "proc-macro2",
 "quote",
 "syn",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "is-terminal"
version = "0.4.7"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "adcf93614601c8129ddf72e2d5633df827ba6551541c6d8c59520a371475be1f"
theMackabu's avatar
theMackabu committed
dependencies = [
 "hermit-abi 0.3.1",
theMackabu's avatar
theMackabu committed
 "io-lifetimes",
 "rustix 0.37.3",
 "windows-sys 0.48.0",
theMackabu's avatar
theMackabu committed
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "js-sys"
version = "0.3.60"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "49409df3e3bf0856b916e2ceaca09ee28e6871cf7d9ce97a692cacfdb2a25a47"
dependencies = [
 "wasm-bindgen",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "just_state"
theMackabu's avatar
theMackabu committed
version = "0.2.0"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "colored",
 "lazy_static",
 "macros-rs",
theMackabu's avatar
theMackabu committed
 "serde",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "justjs"
version = "0.5.2"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "anyhow",
 "async-process",
theMackabu's avatar
theMackabu committed
 "base64 0.20.0",
theMackabu's avatar
theMackabu committed
 "brown",
theMackabu's avatar
theMackabu committed
 "chrono",
 "clap",
 "clap-verbosity-flag",
theMackabu's avatar
theMackabu committed
 "colored",
 "colored_json",
theMackabu's avatar
theMackabu committed
 "data-encoding",
theMackabu's avatar
theMackabu committed
 "data-url",
theMackabu's avatar
theMackabu committed
 "deno_ast",
theMackabu's avatar
theMackabu committed
 "deno_core",
 "dirs",
 "duration-string",
 "env_logger 0.10.0",
theMackabu's avatar
theMackabu committed
 "esbuild-rs",
theMackabu's avatar
theMackabu committed
 "exact-panic",
theMackabu's avatar
theMackabu committed
 "flate2",
theMackabu's avatar
theMackabu committed
 "futures-util",
theMackabu's avatar
theMackabu committed
 "hex",
theMackabu's avatar
theMackabu committed
 "home",
 "http",
theMackabu's avatar
theMackabu committed
 "indicatif",
theMackabu's avatar
theMackabu committed
 "inquire",
theMackabu's avatar
theMackabu committed
 "just_state",
theMackabu's avatar
theMackabu committed
 "libc",
 "log 0.4.17",
 "macros-rs",
theMackabu's avatar
theMackabu committed
 "nanoid",
theMackabu's avatar
theMackabu committed
 "open",
theMackabu's avatar
theMackabu committed
 "question",
theMackabu's avatar
theMackabu committed
 "reqwest",
theMackabu's avatar
theMackabu committed
 "rust-shell",
theMackabu's avatar
theMackabu committed
 "rustyline",
 "serde",
 "serde_json",
 "serde_yaml",
 "sha2",
 "sled",
theMackabu's avatar
theMackabu committed
 "sqlite",
theMackabu's avatar
theMackabu committed
 "tar",
theMackabu's avatar
theMackabu committed
 "termcolor",
theMackabu's avatar
theMackabu committed
 "tokio",
 "url",
theMackabu's avatar
theMackabu committed
 "uuid",
theMackabu's avatar
theMackabu committed
 "v_htmlescape",
 "warp",
theMackabu's avatar
theMackabu committed
 "zip-extract",
theMackabu's avatar
theMackabu committed
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"

theMackabu's avatar
theMackabu committed
[[package]]
name = "lexical"
version = "6.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c7aefb36fd43fef7003334742cbf77b243fcd36418a1d1bdd480d613a67968f6"
dependencies = [
 "lexical-core",
]

[[package]]
name = "lexical-core"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2cde5de06e8d4c2faabc400238f9ae1c74d5412d03a7bd067645ccbc47070e46"
dependencies = [
 "lexical-parse-float",
 "lexical-parse-integer",
 "lexical-util",
 "lexical-write-float",
 "lexical-write-integer",
]

[[package]]
name = "lexical-parse-float"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "683b3a5ebd0130b8fb52ba0bdc718cc56815b6a097e28ae5a6997d0ad17dc05f"
dependencies = [
 "lexical-parse-integer",
 "lexical-util",
 "static_assertions",
]

[[package]]
name = "lexical-parse-integer"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6d0994485ed0c312f6d965766754ea177d07f9c00c9b82a5ee62ed5b47945ee9"
dependencies = [
 "lexical-util",
 "static_assertions",
]

[[package]]
name = "lexical-util"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5255b9ff16ff898710eb9eb63cb39248ea8a5bb036bea8085b1a767ff6c4e3fc"
dependencies = [
 "static_assertions",
]

[[package]]
name = "lexical-write-float"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "accabaa1c4581f05a3923d1b4cfd124c329352288b7b9da09e766b0668116862"
dependencies = [
 "lexical-util",
 "lexical-write-integer",
 "static_assertions",
]

[[package]]
name = "lexical-write-integer"
version = "0.8.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1b6f3d1f4422866b68192d62f77bc5c700bee84f3069f2469d7bc8c77852446"
dependencies = [
 "lexical-util",
 "static_assertions",
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "link-cplusplus"
theMackabu's avatar
theMackabu committed
version = "1.0.8"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "ecd207c9c713c34f95a097a5b029ac2ce6010530c7b49d7fea24d977dede04f5"
theMackabu's avatar
theMackabu committed
dependencies = [
 "cc",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "linux-raw-sys"
theMackabu's avatar
theMackabu committed
version = "0.1.4"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "f051f77a7c8e6957c0696eac88f26b0117e54f52d3fc682ab19397a8812846a4"
theMackabu's avatar
theMackabu committed

[[package]]
name = "linux-raw-sys"
version = "0.3.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "36eb31c1778188ae1e64398743890d0877fef36d11521ac60406b42016e8c2cf"

theMackabu's avatar
theMackabu committed
[[package]]
name = "lock_api"
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 = "435011366fe56583b16cf956f9df0095b405b82d76425bc8981c0e22e60ec4df"
theMackabu's avatar
theMackabu committed
dependencies = [
 "autocfg",
theMackabu's avatar
theMackabu committed
 "scopeguard",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "log"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e19e8d5c34a3e0e2223db8e060f9e8264aeeb5c5fc64a4ee9965c062211c024b"
dependencies = [
 "log 0.4.17",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "log"
version = "0.4.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "abb12e687cfb44aa40f41fc3978ef76448f9b6038cad6aef4259d3c095a2382e"
dependencies = [
 "cfg-if",
]

[[package]]
name = "macros-rs"
version = "0.4.0"

theMackabu's avatar
theMackabu committed
[[package]]
name = "memchr"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "148fab2e51b4f1cfc66da2a7c32981d1d3c083a803978268bb11fe4b86925e7a"
dependencies = [
 "libc",
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "memoffset"
version = "0.6.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5aa361d4faea93603064a027415f07bd8e1d5c88c9fbf68bf56a285428fd79ce"
dependencies = [
 "autocfg",
theMackabu's avatar
theMackabu committed
]
theMackabu's avatar
theMackabu committed

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "memorymodule-rs"
version = "0.0.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0c4ead5a227d30610a2dee54d4121a79184072f94865506420e535a778b8a681"
dependencies = [
 "cc",
 "libc",
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "mime_guess"
version = "2.0.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4192263c238a5f0d0c6bfd21f336a313a4ce1c450542449ca191bb657b4642ef"
dependencies = [
 "mime",
 "unicase",
theMackabu's avatar
theMackabu committed
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "mio"
theMackabu's avatar
theMackabu committed
version = "0.8.5"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "e5d732bc30207a6423068df043e3d02e0735b155ad7ce1a6f76fe2baa5b158de"
theMackabu's avatar
theMackabu committed
dependencies = [
 "libc",
theMackabu's avatar
theMackabu committed
 "log 0.4.17",
 "wasi 0.11.0+wasi-snapshot-preview1",
 "windows-sys 0.42.0",
theMackabu's avatar
theMackabu committed
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "multipart"
version = "0.18.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "00dec633863867f29cb39df64a397cdf4a6354708ddd7759f70c7fb51c5f9182"
theMackabu's avatar
theMackabu committed
dependencies = [
 "buf_redux",
 "httparse",
 "log 0.4.17",
 "mime",
 "mime_guess",
 "quick-error",
 "rand",
 "safemem",
 "tempfile",
 "twoway",
theMackabu's avatar
theMackabu committed
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "nanoid"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3ffa00dec017b5b1a8b7cf5e2c008bfda1aa7e0697ac1508b491fdf2622fb4d8"
dependencies = [
 "rand",
theMackabu's avatar
theMackabu committed
]

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",
theMackabu's avatar
theMackabu committed
 "log 0.4.17",
theMackabu's avatar
theMackabu committed
 "openssl",
 "openssl-probe",
 "openssl-sys",
 "schannel",
 "security-framework",
 "security-framework-sys",
 "tempfile",
]

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

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 = "nibble_vec"
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "77a5d83df9f36fe23f0c3648c6bbb8b0298bb5f1939c8f2704431371f4b84d43"
dependencies = [
 "smallvec",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "nix"
theMackabu's avatar
theMackabu committed
version = "0.23.2"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "8f3790c00a0150112de0f4cd161e3d7fc4b2d8a5542ffc35f099a2562aecb35c"
theMackabu's avatar
theMackabu committed
dependencies = [
 "bitflags",
 "cc",
 "cfg-if",
 "libc",
theMackabu's avatar
theMackabu committed
 "memoffset 0.6.5",
theMackabu's avatar
theMackabu committed
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "nom"
version = "3.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "05aec50c70fd288702bcd93284a8444607f3292dbdf2a30de5ea5dcdbe72287b"
dependencies = [
 "memchr 1.0.2",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "num-bigint"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f93ab6289c7b344a8a9f60f88d80aa20032336fe78da341afc91c8a2341fc75f"
dependencies = [
 "autocfg",
theMackabu's avatar
theMackabu committed
 "num-integer",
 "num-traits",
 "serde",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "num-integer"
version = "0.1.45"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9"
dependencies = [
 "autocfg",
theMackabu's avatar
theMackabu committed
 "num-traits",
]

[[package]]
name = "num-traits"
version = "0.2.15"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "578ede34cf02f8924ab9447f50c28075b4d3e5b269972345e7e0372b38c6cdcd"
dependencies = [
 "autocfg",
theMackabu's avatar
theMackabu committed
[[package]]
name = "num_cpus"
theMackabu's avatar
theMackabu committed
version = "1.15.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "0fac9e2da13b5eb447a6ce3d392f23a29d8694bff781bf03a16cd9ac8697593b"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "hermit-abi 0.2.6",
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"
theMackabu's avatar
theMackabu committed
version = "0.30.2"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "2b8c786513eb403643f2a88c244c2aaa270ef2153f55094587d0c48a3cf22a83"
theMackabu's avatar
theMackabu committed
dependencies = [
 "memchr 2.5.0",
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "open"
version = "3.2.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "2078c0039e6a54a0c42c28faa984e115fb4c2d5bf2208f77d1961002df8576f8"
dependencies = [
 "pathdiff",
 "windows-sys 0.42.0",
theMackabu's avatar
theMackabu committed
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "openssl"
theMackabu's avatar
theMackabu committed
version = "0.10.45"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "b102428fd03bc5edf97f62620f7298614c45cedf287c271e7ed450bbaf83f2e1"
theMackabu's avatar
theMackabu committed
dependencies = [
 "bitflags",
 "cfg-if",
 "foreign-types",
 "libc",
 "once_cell",
 "openssl-macros",
 "openssl-sys",
]

[[package]]
name = "openssl-macros"