3727 lines
69 KiB
TOML
3727 lines
69 KiB
TOML
# This file is automatically @generated by Cargo.
|
|
# It is not intended for manual editing.
|
|
version = 4
|
|
|
|
[[package]]
|
|
name = "aho-corasick"
|
|
version = "1.1.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301"
|
|
dependencies = [
|
|
"memchr",
|
|
]
|
|
|
|
[[package]]
|
|
name = "allocator-api2"
|
|
version = "0.2.21"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "683d7910e743518b0e34f1186f92494becacb047c7b6bf616c96772180fef923"
|
|
|
|
[[package]]
|
|
name = "anes"
|
|
version = "0.1.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4b46cbb362ab8752921c97e041f5e366ee6297bd428a31275b9fcf1e380f7299"
|
|
|
|
[[package]]
|
|
name = "anstyle"
|
|
version = "1.0.14"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000"
|
|
|
|
[[package]]
|
|
name = "anyhow"
|
|
version = "1.0.102"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c"
|
|
|
|
[[package]]
|
|
name = "arrayref"
|
|
version = "0.3.9"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "76a2e8124351fda1ef8aaaa3bbd7ebbcb486bbcd4225aca0aa0d84bb2db8fecb"
|
|
|
|
[[package]]
|
|
name = "arrayvec"
|
|
version = "0.7.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "7c02d123df017efcdfbd739ef81735b36c5ba83ec3c59c80a9d7ecc718f92e50"
|
|
|
|
[[package]]
|
|
name = "autocfg"
|
|
version = "1.5.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8"
|
|
|
|
[[package]]
|
|
name = "base64"
|
|
version = "0.22.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
|
|
|
|
[[package]]
|
|
name = "bcrypt"
|
|
version = "0.19.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "523ab528ce3a7ada6597f8ccf5bd8d85ebe26d5edf311cad4d1d3cfb2d357ac6"
|
|
dependencies = [
|
|
"base64",
|
|
"blowfish",
|
|
"getrandom",
|
|
"subtle",
|
|
"zeroize",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bitflags"
|
|
version = "2.11.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c4512299f36f043ab09a583e57bceb5a5aab7a73db1805848e8fef3c9e8c78b3"
|
|
|
|
[[package]]
|
|
name = "blake2"
|
|
version = "0.10.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "46502ad458c9a52b69d4d4d32775c788b7a1b85e8bc9d482d92250fc0e3f8efe"
|
|
dependencies = [
|
|
"digest",
|
|
]
|
|
|
|
[[package]]
|
|
name = "blake2b_simd"
|
|
version = "1.0.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b79834656f71332577234b50bfc009996f7449e0c056884e6a02492ded0ca2f3"
|
|
dependencies = [
|
|
"arrayref",
|
|
"arrayvec",
|
|
"constant_time_eq",
|
|
]
|
|
|
|
[[package]]
|
|
name = "block-buffer"
|
|
version = "0.10.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71"
|
|
dependencies = [
|
|
"generic-array",
|
|
]
|
|
|
|
[[package]]
|
|
name = "blowfish"
|
|
version = "0.9.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e412e2cd0f2b2d93e02543ceae7917b3c70331573df19ee046bcbc35e45e87d7"
|
|
dependencies = [
|
|
"byteorder",
|
|
"cipher",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bstr"
|
|
version = "1.12.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "63044e1ae8e69f3b5a92c736ca6269b8d12fa7efe39bf34ddb06d102cf0e2cab"
|
|
dependencies = [
|
|
"memchr",
|
|
"serde",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bumpalo"
|
|
version = "3.20.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb"
|
|
|
|
[[package]]
|
|
name = "bun_alloc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"allocator-api2",
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_mimalloc_sys",
|
|
"bun_opaque",
|
|
"bun_wyhash",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"typed-arena",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_analytics"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bun_core",
|
|
"bun_semver",
|
|
"libc",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_api"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_alloc",
|
|
"bun_options_types",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_ast"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_dispatch",
|
|
"bun_paths",
|
|
"bun_perf",
|
|
"bun_ptr",
|
|
"bun_sys",
|
|
"bun_wyhash",
|
|
"bytemuck",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
"typed-arena",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_ast_jsc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_core",
|
|
"bun_jsc",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_base64"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_simdutf_sys",
|
|
"bun_wyhash",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_bin"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_core",
|
|
"bun_crash_handler",
|
|
"bun_io",
|
|
"bun_mimalloc_sys",
|
|
"bun_platform",
|
|
"bun_runtime",
|
|
"bun_sys",
|
|
"libc",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_boringssl"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_boringssl_sys",
|
|
"bun_cares_sys",
|
|
"bun_core",
|
|
"bun_sys",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_boringssl_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_core",
|
|
"bun_opaque",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_brotli"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_alloc",
|
|
"bun_brotli_sys",
|
|
"bun_core",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_brotli_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_opaque",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_bundler"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_analytics",
|
|
"bun_ast",
|
|
"bun_base64",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_crash_handler",
|
|
"bun_css",
|
|
"bun_dispatch",
|
|
"bun_dotenv",
|
|
"bun_errno",
|
|
"bun_event_loop",
|
|
"bun_glob",
|
|
"bun_hash",
|
|
"bun_http_types",
|
|
"bun_io",
|
|
"bun_js_parser",
|
|
"bun_js_printer",
|
|
"bun_md",
|
|
"bun_opaque",
|
|
"bun_options_types",
|
|
"bun_parsers",
|
|
"bun_paths",
|
|
"bun_perf",
|
|
"bun_ptr",
|
|
"bun_resolve_builtins",
|
|
"bun_resolver",
|
|
"bun_sourcemap",
|
|
"bun_sys",
|
|
"bun_threading",
|
|
"bun_url",
|
|
"bun_watcher",
|
|
"bun_wyhash",
|
|
"bytemuck",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"lol_html",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
"typed-arena",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_bundler_jsc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_bundler",
|
|
"bun_core",
|
|
"bun_io",
|
|
"bun_jsc",
|
|
"bun_opaque",
|
|
"bun_options_types",
|
|
"bun_paths",
|
|
"bun_ptr",
|
|
"bun_resolver",
|
|
"bun_sys",
|
|
"bun_threading",
|
|
"bun_transpiler",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_bunfig"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_analytics",
|
|
"bun_api",
|
|
"bun_ast",
|
|
"bun_bundler",
|
|
"bun_clap",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_install_types",
|
|
"bun_io",
|
|
"bun_js_parser",
|
|
"bun_options_types",
|
|
"bun_parsers",
|
|
"bun_paths",
|
|
"bun_resolver",
|
|
"bun_standalone_graph",
|
|
"bun_sys",
|
|
"bun_url",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_cares_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_core",
|
|
"bun_libuv_sys",
|
|
"bun_opaque",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_clap"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_clap_macros",
|
|
"bun_core",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_clap_macros"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_output_tags",
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_collections"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"allocator-api2",
|
|
"bun_alloc",
|
|
"bun_core",
|
|
"bun_ptr",
|
|
"bun_simdutf_sys",
|
|
"bun_wyhash",
|
|
"hashbrown 0.15.5",
|
|
"paste",
|
|
"rustc-hash",
|
|
"smallvec",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_core"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_core_macros",
|
|
"bun_dispatch",
|
|
"bun_hash",
|
|
"bun_highway",
|
|
"bun_opaque",
|
|
"bun_output_tags",
|
|
"bun_simdutf_sys",
|
|
"bun_windows_sys",
|
|
"bun_wyhash",
|
|
"bytemuck",
|
|
"const_format",
|
|
"itoa",
|
|
"libc",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_core_macros"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_output_tags",
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_crash_handler"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_analytics",
|
|
"bun_base64",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_errno",
|
|
"bun_io",
|
|
"bun_options_types",
|
|
"bun_paths",
|
|
"bun_ptr",
|
|
"bun_sys",
|
|
"bun_threading",
|
|
"bun_which",
|
|
"bun_zlib",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_csrf"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_base64",
|
|
"bun_boringssl_sys",
|
|
"bun_core",
|
|
"bun_sha_hmac",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_css"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_base64",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_css_derive",
|
|
"bun_io",
|
|
"bun_paths",
|
|
"bun_ptr",
|
|
"bun_wyhash",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
"typed-arena",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_css_derive"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_css_jsc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_css",
|
|
"bun_js_parser",
|
|
"bun_jsc",
|
|
"bun_options_types",
|
|
"bun_ptr",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_dispatch"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_dns"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_cares_sys",
|
|
"bun_core",
|
|
"bun_sys",
|
|
"bun_windows_sys",
|
|
"bun_wyhash",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_dotenv"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_dispatch",
|
|
"bun_errno",
|
|
"bun_paths",
|
|
"bun_sys",
|
|
"bun_url",
|
|
"bun_which",
|
|
"bun_wyhash",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_errno"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_core",
|
|
"bun_libuv_sys",
|
|
"bun_windows_sys",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_event_loop"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_dispatch",
|
|
"bun_dotenv",
|
|
"bun_io",
|
|
"bun_paths",
|
|
"bun_ptr",
|
|
"bun_sys",
|
|
"bun_threading",
|
|
"bun_uws",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_exe_format"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_core",
|
|
"bun_sha_hmac",
|
|
"bun_sys",
|
|
"bytemuck",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_glob"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_paths",
|
|
"bun_sys",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_hash"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_highway",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_highway"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_http"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_analytics",
|
|
"bun_ast",
|
|
"bun_base64",
|
|
"bun_boringssl",
|
|
"bun_boringssl_sys",
|
|
"bun_brotli",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_dispatch",
|
|
"bun_dns",
|
|
"bun_dotenv",
|
|
"bun_errno",
|
|
"bun_event_loop",
|
|
"bun_http_types",
|
|
"bun_io",
|
|
"bun_libdeflate_sys",
|
|
"bun_picohttp",
|
|
"bun_ptr",
|
|
"bun_sys",
|
|
"bun_threading",
|
|
"bun_url",
|
|
"bun_uws",
|
|
"bun_wyhash",
|
|
"bun_zlib",
|
|
"bun_zstd",
|
|
"bytemuck",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_http_jsc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_analytics",
|
|
"bun_base64",
|
|
"bun_boringssl",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_highway",
|
|
"bun_http",
|
|
"bun_http_types",
|
|
"bun_io",
|
|
"bun_jsc",
|
|
"bun_libdeflate_sys",
|
|
"bun_opaque",
|
|
"bun_picohttp",
|
|
"bun_ptr",
|
|
"bun_sha_hmac",
|
|
"bun_uws",
|
|
"bun_uws_sys",
|
|
"bun_zlib",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_http_types"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_url",
|
|
"bytemuck",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_ini"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_api",
|
|
"bun_ast",
|
|
"bun_base64",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_dotenv",
|
|
"bun_install_types",
|
|
"bun_js_parser",
|
|
"bun_parsers",
|
|
"bun_sys",
|
|
"bun_url",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_install"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_analytics",
|
|
"bun_ast",
|
|
"bun_base64",
|
|
"bun_boringssl_sys",
|
|
"bun_bunfig",
|
|
"bun_clap",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_crash_handler",
|
|
"bun_dns",
|
|
"bun_dotenv",
|
|
"bun_errno",
|
|
"bun_event_loop",
|
|
"bun_glob",
|
|
"bun_http",
|
|
"bun_ini",
|
|
"bun_install_types",
|
|
"bun_io",
|
|
"bun_js_parser",
|
|
"bun_js_printer",
|
|
"bun_libarchive",
|
|
"bun_libdeflate_sys",
|
|
"bun_options_types",
|
|
"bun_parsers",
|
|
"bun_patch",
|
|
"bun_paths",
|
|
"bun_perf",
|
|
"bun_picohttp",
|
|
"bun_ptr",
|
|
"bun_resolver",
|
|
"bun_semver",
|
|
"bun_sha_hmac",
|
|
"bun_simdutf_sys",
|
|
"bun_spawn",
|
|
"bun_sys",
|
|
"bun_threading",
|
|
"bun_transpiler",
|
|
"bun_url",
|
|
"bun_uws",
|
|
"bun_which",
|
|
"bun_wyhash",
|
|
"bytemuck",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_install_jsc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_api",
|
|
"bun_ast",
|
|
"bun_ast_jsc",
|
|
"bun_core",
|
|
"bun_dotenv",
|
|
"bun_ini",
|
|
"bun_install",
|
|
"bun_js_parser_jsc",
|
|
"bun_jsc",
|
|
"bun_paths",
|
|
"bun_semver",
|
|
"bun_sys",
|
|
"bun_url",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_install_types"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_semver",
|
|
"bun_wyhash",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_io"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_dispatch",
|
|
"bun_errno",
|
|
"bun_opaque",
|
|
"bun_paths",
|
|
"bun_ptr",
|
|
"bun_spawn_sys",
|
|
"bun_sys",
|
|
"bun_threading",
|
|
"bun_uws_sys",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_js_parser"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_base64",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_crash_handler",
|
|
"bun_dispatch",
|
|
"bun_highway",
|
|
"bun_options_types",
|
|
"bun_paths",
|
|
"bun_ptr",
|
|
"bun_react_compiler",
|
|
"bun_url",
|
|
"bun_wyhash",
|
|
"bytemuck",
|
|
"const_format",
|
|
"criterion",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"regex",
|
|
"scopeguard",
|
|
"smallvec",
|
|
"strum",
|
|
"thiserror",
|
|
"typed-arena",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_js_parser_jsc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_base64",
|
|
"bun_bundler",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_dotenv",
|
|
"bun_http",
|
|
"bun_js_parser",
|
|
"bun_jsc",
|
|
"bun_options_types",
|
|
"bun_parsers",
|
|
"bun_ptr",
|
|
"bun_resolver",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_js_printer"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_crash_handler",
|
|
"bun_io",
|
|
"bun_options_types",
|
|
"bun_paths",
|
|
"bun_ptr",
|
|
"bun_sourcemap",
|
|
"bun_sys",
|
|
"bun_wyhash",
|
|
"bytemuck",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
"typed-arena",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_jsc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_analytics",
|
|
"bun_api",
|
|
"bun_ast",
|
|
"bun_base64",
|
|
"bun_boringssl",
|
|
"bun_bundler",
|
|
"bun_clap",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_crash_handler",
|
|
"bun_dotenv",
|
|
"bun_errno",
|
|
"bun_event_loop",
|
|
"bun_hash",
|
|
"bun_http",
|
|
"bun_http_types",
|
|
"bun_install",
|
|
"bun_io",
|
|
"bun_js_parser",
|
|
"bun_js_printer",
|
|
"bun_jsc_macros",
|
|
"bun_opaque",
|
|
"bun_options_types",
|
|
"bun_patch",
|
|
"bun_paths",
|
|
"bun_ptr",
|
|
"bun_resolve_builtins",
|
|
"bun_resolver",
|
|
"bun_s3_signing",
|
|
"bun_sha_hmac",
|
|
"bun_simdutf_sys",
|
|
"bun_sourcemap",
|
|
"bun_spawn",
|
|
"bun_sys",
|
|
"bun_threading",
|
|
"bun_transpiler",
|
|
"bun_url",
|
|
"bun_uws",
|
|
"bun_watcher",
|
|
"bun_wyhash",
|
|
"bytemuck",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_jsc_macros"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_libarchive"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_errno",
|
|
"bun_opaque",
|
|
"bun_paths",
|
|
"bun_sys",
|
|
"bun_wyhash",
|
|
"bytemuck",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_libdeflate_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_opaque",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_libuv_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_core",
|
|
"bun_windows_sys",
|
|
"bun_wyhash",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_lsquic_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_core",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_md"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_paths",
|
|
"bun_sys",
|
|
"bun_url",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_mimalloc_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_opaque",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_opaque"
|
|
version = "0.0.0"
|
|
|
|
[[package]]
|
|
name = "bun_options_types"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_ast",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_dotenv",
|
|
"bun_errno",
|
|
"bun_install_types",
|
|
"bun_libarchive",
|
|
"bun_paths",
|
|
"bun_semver",
|
|
"bun_sys",
|
|
"bun_url",
|
|
"bun_wyhash",
|
|
"bun_zlib",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_output"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_core",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_output_tags"
|
|
version = "0.0.0"
|
|
|
|
[[package]]
|
|
name = "bun_parsers"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_highway",
|
|
"bun_simdutf_sys",
|
|
"bun_wyhash",
|
|
"bytemuck",
|
|
"const_format",
|
|
"criterion",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"quick-xml",
|
|
"roxmltree",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
"typed-arena",
|
|
"xml-rs",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_patch"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_errno",
|
|
"bun_event_loop",
|
|
"bun_paths",
|
|
"bun_spawn",
|
|
"bun_sys",
|
|
"bun_which",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_patch_jsc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_core",
|
|
"bun_jsc",
|
|
"bun_patch",
|
|
"bun_sys",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_paths"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_core",
|
|
"bun_errno",
|
|
"bun_simdutf_sys",
|
|
"bytemuck",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_perf"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_core",
|
|
"bun_sys",
|
|
"libc",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_picohttp"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_core",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_platform"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_core",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_ptr"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_core",
|
|
"bun_core_macros",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_react_compiler"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"enumset",
|
|
"rustc-hash",
|
|
"smallvec",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_resolve_builtins"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_ast",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_options_types",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_resolver"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_analytics",
|
|
"bun_ast",
|
|
"bun_base64",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_crash_handler",
|
|
"bun_dotenv",
|
|
"bun_errno",
|
|
"bun_glob",
|
|
"bun_hash",
|
|
"bun_http_types",
|
|
"bun_install_types",
|
|
"bun_js_parser",
|
|
"bun_options_types",
|
|
"bun_parsers",
|
|
"bun_paths",
|
|
"bun_perf",
|
|
"bun_ptr",
|
|
"bun_resolve_builtins",
|
|
"bun_semver",
|
|
"bun_sys",
|
|
"bun_threading",
|
|
"bun_url",
|
|
"bun_watcher",
|
|
"bun_wyhash",
|
|
"bun_zstd",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_router"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_errno",
|
|
"bun_http_types",
|
|
"bun_js_parser",
|
|
"bun_paths",
|
|
"bun_ptr",
|
|
"bun_resolver",
|
|
"bun_sys",
|
|
"bun_url",
|
|
"bun_wyhash",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_runtime"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bcrypt",
|
|
"bitflags",
|
|
"blake2",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_analytics",
|
|
"bun_ast",
|
|
"bun_ast_jsc",
|
|
"bun_base64",
|
|
"bun_boringssl",
|
|
"bun_boringssl_sys",
|
|
"bun_brotli",
|
|
"bun_bundler",
|
|
"bun_bundler_jsc",
|
|
"bun_bunfig",
|
|
"bun_cares_sys",
|
|
"bun_clap",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_crash_handler",
|
|
"bun_csrf",
|
|
"bun_css",
|
|
"bun_css_jsc",
|
|
"bun_dns",
|
|
"bun_dotenv",
|
|
"bun_errno",
|
|
"bun_event_loop",
|
|
"bun_glob",
|
|
"bun_hash",
|
|
"bun_highway",
|
|
"bun_http",
|
|
"bun_http_jsc",
|
|
"bun_http_types",
|
|
"bun_install",
|
|
"bun_install_jsc",
|
|
"bun_install_types",
|
|
"bun_io",
|
|
"bun_js_parser",
|
|
"bun_js_parser_jsc",
|
|
"bun_js_printer",
|
|
"bun_jsc",
|
|
"bun_libarchive",
|
|
"bun_libdeflate_sys",
|
|
"bun_libuv_sys",
|
|
"bun_lsquic_sys",
|
|
"bun_md",
|
|
"bun_opaque",
|
|
"bun_options_types",
|
|
"bun_output",
|
|
"bun_parsers",
|
|
"bun_patch_jsc",
|
|
"bun_paths",
|
|
"bun_picohttp",
|
|
"bun_ptr",
|
|
"bun_resolve_builtins",
|
|
"bun_resolver",
|
|
"bun_router",
|
|
"bun_s3_signing",
|
|
"bun_safety",
|
|
"bun_semver",
|
|
"bun_semver_jsc",
|
|
"bun_sha_hmac",
|
|
"bun_shell_parser",
|
|
"bun_simdutf_sys",
|
|
"bun_sourcemap",
|
|
"bun_sourcemap_jsc",
|
|
"bun_spawn",
|
|
"bun_sql_jsc",
|
|
"bun_standalone_graph",
|
|
"bun_sys",
|
|
"bun_sys_jsc",
|
|
"bun_tcc_sys",
|
|
"bun_threading",
|
|
"bun_transpiler",
|
|
"bun_url",
|
|
"bun_uws",
|
|
"bun_uws_sys",
|
|
"bun_valkey",
|
|
"bun_watcher",
|
|
"bun_which",
|
|
"bun_wyhash",
|
|
"bun_zlib",
|
|
"bun_zstd",
|
|
"bytemuck",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"getrandom",
|
|
"libc",
|
|
"lol_html",
|
|
"rust-argon2",
|
|
"scopeguard",
|
|
"sha3",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_s3_signing"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_base64",
|
|
"bun_boringssl_sys",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_http_types",
|
|
"bun_picohttp",
|
|
"bun_ptr",
|
|
"bun_sha_hmac",
|
|
"bun_wyhash",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_safety"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_core",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_semver"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_wyhash",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_semver_jsc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bstr",
|
|
"bun_core",
|
|
"bun_jsc",
|
|
"bun_semver",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_sha_hmac"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_boringssl",
|
|
"bun_boringssl_sys",
|
|
"bun_core",
|
|
"bun_opaque",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_shell_parser"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"smallvec",
|
|
"strum",
|
|
"thiserror",
|
|
"typed-arena",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_shim_impl"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_opaque",
|
|
"bun_windows_sys",
|
|
"bytemuck",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_simdutf_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_sourcemap"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_base64",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_highway",
|
|
"bun_io",
|
|
"bun_opaque",
|
|
"bun_parsers",
|
|
"bun_paths",
|
|
"bun_ptr",
|
|
"bun_semver",
|
|
"bun_sys",
|
|
"bun_url",
|
|
"bun_zstd",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"smallvec",
|
|
"strum",
|
|
"thiserror",
|
|
"typed-arena",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_sourcemap_jsc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_io",
|
|
"bun_jsc",
|
|
"bun_opaque",
|
|
"bun_options_types",
|
|
"bun_paths",
|
|
"bun_sourcemap",
|
|
"bun_wyhash",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_spawn"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_analytics",
|
|
"bun_core",
|
|
"bun_crash_handler",
|
|
"bun_dispatch",
|
|
"bun_errno",
|
|
"bun_event_loop",
|
|
"bun_io",
|
|
"bun_opaque",
|
|
"bun_output",
|
|
"bun_ptr",
|
|
"bun_spawn_sys",
|
|
"bun_sys",
|
|
"bun_threading",
|
|
"bun_which",
|
|
"libc",
|
|
"scopeguard",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_spawn_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bstr",
|
|
"bun_analytics",
|
|
"bun_core",
|
|
"bun_libuv_sys",
|
|
"bun_sys",
|
|
"bun_windows_sys",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_sql"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_boringssl",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_ptr",
|
|
"bun_sha_hmac",
|
|
"bun_sys",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_sql_jsc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_analytics",
|
|
"bun_base64",
|
|
"bun_boringssl",
|
|
"bun_boringssl_sys",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_event_loop",
|
|
"bun_io",
|
|
"bun_jsc",
|
|
"bun_opaque",
|
|
"bun_ptr",
|
|
"bun_sha_hmac",
|
|
"bun_sql",
|
|
"bun_uws",
|
|
"bun_uws_sys",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_standalone_graph"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_ast",
|
|
"bun_bundler",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_dotenv",
|
|
"bun_errno",
|
|
"bun_exe_format",
|
|
"bun_http",
|
|
"bun_io",
|
|
"bun_js_parser",
|
|
"bun_libarchive",
|
|
"bun_opaque",
|
|
"bun_options_types",
|
|
"bun_parsers",
|
|
"bun_paths",
|
|
"bun_perf",
|
|
"bun_resolver",
|
|
"bun_sourcemap",
|
|
"bun_sys",
|
|
"bun_threading",
|
|
"bun_url",
|
|
"bun_zlib",
|
|
"bun_zstd",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_core",
|
|
"bun_errno",
|
|
"bun_libuv_sys",
|
|
"bun_opaque",
|
|
"bun_output",
|
|
"bun_paths",
|
|
"bun_windows_sys",
|
|
"bun_wyhash",
|
|
"bytemuck",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"rustix",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_sys_jsc"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_core",
|
|
"bun_jsc",
|
|
"bun_sys",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_tcc_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_core",
|
|
"bun_opaque",
|
|
"bun_ptr",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_threading"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_alloc",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_ptr",
|
|
"bun_safety",
|
|
"bun_sys",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_transpiler"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bun_bundler",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_url"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_paths",
|
|
"bun_wyhash",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_uws"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_boringssl",
|
|
"bun_core",
|
|
"bun_jsc_macros",
|
|
"bun_opaque",
|
|
"bun_ptr",
|
|
"bun_uws_sys",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_uws_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_boringssl_sys",
|
|
"bun_core",
|
|
"bun_errno",
|
|
"bun_http_types",
|
|
"bun_libuv_sys",
|
|
"bun_opaque",
|
|
"bun_paths",
|
|
"bun_windows_sys",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_valkey"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_core",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_watcher"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_errno",
|
|
"bun_paths",
|
|
"bun_ptr",
|
|
"bun_sys",
|
|
"bun_threading",
|
|
"bun_wyhash",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_which"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_core",
|
|
"bun_paths",
|
|
"bun_sys",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_windows_sys"
|
|
version = "0.0.0"
|
|
|
|
[[package]]
|
|
name = "bun_wyhash"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_zlib"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_alloc",
|
|
"bun_collections",
|
|
"bun_core",
|
|
"bun_io",
|
|
"bun_zlib_sys",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_zlib_sys"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_core",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bun_zstd"
|
|
version = "0.0.0"
|
|
dependencies = [
|
|
"bitflags",
|
|
"bstr",
|
|
"bun_core",
|
|
"bun_opaque",
|
|
"const_format",
|
|
"enum-map",
|
|
"enumset",
|
|
"libc",
|
|
"scopeguard",
|
|
"strum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "bytemuck"
|
|
version = "1.25.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec"
|
|
|
|
[[package]]
|
|
name = "byteorder"
|
|
version = "1.5.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b"
|
|
|
|
[[package]]
|
|
name = "cast"
|
|
version = "0.3.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "37b2a672a2cb129a2e41c10b1224bb368f9f37a2b16b612598138befd7b37eb5"
|
|
|
|
[[package]]
|
|
name = "cfg-if"
|
|
version = "1.0.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801"
|
|
|
|
[[package]]
|
|
name = "ciborium"
|
|
version = "0.2.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "42e69ffd6f0917f5c029256a24d0161db17cea3997d185db0d35926308770f0e"
|
|
dependencies = [
|
|
"ciborium-io",
|
|
"ciborium-ll",
|
|
"serde",
|
|
]
|
|
|
|
[[package]]
|
|
name = "ciborium-io"
|
|
version = "0.2.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "05afea1e0a06c9be33d539b876f1ce3692f4afea2cb41f740e7743225ed1c757"
|
|
|
|
[[package]]
|
|
name = "ciborium-ll"
|
|
version = "0.2.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "57663b653d948a338bfb3eeba9bb2fd5fcfaecb9e199e87e1eda4d9e8b240fd9"
|
|
dependencies = [
|
|
"ciborium-io",
|
|
"half",
|
|
]
|
|
|
|
[[package]]
|
|
name = "cipher"
|
|
version = "0.4.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "773f3b9af64447d2ce9850330c473515014aa235e6a783b02db81ff39e4a3dad"
|
|
dependencies = [
|
|
"crypto-common",
|
|
"inout",
|
|
]
|
|
|
|
[[package]]
|
|
name = "clap"
|
|
version = "4.6.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51"
|
|
dependencies = [
|
|
"clap_builder",
|
|
]
|
|
|
|
[[package]]
|
|
name = "clap_builder"
|
|
version = "4.6.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f"
|
|
dependencies = [
|
|
"anstyle",
|
|
"clap_lex",
|
|
]
|
|
|
|
[[package]]
|
|
name = "clap_lex"
|
|
version = "1.1.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9"
|
|
|
|
[[package]]
|
|
name = "const_format"
|
|
version = "0.2.36"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4481a617ad9a412be3b97c5d403fef8ed023103368908b9c50af598ff467cc1e"
|
|
dependencies = [
|
|
"const_format_proc_macros",
|
|
"konst",
|
|
]
|
|
|
|
[[package]]
|
|
name = "const_format_proc_macros"
|
|
version = "0.2.34"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1d57c2eccfb16dbac1f4e61e206105db5820c9d26c3c472bc17c774259ef7744"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"unicode-xid",
|
|
]
|
|
|
|
[[package]]
|
|
name = "constant_time_eq"
|
|
version = "0.4.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "3d52eff69cd5e647efe296129160853a42795992097e8af39800e1060caeea9b"
|
|
|
|
[[package]]
|
|
name = "cpufeatures"
|
|
version = "0.2.17"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280"
|
|
dependencies = [
|
|
"libc",
|
|
]
|
|
|
|
[[package]]
|
|
name = "criterion"
|
|
version = "0.5.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f2b12d017a929603d80db1831cd3a24082f8137ce19c69e6447f54f5fc8d692f"
|
|
dependencies = [
|
|
"anes",
|
|
"cast",
|
|
"ciborium",
|
|
"clap",
|
|
"criterion-plot",
|
|
"is-terminal",
|
|
"itertools",
|
|
"num-traits",
|
|
"once_cell",
|
|
"oorandom",
|
|
"plotters",
|
|
"rayon",
|
|
"regex",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"tinytemplate",
|
|
"walkdir",
|
|
]
|
|
|
|
[[package]]
|
|
name = "criterion-plot"
|
|
version = "0.5.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "6b50826342786a51a89e2da3a28f1c32b06e387201bc2d19791f622c673706b1"
|
|
dependencies = [
|
|
"cast",
|
|
"itertools",
|
|
]
|
|
|
|
[[package]]
|
|
name = "crossbeam-deque"
|
|
version = "0.8.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9dd111b7b7f7d55b72c0a6ae361660ee5853c9af73f70c3c2ef6858b950e2e51"
|
|
dependencies = [
|
|
"crossbeam-epoch",
|
|
"crossbeam-utils",
|
|
]
|
|
|
|
[[package]]
|
|
name = "crossbeam-epoch"
|
|
version = "0.9.18"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "5b82ac4a3c2ca9c3460964f020e1402edd5753411d7737aa39c3714ad1b5420e"
|
|
dependencies = [
|
|
"crossbeam-utils",
|
|
]
|
|
|
|
[[package]]
|
|
name = "crossbeam-utils"
|
|
version = "0.8.21"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28"
|
|
|
|
[[package]]
|
|
name = "crunchy"
|
|
version = "0.2.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "460fbee9c2c2f33933d720630a6a0bac33ba7053db5344fac858d4b8952d77d5"
|
|
|
|
[[package]]
|
|
name = "crypto-common"
|
|
version = "0.1.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a"
|
|
dependencies = [
|
|
"generic-array",
|
|
"typenum",
|
|
]
|
|
|
|
[[package]]
|
|
name = "cssparser"
|
|
version = "0.36.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "dae61cf9c0abb83bd659dab65b7e4e38d8236824c85f0f804f173567bda257d2"
|
|
dependencies = [
|
|
"cssparser-macros",
|
|
"dtoa-short",
|
|
"itoa",
|
|
"phf",
|
|
"smallvec",
|
|
]
|
|
|
|
[[package]]
|
|
name = "cssparser-macros"
|
|
version = "0.6.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331"
|
|
dependencies = [
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "darling"
|
|
version = "0.21.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0"
|
|
dependencies = [
|
|
"darling_core",
|
|
"darling_macro",
|
|
]
|
|
|
|
[[package]]
|
|
name = "darling_core"
|
|
version = "0.21.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4"
|
|
dependencies = [
|
|
"fnv",
|
|
"ident_case",
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "darling_macro"
|
|
version = "0.21.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81"
|
|
dependencies = [
|
|
"darling_core",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "derive_more"
|
|
version = "2.1.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d751e9e49156b02b44f9c1815bcb94b984cdcc4396ecc32521c739452808b134"
|
|
dependencies = [
|
|
"derive_more-impl",
|
|
]
|
|
|
|
[[package]]
|
|
name = "derive_more-impl"
|
|
version = "2.1.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "799a97264921d8623a957f6c3b9011f3b5492f557bbb7a5a19b7fa6d06ba8dcb"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"rustc_version",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "digest"
|
|
version = "0.10.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292"
|
|
dependencies = [
|
|
"block-buffer",
|
|
"crypto-common",
|
|
"subtle",
|
|
]
|
|
|
|
[[package]]
|
|
name = "dtoa"
|
|
version = "1.0.11"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590"
|
|
|
|
[[package]]
|
|
name = "dtoa-short"
|
|
version = "0.3.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87"
|
|
dependencies = [
|
|
"dtoa",
|
|
]
|
|
|
|
[[package]]
|
|
name = "either"
|
|
version = "1.15.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "48c757948c5ede0e46177b7add2e67155f70e33c07fea8284df6576da70b3719"
|
|
|
|
[[package]]
|
|
name = "encoding_rs"
|
|
version = "0.8.35"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "75030f3c4f45dafd7586dd6780965a8c7e8e285a5ecb86713e63a79c5b2766f3"
|
|
dependencies = [
|
|
"cfg-if",
|
|
]
|
|
|
|
[[package]]
|
|
name = "enum-map"
|
|
version = "2.7.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "6866f3bfdf8207509a033af1a75a7b08abda06bbaaeae6669323fd5a097df2e9"
|
|
dependencies = [
|
|
"enum-map-derive",
|
|
]
|
|
|
|
[[package]]
|
|
name = "enum-map-derive"
|
|
version = "0.17.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f282cfdfe92516eb26c2af8589c274c7c17681f5ecc03c18255fe741c6aa64eb"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "enumset"
|
|
version = "1.1.10"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "25b07a8dfbbbfc0064c0a6bdf9edcf966de6b1c33ce344bdeca3b41615452634"
|
|
dependencies = [
|
|
"enumset_derive",
|
|
]
|
|
|
|
[[package]]
|
|
name = "enumset_derive"
|
|
version = "0.14.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f43e744e4ea338060faee68ed933e46e722fb7f3617e722a5772d7e856d8b3ce"
|
|
dependencies = [
|
|
"darling",
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "equivalent"
|
|
version = "1.0.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f"
|
|
|
|
[[package]]
|
|
name = "errno"
|
|
version = "0.3.14"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "39cab71617ae0d63f51a36d69f866391735b51691dbda63cf6f96d042b63efeb"
|
|
dependencies = [
|
|
"libc",
|
|
"windows-sys 0.61.2",
|
|
]
|
|
|
|
[[package]]
|
|
name = "fastrand"
|
|
version = "2.4.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9f1f227452a390804cdb637b74a86990f2a7d7ba4b7d5693aac9b4dd6defd8d6"
|
|
|
|
[[package]]
|
|
name = "fnv"
|
|
version = "1.0.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
|
|
|
|
[[package]]
|
|
name = "foldhash"
|
|
version = "0.1.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2"
|
|
|
|
[[package]]
|
|
name = "foldhash"
|
|
version = "0.2.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "77ce24cb58228fbb8aa041425bb1050850ac19177686ea6e0f41a70416f56fdb"
|
|
|
|
[[package]]
|
|
name = "futures-core"
|
|
version = "0.3.32"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d"
|
|
|
|
[[package]]
|
|
name = "futures-task"
|
|
version = "0.3.32"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393"
|
|
|
|
[[package]]
|
|
name = "futures-util"
|
|
version = "0.3.32"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6"
|
|
dependencies = [
|
|
"futures-core",
|
|
"futures-task",
|
|
"pin-project-lite",
|
|
"slab",
|
|
]
|
|
|
|
[[package]]
|
|
name = "generic-array"
|
|
version = "0.14.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a"
|
|
dependencies = [
|
|
"typenum",
|
|
"version_check",
|
|
]
|
|
|
|
[[package]]
|
|
name = "getrandom"
|
|
version = "0.4.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"libc",
|
|
"r-efi",
|
|
"wasip2",
|
|
"wasip3",
|
|
]
|
|
|
|
[[package]]
|
|
name = "half"
|
|
version = "2.7.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "6ea2d84b969582b4b1864a92dc5d27cd2b77b622a8d79306834f1be5ba20d84b"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"crunchy",
|
|
"zerocopy",
|
|
]
|
|
|
|
[[package]]
|
|
name = "hashbrown"
|
|
version = "0.15.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1"
|
|
dependencies = [
|
|
"allocator-api2",
|
|
"foldhash 0.1.5",
|
|
]
|
|
|
|
[[package]]
|
|
name = "hashbrown"
|
|
version = "0.16.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100"
|
|
dependencies = [
|
|
"allocator-api2",
|
|
"equivalent",
|
|
"foldhash 0.2.0",
|
|
]
|
|
|
|
[[package]]
|
|
name = "hashbrown"
|
|
version = "0.17.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4f467dd6dccf739c208452f8014c75c18bb8301b050ad1cfb27153803edb0f51"
|
|
|
|
[[package]]
|
|
name = "heck"
|
|
version = "0.5.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea"
|
|
|
|
[[package]]
|
|
name = "hermit-abi"
|
|
version = "0.5.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "fc0fef456e4baa96da950455cd02c081ca953b141298e41db3fc7e36b1da849c"
|
|
|
|
[[package]]
|
|
name = "id-arena"
|
|
version = "2.3.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954"
|
|
|
|
[[package]]
|
|
name = "ident_case"
|
|
version = "1.0.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
|
|
|
|
[[package]]
|
|
name = "indexmap"
|
|
version = "2.14.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d466e9454f08e4a911e14806c24e16fba1b4c121d1ea474396f396069cf949d9"
|
|
dependencies = [
|
|
"equivalent",
|
|
"hashbrown 0.17.0",
|
|
"serde",
|
|
"serde_core",
|
|
]
|
|
|
|
[[package]]
|
|
name = "inout"
|
|
version = "0.1.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "879f10e63c20629ecabbb64a8010319738c66a5cd0c29b02d63d272b03751d01"
|
|
dependencies = [
|
|
"generic-array",
|
|
]
|
|
|
|
[[package]]
|
|
name = "is-terminal"
|
|
version = "0.4.17"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "3640c1c38b8e4e43584d8df18be5fc6b0aa314ce6ebf51b53313d4306cca8e46"
|
|
dependencies = [
|
|
"hermit-abi",
|
|
"libc",
|
|
"windows-sys 0.61.2",
|
|
]
|
|
|
|
[[package]]
|
|
name = "itertools"
|
|
version = "0.10.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473"
|
|
dependencies = [
|
|
"either",
|
|
]
|
|
|
|
[[package]]
|
|
name = "itoa"
|
|
version = "1.0.18"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682"
|
|
|
|
[[package]]
|
|
name = "js-sys"
|
|
version = "0.3.98"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "67df7112613f8bfd9150013a0314e196f4800d3201ae742489d999db2f979f08"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"futures-util",
|
|
"once_cell",
|
|
"wasm-bindgen",
|
|
]
|
|
|
|
[[package]]
|
|
name = "keccak"
|
|
version = "0.1.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "cb26cec98cce3a3d96cbb7bced3c4b16e3d13f27ec56dbd62cbc8f39cfb9d653"
|
|
dependencies = [
|
|
"cpufeatures",
|
|
]
|
|
|
|
[[package]]
|
|
name = "konst"
|
|
version = "0.2.20"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "128133ed7824fcd73d6e7b17957c5eb7bacb885649bd8c69708b2331a10bcefb"
|
|
dependencies = [
|
|
"konst_macro_rules",
|
|
]
|
|
|
|
[[package]]
|
|
name = "konst_macro_rules"
|
|
version = "0.2.19"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "a4933f3f57a8e9d9da04db23fb153356ecaf00cbd14aee46279c33dc80925c37"
|
|
|
|
[[package]]
|
|
name = "leb128fmt"
|
|
version = "0.1.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2"
|
|
|
|
[[package]]
|
|
name = "libc"
|
|
version = "0.2.186"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66"
|
|
|
|
[[package]]
|
|
name = "linux-raw-sys"
|
|
version = "0.4.15"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d26c52dbd32dccf2d10cac7725f8eae5296885fb5703b261f7d0a0739ec807ab"
|
|
|
|
[[package]]
|
|
name = "log"
|
|
version = "0.4.29"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897"
|
|
|
|
[[package]]
|
|
name = "lol_html"
|
|
version = "2.7.2"
|
|
dependencies = [
|
|
"bitflags",
|
|
"cfg-if",
|
|
"cssparser",
|
|
"encoding_rs",
|
|
"foldhash 0.2.0",
|
|
"hashbrown 0.16.1",
|
|
"memchr",
|
|
"mime",
|
|
"precomputed-hash",
|
|
"selectors",
|
|
"thiserror",
|
|
]
|
|
|
|
[[package]]
|
|
name = "memchr"
|
|
version = "2.8.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79"
|
|
|
|
[[package]]
|
|
name = "mime"
|
|
version = "0.3.17"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a"
|
|
|
|
[[package]]
|
|
name = "new_debug_unreachable"
|
|
version = "1.0.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086"
|
|
|
|
[[package]]
|
|
name = "num-traits"
|
|
version = "0.2.19"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841"
|
|
dependencies = [
|
|
"autocfg",
|
|
]
|
|
|
|
[[package]]
|
|
name = "once_cell"
|
|
version = "1.21.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50"
|
|
|
|
[[package]]
|
|
name = "oorandom"
|
|
version = "11.1.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d6790f58c7ff633d8771f42965289203411a5e5c68388703c06e14f24770b41e"
|
|
|
|
[[package]]
|
|
name = "paste"
|
|
version = "1.0.15"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
|
|
|
|
[[package]]
|
|
name = "phf"
|
|
version = "0.13.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c1562dc717473dbaa4c1f85a36410e03c047b2e7df7f45ee938fbef64ae7fadf"
|
|
dependencies = [
|
|
"phf_macros",
|
|
"phf_shared",
|
|
"serde",
|
|
]
|
|
|
|
[[package]]
|
|
name = "phf_codegen"
|
|
version = "0.13.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "49aa7f9d80421bca176ca8dbfebe668cc7a2684708594ec9f3c0db0805d5d6e1"
|
|
dependencies = [
|
|
"phf_generator",
|
|
"phf_shared",
|
|
]
|
|
|
|
[[package]]
|
|
name = "phf_generator"
|
|
version = "0.13.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "135ace3a761e564ec88c03a77317a7c6b80bb7f7135ef2544dbe054243b89737"
|
|
dependencies = [
|
|
"fastrand",
|
|
"phf_shared",
|
|
]
|
|
|
|
[[package]]
|
|
name = "phf_macros"
|
|
version = "0.13.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "812f032b54b1e759ccd5f8b6677695d5268c588701effba24601f6932f8269ef"
|
|
dependencies = [
|
|
"phf_generator",
|
|
"phf_shared",
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "phf_shared"
|
|
version = "0.13.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e57fef6bc5981e38c2ce2d63bfa546861309f875b8a75f092d1d54ae2d64f266"
|
|
dependencies = [
|
|
"siphasher",
|
|
]
|
|
|
|
[[package]]
|
|
name = "pin-project-lite"
|
|
version = "0.2.17"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd"
|
|
|
|
[[package]]
|
|
name = "plotters"
|
|
version = "0.3.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "5aeb6f403d7a4911efb1e33402027fc44f29b5bf6def3effcc22d7bb75f2b747"
|
|
dependencies = [
|
|
"num-traits",
|
|
"plotters-backend",
|
|
"plotters-svg",
|
|
"wasm-bindgen",
|
|
"web-sys",
|
|
]
|
|
|
|
[[package]]
|
|
name = "plotters-backend"
|
|
version = "0.3.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "df42e13c12958a16b3f7f4386b9ab1f3e7933914ecea48da7139435263a4172a"
|
|
|
|
[[package]]
|
|
name = "plotters-svg"
|
|
version = "0.3.7"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "51bae2ac328883f7acdfea3d66a7c35751187f870bc81f94563733a154d7a670"
|
|
dependencies = [
|
|
"plotters-backend",
|
|
]
|
|
|
|
[[package]]
|
|
name = "precomputed-hash"
|
|
version = "0.1.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c"
|
|
|
|
[[package]]
|
|
name = "prettyplease"
|
|
version = "0.2.37"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "proc-macro2"
|
|
version = "1.0.106"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934"
|
|
dependencies = [
|
|
"unicode-ident",
|
|
]
|
|
|
|
[[package]]
|
|
name = "quick-xml"
|
|
version = "0.38.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c"
|
|
dependencies = [
|
|
"memchr",
|
|
]
|
|
|
|
[[package]]
|
|
name = "quote"
|
|
version = "1.0.45"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
]
|
|
|
|
[[package]]
|
|
name = "r-efi"
|
|
version = "6.0.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf"
|
|
|
|
[[package]]
|
|
name = "rayon"
|
|
version = "1.12.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "fb39b166781f92d482534ef4b4b1b2568f42613b53e5b6c160e24cfbfa30926d"
|
|
dependencies = [
|
|
"either",
|
|
"rayon-core",
|
|
]
|
|
|
|
[[package]]
|
|
name = "rayon-core"
|
|
version = "1.13.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "22e18b0f0062d30d4230b2e85ff77fdfe4326feb054b9783a3460d8435c8ab91"
|
|
dependencies = [
|
|
"crossbeam-deque",
|
|
"crossbeam-utils",
|
|
]
|
|
|
|
[[package]]
|
|
name = "regex"
|
|
version = "1.12.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276"
|
|
dependencies = [
|
|
"aho-corasick",
|
|
"memchr",
|
|
"regex-automata",
|
|
"regex-syntax",
|
|
]
|
|
|
|
[[package]]
|
|
name = "regex-automata"
|
|
version = "0.4.14"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f"
|
|
dependencies = [
|
|
"aho-corasick",
|
|
"memchr",
|
|
"regex-syntax",
|
|
]
|
|
|
|
[[package]]
|
|
name = "regex-syntax"
|
|
version = "0.8.10"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a"
|
|
|
|
[[package]]
|
|
name = "roxmltree"
|
|
version = "0.20.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "6c20b6793b5c2fa6553b250154b78d6d0db37e72700ae35fad9387a46f487c97"
|
|
|
|
[[package]]
|
|
name = "rust-argon2"
|
|
version = "3.0.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8ae76b7506744d254fd0eb2c0ff5c5d108201ccbb083111ac04a44eeda105680"
|
|
dependencies = [
|
|
"base64",
|
|
"blake2b_simd",
|
|
"constant_time_eq",
|
|
"crossbeam-utils",
|
|
]
|
|
|
|
[[package]]
|
|
name = "rustc-hash"
|
|
version = "2.1.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "94300abf3f1ae2e2b8ffb7b58043de3d399c73fa6f4b73826402a5c457614dbe"
|
|
|
|
[[package]]
|
|
name = "rustc_version"
|
|
version = "0.4.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92"
|
|
dependencies = [
|
|
"semver",
|
|
]
|
|
|
|
[[package]]
|
|
name = "rustix"
|
|
version = "0.38.44"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "fdb5bc1ae2baa591800df16c9ca78619bf65c0488b41b96ccec5d11220d8c154"
|
|
dependencies = [
|
|
"bitflags",
|
|
"errno",
|
|
"libc",
|
|
"linux-raw-sys",
|
|
"windows-sys 0.59.0",
|
|
]
|
|
|
|
[[package]]
|
|
name = "rustversion"
|
|
version = "1.0.22"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d"
|
|
|
|
[[package]]
|
|
name = "same-file"
|
|
version = "1.0.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502"
|
|
dependencies = [
|
|
"winapi-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "scopeguard"
|
|
version = "1.2.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49"
|
|
|
|
[[package]]
|
|
name = "selectors"
|
|
version = "0.33.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "feef350c36147532e1b79ea5c1f3791373e61cbd9a6a2615413b3807bb164fb7"
|
|
dependencies = [
|
|
"bitflags",
|
|
"cssparser",
|
|
"derive_more",
|
|
"log",
|
|
"new_debug_unreachable",
|
|
"phf",
|
|
"phf_codegen",
|
|
"precomputed-hash",
|
|
"rustc-hash",
|
|
"servo_arc",
|
|
"smallvec",
|
|
]
|
|
|
|
[[package]]
|
|
name = "semver"
|
|
version = "1.0.28"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8a7852d02fc848982e0c167ef163aaff9cd91dc640ba85e263cb1ce46fae51cd"
|
|
|
|
[[package]]
|
|
name = "serde"
|
|
version = "1.0.228"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e"
|
|
dependencies = [
|
|
"serde_core",
|
|
"serde_derive",
|
|
]
|
|
|
|
[[package]]
|
|
name = "serde_core"
|
|
version = "1.0.228"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad"
|
|
dependencies = [
|
|
"serde_derive",
|
|
]
|
|
|
|
[[package]]
|
|
name = "serde_derive"
|
|
version = "1.0.228"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "serde_json"
|
|
version = "1.0.149"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86"
|
|
dependencies = [
|
|
"itoa",
|
|
"memchr",
|
|
"serde",
|
|
"serde_core",
|
|
"zmij",
|
|
]
|
|
|
|
[[package]]
|
|
name = "servo_arc"
|
|
version = "0.4.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "170fb83ab34de17dc69aa7c67482b22218ddb85da56546f9bd6b929e32a05930"
|
|
dependencies = [
|
|
"stable_deref_trait",
|
|
]
|
|
|
|
[[package]]
|
|
name = "sha3"
|
|
version = "0.10.9"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "77fd7028345d415a4034cf8777cd4f8ab1851274233b45f84e3d955502d93874"
|
|
dependencies = [
|
|
"digest",
|
|
"keccak",
|
|
]
|
|
|
|
[[package]]
|
|
name = "siphasher"
|
|
version = "1.0.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8ee5873ec9cce0195efcb7a4e9507a04cd49aec9c83d0389df45b1ef7ba2e649"
|
|
|
|
[[package]]
|
|
name = "slab"
|
|
version = "0.4.12"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5"
|
|
|
|
[[package]]
|
|
name = "smallvec"
|
|
version = "1.15.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03"
|
|
|
|
[[package]]
|
|
name = "stable_deref_trait"
|
|
version = "1.2.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596"
|
|
|
|
[[package]]
|
|
name = "strum"
|
|
version = "0.26.3"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8fec0f0aef304996cf250b31b5a10dee7980c85da9d759361292b8bca5a18f06"
|
|
dependencies = [
|
|
"strum_macros",
|
|
]
|
|
|
|
[[package]]
|
|
name = "strum_macros"
|
|
version = "0.26.4"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4c6bee85a5a24955dc440386795aa378cd9cf82acd5f764469152d2270e581be"
|
|
dependencies = [
|
|
"heck",
|
|
"proc-macro2",
|
|
"quote",
|
|
"rustversion",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "subtle"
|
|
version = "2.6.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292"
|
|
|
|
[[package]]
|
|
name = "syn"
|
|
version = "2.0.117"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"unicode-ident",
|
|
]
|
|
|
|
[[package]]
|
|
name = "thiserror"
|
|
version = "2.0.18"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4"
|
|
dependencies = [
|
|
"thiserror-impl",
|
|
]
|
|
|
|
[[package]]
|
|
name = "thiserror-impl"
|
|
version = "2.0.18"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "tinytemplate"
|
|
version = "1.2.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "be4d6b5f19ff7664e8c98d03e2139cb510db9b0a60b55f8e8709b689d939b6bc"
|
|
dependencies = [
|
|
"serde",
|
|
"serde_json",
|
|
]
|
|
|
|
[[package]]
|
|
name = "typed-arena"
|
|
version = "2.0.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
|
|
|
|
[[package]]
|
|
name = "typenum"
|
|
version = "1.20.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "40ce102ab67701b8526c123c1bab5cbe42d7040ccfd0f64af1a385808d2f43de"
|
|
|
|
[[package]]
|
|
name = "unicode-ident"
|
|
version = "1.0.24"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75"
|
|
|
|
[[package]]
|
|
name = "unicode-xid"
|
|
version = "0.2.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
|
|
|
|
[[package]]
|
|
name = "version_check"
|
|
version = "0.9.5"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a"
|
|
|
|
[[package]]
|
|
name = "walkdir"
|
|
version = "2.5.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b"
|
|
dependencies = [
|
|
"same-file",
|
|
"winapi-util",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasip2"
|
|
version = "1.0.3+wasi-0.2.9"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "20064672db26d7cdc89c7798c48a0fdfac8213434a1186e5ef29fd560ae223d6"
|
|
dependencies = [
|
|
"wit-bindgen 0.57.1",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasip3"
|
|
version = "0.4.0+wasi-0.3.0-rc-2026-01-06"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5"
|
|
dependencies = [
|
|
"wit-bindgen 0.51.0",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasm-bindgen"
|
|
version = "0.2.121"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "49ace1d07c165b0864824eee619580c4689389afa9dc9ed3a4c75040d82e6790"
|
|
dependencies = [
|
|
"cfg-if",
|
|
"once_cell",
|
|
"rustversion",
|
|
"wasm-bindgen-macro",
|
|
"wasm-bindgen-shared",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasm-bindgen-macro"
|
|
version = "0.2.121"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8e68e6f4afd367a562002c05637acb8578ff2dea1943df76afb9e83d177c8578"
|
|
dependencies = [
|
|
"quote",
|
|
"wasm-bindgen-macro-support",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasm-bindgen-macro-support"
|
|
version = "0.2.121"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d95a9ec35c64b2a7cb35d3fead40c4238d0940c86d107136999567a4703259f2"
|
|
dependencies = [
|
|
"bumpalo",
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
"wasm-bindgen-shared",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasm-bindgen-shared"
|
|
version = "0.2.121"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c4e0100b01e9f0d03189a92b96772a1fb998639d981193d7dbab487302513441"
|
|
dependencies = [
|
|
"unicode-ident",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasm-encoder"
|
|
version = "0.244.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319"
|
|
dependencies = [
|
|
"leb128fmt",
|
|
"wasmparser",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasm-metadata"
|
|
version = "0.244.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909"
|
|
dependencies = [
|
|
"anyhow",
|
|
"indexmap",
|
|
"wasm-encoder",
|
|
"wasmparser",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wasmparser"
|
|
version = "0.244.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe"
|
|
dependencies = [
|
|
"bitflags",
|
|
"hashbrown 0.15.5",
|
|
"indexmap",
|
|
"semver",
|
|
]
|
|
|
|
[[package]]
|
|
name = "web-sys"
|
|
version = "0.3.98"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "4b572dff8bcf38bad0fa19729c89bb5748b2b9b1d8be70cf90df697e3a8f32aa"
|
|
dependencies = [
|
|
"js-sys",
|
|
"wasm-bindgen",
|
|
]
|
|
|
|
[[package]]
|
|
name = "winapi-util"
|
|
version = "0.1.11"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22"
|
|
dependencies = [
|
|
"windows-sys 0.61.2",
|
|
]
|
|
|
|
[[package]]
|
|
name = "windows-link"
|
|
version = "0.2.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5"
|
|
|
|
[[package]]
|
|
name = "windows-sys"
|
|
version = "0.59.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b"
|
|
dependencies = [
|
|
"windows-targets",
|
|
]
|
|
|
|
[[package]]
|
|
name = "windows-sys"
|
|
version = "0.61.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc"
|
|
dependencies = [
|
|
"windows-link",
|
|
]
|
|
|
|
[[package]]
|
|
name = "windows-targets"
|
|
version = "0.52.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973"
|
|
dependencies = [
|
|
"windows_aarch64_gnullvm",
|
|
"windows_aarch64_msvc",
|
|
"windows_i686_gnu",
|
|
"windows_i686_gnullvm",
|
|
"windows_i686_msvc",
|
|
"windows_x86_64_gnu",
|
|
"windows_x86_64_gnullvm",
|
|
"windows_x86_64_msvc",
|
|
]
|
|
|
|
[[package]]
|
|
name = "windows_aarch64_gnullvm"
|
|
version = "0.52.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3"
|
|
|
|
[[package]]
|
|
name = "windows_aarch64_msvc"
|
|
version = "0.52.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469"
|
|
|
|
[[package]]
|
|
name = "windows_i686_gnu"
|
|
version = "0.52.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b"
|
|
|
|
[[package]]
|
|
name = "windows_i686_gnullvm"
|
|
version = "0.52.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66"
|
|
|
|
[[package]]
|
|
name = "windows_i686_msvc"
|
|
version = "0.52.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66"
|
|
|
|
[[package]]
|
|
name = "windows_x86_64_gnu"
|
|
version = "0.52.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78"
|
|
|
|
[[package]]
|
|
name = "windows_x86_64_gnullvm"
|
|
version = "0.52.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d"
|
|
|
|
[[package]]
|
|
name = "windows_x86_64_msvc"
|
|
version = "0.52.6"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec"
|
|
|
|
[[package]]
|
|
name = "wit-bindgen"
|
|
version = "0.51.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5"
|
|
dependencies = [
|
|
"wit-bindgen-rust-macro",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wit-bindgen"
|
|
version = "0.57.1"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e"
|
|
|
|
[[package]]
|
|
name = "wit-bindgen-core"
|
|
version = "0.51.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc"
|
|
dependencies = [
|
|
"anyhow",
|
|
"heck",
|
|
"wit-parser",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wit-bindgen-rust"
|
|
version = "0.51.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21"
|
|
dependencies = [
|
|
"anyhow",
|
|
"heck",
|
|
"indexmap",
|
|
"prettyplease",
|
|
"syn",
|
|
"wasm-metadata",
|
|
"wit-bindgen-core",
|
|
"wit-component",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wit-bindgen-rust-macro"
|
|
version = "0.51.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a"
|
|
dependencies = [
|
|
"anyhow",
|
|
"prettyplease",
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
"wit-bindgen-core",
|
|
"wit-bindgen-rust",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wit-component"
|
|
version = "0.244.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2"
|
|
dependencies = [
|
|
"anyhow",
|
|
"bitflags",
|
|
"indexmap",
|
|
"log",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"wasm-encoder",
|
|
"wasm-metadata",
|
|
"wasmparser",
|
|
"wit-parser",
|
|
]
|
|
|
|
[[package]]
|
|
name = "wit-parser"
|
|
version = "0.244.0"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736"
|
|
dependencies = [
|
|
"anyhow",
|
|
"id-arena",
|
|
"indexmap",
|
|
"log",
|
|
"semver",
|
|
"serde",
|
|
"serde_derive",
|
|
"serde_json",
|
|
"unicode-xid",
|
|
"wasmparser",
|
|
]
|
|
|
|
[[package]]
|
|
name = "xml-rs"
|
|
version = "0.8.29"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "e450f9b2ed1dff33c94c12589a87338689467b9c4f5d8a5710bd09a847d2c8a7"
|
|
|
|
[[package]]
|
|
name = "zerocopy"
|
|
version = "0.8.48"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "eed437bf9d6692032087e337407a86f04cd8d6a16a37199ed57949d415bd68e9"
|
|
dependencies = [
|
|
"zerocopy-derive",
|
|
]
|
|
|
|
[[package]]
|
|
name = "zerocopy-derive"
|
|
version = "0.8.48"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "70e3cd084b1788766f53af483dd21f93881ff30d7320490ec3ef7526d203bad4"
|
|
dependencies = [
|
|
"proc-macro2",
|
|
"quote",
|
|
"syn",
|
|
]
|
|
|
|
[[package]]
|
|
name = "zeroize"
|
|
version = "1.8.2"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b97154e67e32c85465826e8bcc1c59429aaaf107c1e4a9e53c8d8ccd5eff88d0"
|
|
|
|
[[package]]
|
|
name = "zmij"
|
|
version = "1.0.21"
|
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa"
|