Skip to content
Cargo.lock 98.8 KiB
Newer Older
theMackabu's avatar
theMackabu committed
version = "0.1.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b501e44f11665960c7e7fcf062c7d96a14ade4aa98116c004b2e37b5be7d736c"
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

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

[[package]]
name = "openssl-sys"
theMackabu's avatar
theMackabu committed
version = "0.9.80"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "23bbbf7854cd45b83958ebe919f0e8e516793727652e27fda10a8384cfc790b7"
theMackabu's avatar
theMackabu committed
dependencies = [
 "autocfg",
theMackabu's avatar
theMackabu committed
 "cc",
 "libc",
 "pkg-config",
 "vcpkg",
]

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

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

[[package]]
name = "parking"
version = "2.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "427c3892f9e783d91cc128285287e70a59e206ca452770ece88a76f7a3eddd72"

[[package]]
name = "parking_lot"
version = "0.11.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d17b78036a60663b797adeaee46f5c9dfebb86948d1255007a1d6be0271ff99"
dependencies = [
 "instant",
 "lock_api",
 "parking_lot_core 0.8.6",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "parking_lot"
version = "0.12.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3742b2c103b9f06bc9fff0a37ff4912935851bee6d36f3c02bcc755bcfec228f"
dependencies = [
 "lock_api",
theMackabu's avatar
theMackabu committed
 "parking_lot_core 0.9.6",
]

[[package]]
name = "parking_lot_core"
version = "0.8.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "60a2cfe6f0ad2bfc16aefa463b497d5c7a5ecd44a23efa72aa342d90177356dc"
dependencies = [
 "cfg-if",
 "instant",
 "libc",
 "redox_syscall",
 "smallvec",
 "winapi",
theMackabu's avatar
theMackabu committed
]

[[package]]
name = "parking_lot_core"
theMackabu's avatar
theMackabu committed
version = "0.9.6"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "ba1ef8814b5c993410bb3adfad7a5ed269563e4a2f90c41f5d85be7fb47133bf"
theMackabu's avatar
theMackabu committed
dependencies = [
 "cfg-if",
 "libc",
 "redox_syscall",
 "smallvec",
 "windows-sys 0.42.0",
theMackabu's avatar
theMackabu committed
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "percent-encoding"
version = "2.2.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "478c572c3d73181ff3c2539045f6eb99e5491218eae919370993b890cdbdd98e"

theMackabu's avatar
theMackabu committed
[[package]]
name = "phf"
version = "0.10.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259"
dependencies = [
 "phf_macros",
 "phf_shared",
theMackabu's avatar
theMackabu committed
 "proc-macro-hack",
theMackabu's avatar
theMackabu committed
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "phf_generator"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6"
dependencies = [
 "phf_shared",
 "rand",
theMackabu's avatar
theMackabu committed
]

[[package]]
name = "phf_macros"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0"
dependencies = [
 "phf_generator",
 "phf_shared",
theMackabu's avatar
theMackabu committed
 "proc-macro-hack",
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "phf_shared"
version = "0.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096"
dependencies = [
 "siphasher",
theMackabu's avatar
theMackabu committed
[[package]]
name = "pin-project"
theMackabu's avatar
theMackabu committed
version = "1.0.12"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "ad29a609b6bcd67fee905812e544992d216af9d755757c05ed2d0e15a74c6ecc"
theMackabu's avatar
theMackabu committed
dependencies = [
 "pin-project-internal",
]

[[package]]
name = "pin-project-internal"
theMackabu's avatar
theMackabu committed
version = "1.0.12"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "069bdb1e05adc7a8990dce9cc75370895fbe4e3d58b9b73bf1aee56359344a55"
theMackabu's avatar
theMackabu committed
dependencies = [
 "proc-macro2",
 "quote",
 "syn",
]

[[package]]
name = "pin-project-lite"
version = "0.2.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e0a7ae3ac2f1173085d398531c705756c94a4c56843785df85a60c1a0afac116"

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

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

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

[[package]]
name = "polling"
version = "2.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "22122d5ec4f9fe1b3916419b76be1e80bcb93f618d071d2edf841b137b2a2bd6"
dependencies = [
 "autocfg",
 "cfg-if",
 "libc",
 "log 0.4.17",
 "wepoll-ffi",
 "windows-sys 0.42.0",
theMackabu's avatar
theMackabu committed
[[package]]
name = "portable-atomic"
theMackabu's avatar
theMackabu committed
version = "0.3.19"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "26f6a7b87c2e435a3241addceeeff740ff8b7e76b74c13bf9acb17fa454ea00b"
theMackabu's avatar
theMackabu committed

theMackabu's avatar
theMackabu committed
[[package]]
name = "ppv-lite86"
version = "0.2.17"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de"

theMackabu's avatar
theMackabu committed
[[package]]
name = "precomputed-hash"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"

theMackabu's avatar
theMackabu committed
[[package]]
name = "proc-macro-crate"
theMackabu's avatar
theMackabu committed
version = "1.2.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "eda0fc3b0fb7c975631757e14d9049da17374063edb6ebbcbc54d880d4fe94e9"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "once_cell",
theMackabu's avatar
theMackabu committed
 "thiserror",
 "toml",
]

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

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "proc-macro-hack"
theMackabu's avatar
theMackabu committed
version = "0.5.20+deprecated"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068"
theMackabu's avatar
theMackabu committed
[[package]]
name = "proc-macro2"
version = "1.0.68"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b1106fec09662ec6dd98ccac0f81cef56984d0b49f75c92d8cbad76e20c005c"
theMackabu's avatar
theMackabu committed
dependencies = [
 "unicode-ident",
]

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

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

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

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "radix_trie"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "c069c179fcdc6a2fe24d8d18305cf085fdbd4f922c041943e203685d6a1c58fd"
dependencies = [
 "endian-type",
 "nibble_vec",
]

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

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

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "redox_users"
version = "0.4.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b033d837a7cf162d7993aded9304e30a83213c648b6e389db233191f891e5c2b"
dependencies = [
 "getrandom",
 "redox_syscall",
 "thiserror",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "regex"
version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9329abc99e39129fcceabd24cf5d85b4671ef7c29c50e972bc5afe32438ec384"
dependencies = [
 "aho-corasick 0.6.10",
 "memchr 2.5.0",
 "regex-syntax 0.5.6",
 "thread_local",
theMackabu's avatar
theMackabu committed
 "utf8-ranges",
]

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

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

[[package]]
name = "regex-syntax"
version = "0.5.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7d707a4fa2637f2dca2ef9fd02225ec7661fe01a53623c1e6515b6916511f7a7"
dependencies = [
 "ucd-util",
theMackabu's avatar
theMackabu committed
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "remove_dir_all"
version = "0.5.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3acd125665422973a33ac9d3dd2df85edad0f4ae9b00dafb1a05e43a9f5ef8e7"
dependencies = [
 "winapi",
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "rust-shell"
version = "0.2.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "fe96238927a56c408907a0c56cc7574cb198a462b4dd8c79169b98d9d5831460"
theMackabu's avatar
theMackabu committed
dependencies = [
 "env_logger 0.4.3",
 "errno 0.2.8",
theMackabu's avatar
theMackabu committed
 "lazy_static",
 "libc",
 "log 0.3.9",
theMackabu's avatar
theMackabu committed
 "nom",
theMackabu's avatar
theMackabu committed
 "regex 0.2.11",
]

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

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "rustc_version"
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.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "bfa0f585226d2e68097d4f95d113b15b83a82e819ab25717ec0590d9584ef366"
dependencies = [
theMackabu's avatar
theMackabu committed
 "semver 1.0.16",
theMackabu's avatar
theMackabu committed
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "rustix"
theMackabu's avatar
theMackabu committed
version = "0.36.7"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "d4fdebc4b395b7fbb9ab11e462e20ed9051e7b16e42d24042c776eca0ac81b03"
theMackabu's avatar
theMackabu committed
dependencies = [
 "bitflags",
 "errno 0.2.8",
 "io-lifetimes",
 "libc",
 "linux-raw-sys 0.1.4",
 "windows-sys 0.42.0",
]

[[package]]
name = "rustix"
version = "0.37.3"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "62b24138615de35e32031d041a09032ef3487a616d901ca4db224e7d557efae2"
dependencies = [
 "bitflags",
 "errno 0.3.1",
theMackabu's avatar
theMackabu committed
 "io-lifetimes",
 "libc",
 "linux-raw-sys 0.3.4",
 "windows-sys 0.45.0",
theMackabu's avatar
theMackabu committed
]

[[package]]
name = "rustls-pemfile"
version = "0.2.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5eebeaeb360c87bfb72e84abdb3447159c0eaececf1bef2aecd65a8be949d1c9"
dependencies = [
 "base64 0.13.1",
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "rustyline"
version = "9.1.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "db7826789c0e25614b03e5a54a0717a86f9ff6e6e5247f92b369472869320039"
dependencies = [
 "bitflags",
 "cfg-if",
 "clipboard-win",
 "dirs-next",
 "fd-lock",
 "libc",
 "log 0.4.17",
 "memchr 2.5.0",
 "nix",
 "radix_trie",
 "scopeguard",
 "smallvec",
 "unicode-segmentation",
 "unicode-width",
 "utf8parse",
 "winapi",
]

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

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "schannel"
theMackabu's avatar
theMackabu committed
version = "0.1.21"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "713cfb06c7059f3588fb8044c0fad1d09e3c01d225e25b9220dbfdcf16dbb1b3"
theMackabu's avatar
theMackabu committed
dependencies = [
 "windows-sys 0.42.0",
theMackabu's avatar
theMackabu committed
[[package]]
name = "scoped-tls"
version = "1.0.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e1cf6437eb19a8f4a6cc0f7dca544973b0b78843adbfeb3683d1a94a0024a294"

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

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

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

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

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

[[package]]
name = "semver-parser"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "388a1df253eca08550bef6c72392cfe7c30914bf41df5269b68cbd6ff8f570a3"

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

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

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

[[package]]
name = "serde_json"
theMackabu's avatar
theMackabu committed
version = "1.0.91"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "877c235533714907a8c2464236f5c4b2a17262ef1bd71f38f35ea592c8da6883"
theMackabu's avatar
theMackabu committed
dependencies = [
 "indexmap",
 "itoa",
 "ryu",
 "serde",
]

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

theMackabu's avatar
theMackabu committed
[[package]]
name = "serde_v8"
theMackabu's avatar
theMackabu committed
version = "0.71.0"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "f8769ec6006d818f36291ec9bb193b08eb48032bf31eab13a463b15c9e797f75"
theMackabu's avatar
theMackabu committed
dependencies = [
 "bytes",
 "derive_more",
 "serde",
theMackabu's avatar
theMackabu committed
 "serde_bytes",
theMackabu's avatar
theMackabu committed
 "smallvec",
 "v8",
]

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

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

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

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

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

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

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

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

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

[[package]]
name = "sled"
version = "0.34.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "7f96b4737c2ce5987354855aed3797279def4ebf734436c6aa4552cf8e169935"
dependencies = [
 "crc32fast",
 "crossbeam-epoch",
 "crossbeam-utils",
 "fs2",
 "fxhash",
 "libc",
 "log 0.4.17",
 "parking_lot 0.11.2",
]

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

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

[[package]]
name = "sourcemap"
theMackabu's avatar
theMackabu committed
version = "6.2.1"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "aebe057d110ddba043708da3fb010bf562ff6e9d4d60c9ee92860527bcbeccd6"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "base64 0.13.1",
theMackabu's avatar
theMackabu committed
 "if_chain",
 "rustc_version 0.2.3",
 "serde",
 "serde_json",
theMackabu's avatar
theMackabu committed
 "unicode-id",
 "url",
theMackabu's avatar
theMackabu committed
]

theMackabu's avatar
theMackabu committed
[[package]]
name = "sqlite"
theMackabu's avatar
theMackabu committed
version = "0.30.3"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "12e072cb5fb89b3fe5e9c9584676348feb503f9fb3ae829d9868171bc5372d48"
theMackabu's avatar
theMackabu committed
dependencies = [
 "libc",
 "sqlite3-sys",
]

[[package]]
name = "sqlite3-src"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d1815a7a02c996eb8e5c64f61fcb6fd9b12e593ce265c512c5853b2513635691"
dependencies = [
 "cc",
 "pkg-config",
]

[[package]]
name = "sqlite3-sys"
version = "0.14.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "d47c99824fc55360ba00caf28de0b8a0458369b832e016a64c13af0ad9fbb9ee"
dependencies = [
 "libc",
 "sqlite3-src",
]

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

[[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 = "str-buf"
version = "1.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "9e08d8363704e6c71fc928674353e6b7c23dcea9d82d7012c8faf2a3a025f8d0"

[[package]]
theMackabu's avatar
theMackabu committed
name = "string_cache"
version = "0.8.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "213494b7a2b503146286049378ce02b482200519accc31872ee8be91fa820a08"
dependencies = [
 "new_debug_unreachable",
 "once_cell",
 "parking_lot 0.12.1",
 "phf_shared",
theMackabu's avatar
theMackabu committed
 "precomputed-hash",
 "serde",
]

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

[[package]]
name = "string_enum"
version = "0.3.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "994453cd270ad0265796eb24abf5540091ed03e681c5f3c12bc33e4db33253e1"
dependencies = [
 "pmutil",
 "proc-macro2",
 "quote",
 "swc_macros_common",
 "syn",
]

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

theMackabu's avatar
theMackabu committed
[[package]]
theMackabu's avatar
theMackabu committed
name = "swc_atoms"
version = "0.4.23"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "01b878052680dcec3421ab50384279443dbf93651b05da38e5133e0894a18096"
theMackabu's avatar
theMackabu committed
dependencies = [
theMackabu's avatar
theMackabu committed
 "once_cell",
 "rustc-hash",
 "serde",
 "string_cache",
 "string_cache_codegen",
 "triomphe",
theMackabu's avatar
theMackabu committed
]

[[package]]
theMackabu's avatar
theMackabu committed
name = "swc_common"
version = "0.29.10"
theMackabu's avatar
theMackabu committed
source = "registry+https://github.com/rust-lang/crates.io-index"
theMackabu's avatar
theMackabu committed
checksum = "ebd844dfbd9969a9ef8430e954661de43edde353d65e987f935a328619698883"
theMackabu's avatar
theMackabu committed
dependencies = [
 "ahash",
theMackabu's avatar
theMackabu committed
 "ast_node",
 "better_scoped_tls",
 "cfg-if",
 "debug_unreachable",
theMackabu's avatar
theMackabu committed
 "either",
theMackabu's avatar
theMackabu committed
 "from_variant",
 "num-bigint",
theMackabu's avatar
theMackabu committed
 "once_cell",
 "rustc-hash",
 "serde",
 "siphasher",
theMackabu's avatar
theMackabu committed
 "sourcemap",
theMackabu's avatar
theMackabu committed
 "string_cache",
theMackabu's avatar
theMackabu committed
 "swc_atoms",
theMackabu's avatar
theMackabu committed
 "swc_eq_ignore_macros",
theMackabu's avatar
theMackabu committed
 "swc_visit",
 "tracing",
theMackabu's avatar
theMackabu committed
 "unicode-width",
 "url",