mirror of https://github.com/boa-dev/boa.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1275 lines
31 KiB
1275 lines
31 KiB
# This file is automatically @generated by Cargo. |
|
# It is not intended for manual editing. |
|
version = 3 |
|
|
|
[[package]] |
|
name = "ahash" |
|
version = "0.8.6" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "91429305e9f0a25f6205c5b8e0d2db09e0708a7a6df0f42212bb56c32c8ac97a" |
|
dependencies = [ |
|
"cfg-if", |
|
"once_cell", |
|
"version_check", |
|
"zerocopy", |
|
] |
|
|
|
[[package]] |
|
name = "android-tzdata" |
|
version = "0.1.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "e999941b234f3131b00bc13c22d06e8c5ff726d1b6318ac7eb276997bbb4fef0" |
|
|
|
[[package]] |
|
name = "android_system_properties" |
|
version = "0.1.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" |
|
dependencies = [ |
|
"libc", |
|
] |
|
|
|
[[package]] |
|
name = "arbitrary" |
|
version = "1.3.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "7d5a26814d8dcb93b0e5a0ff3c6d80a8843bafb21b39e8e18a6f05471870e110" |
|
dependencies = [ |
|
"derive_arbitrary", |
|
] |
|
|
|
[[package]] |
|
name = "arrayvec" |
|
version = "0.7.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "96d30a06541fbafbc7f82ed10c06164cfbd2c401138f6addd8404629c4b16711" |
|
|
|
[[package]] |
|
name = "autocfg" |
|
version = "1.1.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d468802bab17cbc0cc575e9b053f41e72aa36bfa6b7f55e3529ffa43161b97fa" |
|
|
|
[[package]] |
|
name = "bitflags" |
|
version = "1.3.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" |
|
|
|
[[package]] |
|
name = "bitflags" |
|
version = "2.4.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "327762f6e5a765692301e5bb513e0d9fef63be86bbc14528052b1cd3e6f03e07" |
|
|
|
[[package]] |
|
name = "boa_ast" |
|
version = "0.17.0" |
|
dependencies = [ |
|
"arbitrary", |
|
"bitflags 2.4.1", |
|
"boa_interner", |
|
"boa_macros", |
|
"indexmap", |
|
"num-bigint", |
|
"rustc-hash", |
|
] |
|
|
|
[[package]] |
|
name = "boa_engine" |
|
version = "0.17.0" |
|
dependencies = [ |
|
"arrayvec", |
|
"bitflags 2.4.1", |
|
"boa_ast", |
|
"boa_gc", |
|
"boa_interner", |
|
"boa_macros", |
|
"boa_parser", |
|
"boa_profiler", |
|
"boa_temporal", |
|
"bytemuck", |
|
"cfg-if", |
|
"chrono", |
|
"dashmap", |
|
"fast-float", |
|
"hashbrown 0.14.3", |
|
"icu_normalizer", |
|
"indexmap", |
|
"intrusive-collections", |
|
"itertools", |
|
"num-bigint", |
|
"num-integer", |
|
"num-traits", |
|
"num_enum", |
|
"once_cell", |
|
"paste", |
|
"pollster", |
|
"portable-atomic", |
|
"rand", |
|
"regress", |
|
"rustc-hash", |
|
"ryu-js", |
|
"serde", |
|
"serde_json", |
|
"sptr", |
|
"static_assertions", |
|
"tap", |
|
"thin-vec", |
|
"thiserror", |
|
] |
|
|
|
[[package]] |
|
name = "boa_fuzz" |
|
version = "0.0.0" |
|
dependencies = [ |
|
"arbitrary", |
|
"boa_ast", |
|
"boa_engine", |
|
"boa_interner", |
|
"boa_parser", |
|
"libfuzzer-sys", |
|
] |
|
|
|
[[package]] |
|
name = "boa_gc" |
|
version = "0.17.0" |
|
dependencies = [ |
|
"boa_macros", |
|
"boa_profiler", |
|
"hashbrown 0.14.3", |
|
"icu_locid", |
|
"thin-vec", |
|
] |
|
|
|
[[package]] |
|
name = "boa_interner" |
|
version = "0.17.0" |
|
dependencies = [ |
|
"arbitrary", |
|
"boa_gc", |
|
"boa_macros", |
|
"hashbrown 0.14.3", |
|
"indexmap", |
|
"once_cell", |
|
"phf", |
|
"rustc-hash", |
|
"static_assertions", |
|
] |
|
|
|
[[package]] |
|
name = "boa_macros" |
|
version = "0.17.0" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
"synstructure", |
|
] |
|
|
|
[[package]] |
|
name = "boa_parser" |
|
version = "0.17.0" |
|
dependencies = [ |
|
"bitflags 2.4.1", |
|
"boa_ast", |
|
"boa_interner", |
|
"boa_macros", |
|
"boa_profiler", |
|
"fast-float", |
|
"icu_properties", |
|
"num-bigint", |
|
"num-traits", |
|
"regress", |
|
"rustc-hash", |
|
] |
|
|
|
[[package]] |
|
name = "boa_profiler" |
|
version = "0.17.0" |
|
|
|
[[package]] |
|
name = "boa_temporal" |
|
version = "0.17.0" |
|
dependencies = [ |
|
"bitflags 2.4.1", |
|
"icu_calendar", |
|
"num-bigint", |
|
"num-traits", |
|
"rustc-hash", |
|
"tinystr", |
|
] |
|
|
|
[[package]] |
|
name = "bumpalo" |
|
version = "3.14.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "7f30e7476521f6f8af1a1c4c0b8cc94f0bee37d91763d0ca2665f299b6cd8aec" |
|
|
|
[[package]] |
|
name = "bytemuck" |
|
version = "1.14.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "374d28ec25809ee0e23827c2ab573d729e293f281dfe393500e7ad618baa61c6" |
|
dependencies = [ |
|
"bytemuck_derive", |
|
] |
|
|
|
[[package]] |
|
name = "bytemuck_derive" |
|
version = "1.5.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "965ab7eb5f8f97d2a083c799f3a1b994fc397b2fe2da5d1da1626ce15a39f2b1" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "calendrical_calculations" |
|
version = "0.1.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "8dfe3bc6a50b4667fafdb6d9cf26731c5418c457e317d8166c972014facf9a5d" |
|
dependencies = [ |
|
"core_maths", |
|
"displaydoc", |
|
] |
|
|
|
[[package]] |
|
name = "cc" |
|
version = "1.0.83" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "f1174fb0b6ec23863f8b971027804a42614e347eafb0a95bf0b12cdae21fc4d0" |
|
dependencies = [ |
|
"jobserver", |
|
"libc", |
|
] |
|
|
|
[[package]] |
|
name = "cfg-if" |
|
version = "1.0.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd" |
|
|
|
[[package]] |
|
name = "chrono" |
|
version = "0.4.31" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "7f2c685bad3eb3d45a01354cedb7d5faa66194d1d58ba6e267a8de788f79db38" |
|
dependencies = [ |
|
"android-tzdata", |
|
"iana-time-zone", |
|
"num-traits", |
|
"windows-targets", |
|
] |
|
|
|
[[package]] |
|
name = "core-foundation-sys" |
|
version = "0.8.6" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "06ea2b9bc92be3c2baa9334a323ebca2d6f074ff852cd1d7b11064035cd3868f" |
|
|
|
[[package]] |
|
name = "core_maths" |
|
version = "0.1.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "e3b02505ccb8c50b0aa21ace0fc08c3e53adebd4e58caa18a36152803c7709a3" |
|
dependencies = [ |
|
"libm", |
|
] |
|
|
|
[[package]] |
|
name = "dashmap" |
|
version = "5.5.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" |
|
dependencies = [ |
|
"cfg-if", |
|
"hashbrown 0.14.3", |
|
"lock_api", |
|
"once_cell", |
|
"parking_lot_core", |
|
] |
|
|
|
[[package]] |
|
name = "derive_arbitrary" |
|
version = "1.3.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "67e77553c4162a157adbf834ebae5b415acbecbeafc7a74b0e886657506a7611" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "displaydoc" |
|
version = "0.2.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "487585f4d0c6655fe74905e2504d8ad6908e4db67f744eb140876906c2f3175d" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "either" |
|
version = "1.9.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" |
|
|
|
[[package]] |
|
name = "equivalent" |
|
version = "1.0.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5" |
|
|
|
[[package]] |
|
name = "fast-float" |
|
version = "0.2.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "95765f67b4b18863968b4a1bd5bb576f732b29a4a28c7cd84c09fa3e2875f33c" |
|
|
|
[[package]] |
|
name = "getrandom" |
|
version = "0.2.11" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "fe9006bed769170c11f845cf00c7c1e9092aeb3f268e007c3e760ac68008070f" |
|
dependencies = [ |
|
"cfg-if", |
|
"libc", |
|
"wasi", |
|
] |
|
|
|
[[package]] |
|
name = "hashbrown" |
|
version = "0.13.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "43a3c133739dddd0d2990f9a4bdf8eb4b21ef50e4851ca85ab661199821d510e" |
|
dependencies = [ |
|
"ahash", |
|
] |
|
|
|
[[package]] |
|
name = "hashbrown" |
|
version = "0.14.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "290f1a1d9242c78d09ce40a5e87e7554ee637af1351968159f4952f028f75604" |
|
dependencies = [ |
|
"ahash", |
|
] |
|
|
|
[[package]] |
|
name = "iana-time-zone" |
|
version = "0.1.58" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "8326b86b6cff230b97d0d312a6c40a60726df3332e721f72a1b035f451663b20" |
|
dependencies = [ |
|
"android_system_properties", |
|
"core-foundation-sys", |
|
"iana-time-zone-haiku", |
|
"js-sys", |
|
"wasm-bindgen", |
|
"windows-core", |
|
] |
|
|
|
[[package]] |
|
name = "iana-time-zone-haiku" |
|
version = "0.1.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" |
|
dependencies = [ |
|
"cc", |
|
] |
|
|
|
[[package]] |
|
name = "icu_calendar" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "7eb932a690c92f87955e923106181ee0d5682e688ff37fb5c7b296e1fe806edb" |
|
dependencies = [ |
|
"calendrical_calculations", |
|
"displaydoc", |
|
"icu_locid", |
|
"icu_provider", |
|
"tinystr", |
|
"writeable", |
|
"zerovec", |
|
] |
|
|
|
[[package]] |
|
name = "icu_collections" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "137d96353afc8544d437e8a99eceb10ab291352699573b0de5b08bda38c78c60" |
|
dependencies = [ |
|
"displaydoc", |
|
"yoke", |
|
"zerofrom", |
|
"zerovec", |
|
] |
|
|
|
[[package]] |
|
name = "icu_locid" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "5c0aa2536adc14c07e2a521e95512b75ed8ef832f0fdf9299d4a0a45d2be2a9d" |
|
dependencies = [ |
|
"displaydoc", |
|
"litemap", |
|
"tinystr", |
|
"writeable", |
|
"zerovec", |
|
] |
|
|
|
[[package]] |
|
name = "icu_locid_transform" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "57c17d8f6524fdca4471101dd71f0a132eb6382b5d6d7f2970441cb25f6f435a" |
|
dependencies = [ |
|
"displaydoc", |
|
"icu_locid", |
|
"icu_locid_transform_data", |
|
"icu_provider", |
|
"tinystr", |
|
"zerovec", |
|
] |
|
|
|
[[package]] |
|
name = "icu_locid_transform_data" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "545c6c3e8bf9580e2dafee8de6f9ec14826aaf359787789c7724f1f85f47d3dc" |
|
|
|
[[package]] |
|
name = "icu_normalizer" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "419a6ef743237a64c37619def388b13f6266318a24652dff91ca046a7c4afc40" |
|
dependencies = [ |
|
"displaydoc", |
|
"icu_collections", |
|
"icu_normalizer_data", |
|
"icu_properties", |
|
"icu_provider", |
|
"smallvec", |
|
"utf16_iter", |
|
"utf8_iter", |
|
"write16", |
|
"zerovec", |
|
] |
|
|
|
[[package]] |
|
name = "icu_normalizer_data" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "22026918a80e6a9a330cb01b60f950e2b4e5284c59528fd0c6150076ef4c8522" |
|
|
|
[[package]] |
|
name = "icu_properties" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "976e296217453af983efa25f287a4c1da04b9a63bf1ed63719455068e4453eb5" |
|
dependencies = [ |
|
"displaydoc", |
|
"icu_collections", |
|
"icu_locid_transform", |
|
"icu_properties_data", |
|
"icu_provider", |
|
"tinystr", |
|
"zerovec", |
|
] |
|
|
|
[[package]] |
|
name = "icu_properties_data" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "f6a86c0e384532b06b6c104814f9c1b13bcd5b64409001c0d05713a1f3529d99" |
|
|
|
[[package]] |
|
name = "icu_provider" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "ba58e782287eb6950247abbf11719f83f5d4e4a5c1f2cd490d30a334bc47c2f4" |
|
dependencies = [ |
|
"displaydoc", |
|
"icu_locid", |
|
"icu_provider_macros", |
|
"stable_deref_trait", |
|
"tinystr", |
|
"writeable", |
|
"yoke", |
|
"zerofrom", |
|
"zerovec", |
|
] |
|
|
|
[[package]] |
|
name = "icu_provider_macros" |
|
version = "1.4.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d2abdd3a62551e8337af119c5899e600ca0c88ec8f23a46c60ba216c803dcf1a" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "indexmap" |
|
version = "2.1.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d530e1a18b1cb4c484e6e34556a0d948706958449fca0cab753d649f2bce3d1f" |
|
dependencies = [ |
|
"equivalent", |
|
"hashbrown 0.14.3", |
|
] |
|
|
|
[[package]] |
|
name = "intrusive-collections" |
|
version = "0.9.6" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "b694dc9f70c3bda874626d2aed13b780f137aab435f4e9814121955cf706122e" |
|
dependencies = [ |
|
"memoffset", |
|
] |
|
|
|
[[package]] |
|
name = "itertools" |
|
version = "0.12.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "25db6b064527c5d482d0423354fcd07a89a2dfe07b67892e62411946db7f07b0" |
|
dependencies = [ |
|
"either", |
|
] |
|
|
|
[[package]] |
|
name = "itoa" |
|
version = "1.0.9" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "af150ab688ff2122fcef229be89cb50dd66af9e01a4ff320cc137eecc9bacc38" |
|
|
|
[[package]] |
|
name = "jobserver" |
|
version = "0.1.27" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "8c37f63953c4c63420ed5fd3d6d398c719489b9f872b9fa683262f8edd363c7d" |
|
dependencies = [ |
|
"libc", |
|
] |
|
|
|
[[package]] |
|
name = "js-sys" |
|
version = "0.3.66" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "cee9c64da59eae3b50095c18d3e74f8b73c0b86d2792824ff01bbce68ba229ca" |
|
dependencies = [ |
|
"wasm-bindgen", |
|
] |
|
|
|
[[package]] |
|
name = "libc" |
|
version = "0.2.150" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "89d92a4743f9a61002fae18374ed11e7973f530cb3a3255fb354818118b2203c" |
|
|
|
[[package]] |
|
name = "libfuzzer-sys" |
|
version = "0.4.7" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a96cfd5557eb82f2b83fed4955246c988d331975a002961b07c81584d107e7f7" |
|
dependencies = [ |
|
"arbitrary", |
|
"cc", |
|
"once_cell", |
|
] |
|
|
|
[[package]] |
|
name = "libm" |
|
version = "0.2.8" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "4ec2a862134d2a7d32d7983ddcdd1c4923530833c9f2ea1a44fc5fa473989058" |
|
|
|
[[package]] |
|
name = "litemap" |
|
version = "0.7.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "f9d642685b028806386b2b6e75685faadd3eb65a85fff7df711ce18446a422da" |
|
|
|
[[package]] |
|
name = "lock_api" |
|
version = "0.4.11" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "3c168f8615b12bc01f9c17e2eb0cc07dcae1940121185446edc3744920e8ef45" |
|
dependencies = [ |
|
"autocfg", |
|
"scopeguard", |
|
] |
|
|
|
[[package]] |
|
name = "log" |
|
version = "0.4.20" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "b5e6163cb8c49088c2c36f57875e58ccd8c87c7427f7fbd50ea6710b2f3f2e8f" |
|
|
|
[[package]] |
|
name = "memchr" |
|
version = "2.6.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "f665ee40bc4a3c5590afb1e9677db74a508659dfd71e126420da8274909a0167" |
|
|
|
[[package]] |
|
name = "memoffset" |
|
version = "0.9.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "5a634b1c61a95585bd15607c6ab0c4e5b226e695ff2800ba0cdccddf208c406c" |
|
dependencies = [ |
|
"autocfg", |
|
] |
|
|
|
[[package]] |
|
name = "num-bigint" |
|
version = "0.4.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "608e7659b5c3d7cba262d894801b9ec9d00de989e8a82bd4bef91d08da45cdc0" |
|
dependencies = [ |
|
"arbitrary", |
|
"autocfg", |
|
"num-integer", |
|
"num-traits", |
|
"serde", |
|
] |
|
|
|
[[package]] |
|
name = "num-integer" |
|
version = "0.1.45" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "225d3389fb3509a24c93f5c29eb6bde2586b98d9f016636dff58d7c6f7569cd9" |
|
dependencies = [ |
|
"autocfg", |
|
"num-traits", |
|
] |
|
|
|
[[package]] |
|
name = "num-traits" |
|
version = "0.2.17" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "39e3200413f237f41ab11ad6d161bc7239c84dcb631773ccd7de3dfe4b5c267c" |
|
dependencies = [ |
|
"autocfg", |
|
] |
|
|
|
[[package]] |
|
name = "num_enum" |
|
version = "0.7.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "683751d591e6d81200c39fb0d1032608b77724f34114db54f571ff1317b337c0" |
|
dependencies = [ |
|
"num_enum_derive", |
|
] |
|
|
|
[[package]] |
|
name = "num_enum_derive" |
|
version = "0.7.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "6c11e44798ad209ccdd91fc192f0526a369a01234f7373e1b141c96d7cee4f0e" |
|
dependencies = [ |
|
"proc-macro-crate", |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "once_cell" |
|
version = "1.18.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "dd8b5dd2ae5ed71462c540258bedcb51965123ad7e7ccf4b9a8cafaa4a63576d" |
|
|
|
[[package]] |
|
name = "parking_lot_core" |
|
version = "0.9.9" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "4c42a9226546d68acdd9c0a280d17ce19bfe27a46bf68784e4066115788d008e" |
|
dependencies = [ |
|
"cfg-if", |
|
"libc", |
|
"redox_syscall", |
|
"smallvec", |
|
"windows-targets", |
|
] |
|
|
|
[[package]] |
|
name = "paste" |
|
version = "1.0.14" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "de3145af08024dea9fa9914f381a17b8fc6034dfb00f3a84013f7ff43f29ed4c" |
|
|
|
[[package]] |
|
name = "phf" |
|
version = "0.11.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "ade2d8b8f33c7333b51bcf0428d37e217e9f32192ae4772156f65063b8ce03dc" |
|
dependencies = [ |
|
"phf_macros", |
|
"phf_shared", |
|
] |
|
|
|
[[package]] |
|
name = "phf_generator" |
|
version = "0.11.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "48e4cc64c2ad9ebe670cb8fd69dd50ae301650392e81c05f9bfcb2d5bdbc24b0" |
|
dependencies = [ |
|
"phf_shared", |
|
"rand", |
|
] |
|
|
|
[[package]] |
|
name = "phf_macros" |
|
version = "0.11.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "3444646e286606587e49f3bcf1679b8cef1dc2c5ecc29ddacaffc305180d464b" |
|
dependencies = [ |
|
"phf_generator", |
|
"phf_shared", |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "phf_shared" |
|
version = "0.11.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "90fcb95eef784c2ac79119d1dd819e162b5da872ce6f3c3abe1e8ca1c082f72b" |
|
dependencies = [ |
|
"siphasher", |
|
] |
|
|
|
[[package]] |
|
name = "pollster" |
|
version = "0.3.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "22686f4785f02a4fcc856d3b3bb19bf6c8160d103f7a99cc258bddd0251dc7f2" |
|
|
|
[[package]] |
|
name = "portable-atomic" |
|
version = "1.6.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "7170ef9988bc169ba16dd36a7fa041e5c4cbeb6a35b76d4c03daded371eae7c0" |
|
|
|
[[package]] |
|
name = "ppv-lite86" |
|
version = "0.2.17" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "5b40af805b3121feab8a3c29f04d8ad262fa8e0561883e7653e024ae4479e6de" |
|
|
|
[[package]] |
|
name = "proc-macro-crate" |
|
version = "2.0.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "7e8366a6159044a37876a2b9817124296703c586a5c92e2c53751fa06d8d43e8" |
|
dependencies = [ |
|
"toml_edit", |
|
] |
|
|
|
[[package]] |
|
name = "proc-macro2" |
|
version = "1.0.70" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "39278fbbf5fb4f646ce651690877f89d1c5811a3d4acb27700c1cb3cdb78fd3b" |
|
dependencies = [ |
|
"unicode-ident", |
|
] |
|
|
|
[[package]] |
|
name = "quote" |
|
version = "1.0.33" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" |
|
dependencies = [ |
|
"proc-macro2", |
|
] |
|
|
|
[[package]] |
|
name = "rand" |
|
version = "0.8.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" |
|
dependencies = [ |
|
"libc", |
|
"rand_chacha", |
|
"rand_core", |
|
] |
|
|
|
[[package]] |
|
name = "rand_chacha" |
|
version = "0.3.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" |
|
dependencies = [ |
|
"ppv-lite86", |
|
"rand_core", |
|
] |
|
|
|
[[package]] |
|
name = "rand_core" |
|
version = "0.6.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" |
|
dependencies = [ |
|
"getrandom", |
|
] |
|
|
|
[[package]] |
|
name = "redox_syscall" |
|
version = "0.4.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "4722d768eff46b75989dd134e5c353f0d6296e5aaa3132e776cbdb56be7731aa" |
|
dependencies = [ |
|
"bitflags 1.3.2", |
|
] |
|
|
|
[[package]] |
|
name = "regress" |
|
version = "0.7.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "4ed9969cad8051328011596bf549629f1b800cf1731e7964b1eef8dfc480d2c2" |
|
dependencies = [ |
|
"hashbrown 0.13.2", |
|
"memchr", |
|
] |
|
|
|
[[package]] |
|
name = "rustc-hash" |
|
version = "1.1.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "08d43f7aa6b08d49f382cde6a7982047c3426db949b1424bc4b7ec9ae12c6ce2" |
|
|
|
[[package]] |
|
name = "ryu" |
|
version = "1.0.15" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "1ad4cc8da4ef723ed60bced201181d83791ad433213d8c24efffda1eec85d741" |
|
|
|
[[package]] |
|
name = "ryu-js" |
|
version = "1.0.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "4950d85bc52415f8432144c97c4791bd0c4f7954de32a7270ee9cccd3c22b12b" |
|
|
|
[[package]] |
|
name = "scopeguard" |
|
version = "1.2.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" |
|
|
|
[[package]] |
|
name = "serde" |
|
version = "1.0.193" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "25dd9975e68d0cb5aa1120c288333fc98731bd1dd12f561e468ea4728c042b89" |
|
dependencies = [ |
|
"serde_derive", |
|
] |
|
|
|
[[package]] |
|
name = "serde_derive" |
|
version = "1.0.193" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "43576ca501357b9b071ac53cdc7da8ef0cbd9493d8df094cd821777ea6e894d3" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "serde_json" |
|
version = "1.0.108" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "3d1c7e3eac408d115102c4c24ad393e0821bb3a5df4d506a80f85f7a742a526b" |
|
dependencies = [ |
|
"itoa", |
|
"ryu", |
|
"serde", |
|
] |
|
|
|
[[package]] |
|
name = "siphasher" |
|
version = "0.3.11" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" |
|
|
|
[[package]] |
|
name = "smallvec" |
|
version = "1.11.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "4dccd0940a2dcdf68d092b8cbab7dc0ad8fa938bf95787e1b916b0e3d0e8e970" |
|
|
|
[[package]] |
|
name = "sptr" |
|
version = "0.3.2" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "3b9b39299b249ad65f3b7e96443bad61c02ca5cd3589f46cb6d610a0fd6c0d6a" |
|
|
|
[[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" |
|
|
|
[[package]] |
|
name = "syn" |
|
version = "2.0.39" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "23e78b90f2fcf45d3e842032ce32e3f2d1545ba6636271dcbf24fa306d87be7a" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"unicode-ident", |
|
] |
|
|
|
[[package]] |
|
name = "synstructure" |
|
version = "0.13.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "285ba80e733fac80aa4270fbcdf83772a79b80aa35c97075320abfee4a915b06" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
"unicode-xid", |
|
] |
|
|
|
[[package]] |
|
name = "tap" |
|
version = "1.0.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "55937e1799185b12863d447f42597ed69d9928686b8d88a1df17376a097d8369" |
|
|
|
[[package]] |
|
name = "thin-vec" |
|
version = "0.2.13" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a38c90d48152c236a3ab59271da4f4ae63d678c5d7ad6b7714d7cb9760be5e4b" |
|
|
|
[[package]] |
|
name = "thiserror" |
|
version = "1.0.50" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "f9a7210f5c9a7156bb50aa36aed4c95afb51df0df00713949448cf9e97d382d2" |
|
dependencies = [ |
|
"thiserror-impl", |
|
] |
|
|
|
[[package]] |
|
name = "thiserror-impl" |
|
version = "1.0.50" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "266b2e40bc00e5a6c09c3584011e08b06f123c00362c92b975ba9843aaaa14b8" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "tinystr" |
|
version = "0.7.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "83c02bf3c538ab32ba913408224323915f4ef9a6d61c0e85d493f355921c0ece" |
|
dependencies = [ |
|
"displaydoc", |
|
"zerovec", |
|
] |
|
|
|
[[package]] |
|
name = "toml_datetime" |
|
version = "0.6.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" |
|
|
|
[[package]] |
|
name = "toml_edit" |
|
version = "0.20.7" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "70f427fce4d84c72b5b732388bf4a9f4531b53f74e2887e3ecb2481f68f66d81" |
|
dependencies = [ |
|
"indexmap", |
|
"toml_datetime", |
|
"winnow", |
|
] |
|
|
|
[[package]] |
|
name = "unicode-ident" |
|
version = "1.0.12" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" |
|
|
|
[[package]] |
|
name = "unicode-xid" |
|
version = "0.2.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "f962df74c8c05a667b5ee8bcf162993134c104e96440b663c8daa176dc772d8c" |
|
|
|
[[package]] |
|
name = "utf16_iter" |
|
version = "1.0.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "c8232dd3cdaed5356e0f716d285e4b40b932ac434100fe9b7e0e8e935b9e6246" |
|
|
|
[[package]] |
|
name = "utf8_iter" |
|
version = "1.0.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" |
|
|
|
[[package]] |
|
name = "version_check" |
|
version = "0.9.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f" |
|
|
|
[[package]] |
|
name = "wasi" |
|
version = "0.11.0+wasi-snapshot-preview1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "9c8d87e72b64a3b4db28d11ce29237c246188f4f51057d65a7eab63b7987e423" |
|
|
|
[[package]] |
|
name = "wasm-bindgen" |
|
version = "0.2.89" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "0ed0d4f68a3015cc185aff4db9506a015f4b96f95303897bfa23f846db54064e" |
|
dependencies = [ |
|
"cfg-if", |
|
"wasm-bindgen-macro", |
|
] |
|
|
|
[[package]] |
|
name = "wasm-bindgen-backend" |
|
version = "0.2.89" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "1b56f625e64f3a1084ded111c4d5f477df9f8c92df113852fa5a374dbda78826" |
|
dependencies = [ |
|
"bumpalo", |
|
"log", |
|
"once_cell", |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
"wasm-bindgen-shared", |
|
] |
|
|
|
[[package]] |
|
name = "wasm-bindgen-macro" |
|
version = "0.2.89" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "0162dbf37223cd2afce98f3d0785506dcb8d266223983e4b5b525859e6e182b2" |
|
dependencies = [ |
|
"quote", |
|
"wasm-bindgen-macro-support", |
|
] |
|
|
|
[[package]] |
|
name = "wasm-bindgen-macro-support" |
|
version = "0.2.89" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "f0eb82fcb7930ae6219a7ecfd55b217f5f0893484b7a13022ebb2b2bf20b5283" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
"wasm-bindgen-backend", |
|
"wasm-bindgen-shared", |
|
] |
|
|
|
[[package]] |
|
name = "wasm-bindgen-shared" |
|
version = "0.2.89" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "7ab9b36309365056cd639da3134bf87fa8f3d86008abf99e612384a6eecd459f" |
|
|
|
[[package]] |
|
name = "windows-core" |
|
version = "0.51.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "f1f8cf84f35d2db49a46868f947758c7a1138116f7fac3bc844f43ade1292e64" |
|
dependencies = [ |
|
"windows-targets", |
|
] |
|
|
|
[[package]] |
|
name = "windows-targets" |
|
version = "0.48.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" |
|
dependencies = [ |
|
"windows_aarch64_gnullvm", |
|
"windows_aarch64_msvc", |
|
"windows_i686_gnu", |
|
"windows_i686_msvc", |
|
"windows_x86_64_gnu", |
|
"windows_x86_64_gnullvm", |
|
"windows_x86_64_msvc", |
|
] |
|
|
|
[[package]] |
|
name = "windows_aarch64_gnullvm" |
|
version = "0.48.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" |
|
|
|
[[package]] |
|
name = "windows_aarch64_msvc" |
|
version = "0.48.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" |
|
|
|
[[package]] |
|
name = "windows_i686_gnu" |
|
version = "0.48.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" |
|
|
|
[[package]] |
|
name = "windows_i686_msvc" |
|
version = "0.48.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" |
|
|
|
[[package]] |
|
name = "windows_x86_64_gnu" |
|
version = "0.48.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" |
|
|
|
[[package]] |
|
name = "windows_x86_64_gnullvm" |
|
version = "0.48.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" |
|
|
|
[[package]] |
|
name = "windows_x86_64_msvc" |
|
version = "0.48.5" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" |
|
|
|
[[package]] |
|
name = "winnow" |
|
version = "0.5.25" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "b7e87b8dfbe3baffbe687eef2e164e32286eff31a5ee16463ce03d991643ec94" |
|
dependencies = [ |
|
"memchr", |
|
] |
|
|
|
[[package]] |
|
name = "write16" |
|
version = "1.0.0" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "d1890f4022759daae28ed4fe62859b1236caebfc61ede2f63ed4e695f3f6d936" |
|
|
|
[[package]] |
|
name = "writeable" |
|
version = "0.5.4" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "dad7bb64b8ef9c0aa27b6da38b452b0ee9fd82beaf276a87dd796fb55cbae14e" |
|
|
|
[[package]] |
|
name = "yoke" |
|
version = "0.7.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "65e71b2e4f287f467794c671e2b8f8a5f3716b3c829079a1c44740148eff07e4" |
|
dependencies = [ |
|
"serde", |
|
"stable_deref_trait", |
|
"yoke-derive", |
|
"zerofrom", |
|
] |
|
|
|
[[package]] |
|
name = "yoke-derive" |
|
version = "0.7.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "9e6936f0cce458098a201c245a11bef556c6a0181129c7034d10d76d1ec3a2b8" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
"synstructure", |
|
] |
|
|
|
[[package]] |
|
name = "zerocopy" |
|
version = "0.7.29" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "5d075cf85bbb114e933343e087b92f2146bac0d55b534cbb8188becf0039948e" |
|
dependencies = [ |
|
"zerocopy-derive", |
|
] |
|
|
|
[[package]] |
|
name = "zerocopy-derive" |
|
version = "0.7.29" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "86cd5ca076997b97ef09d3ad65efe811fa68c9e874cb636ccb211223a813b0c2" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
] |
|
|
|
[[package]] |
|
name = "zerofrom" |
|
version = "0.1.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "655b0814c5c0b19ade497851070c640773304939a6c0fd5f5fb43da0696d05b7" |
|
dependencies = [ |
|
"zerofrom-derive", |
|
] |
|
|
|
[[package]] |
|
name = "zerofrom-derive" |
|
version = "0.1.3" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "e6a647510471d372f2e6c2e6b7219e44d8c574d24fdc11c610a61455782f18c3" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
"synstructure", |
|
] |
|
|
|
[[package]] |
|
name = "zerovec" |
|
version = "0.10.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "eff4439ae91fb5c72b8abc12f3f2dbf51bd27e6eadb9f8a5bc8898dddb0e27ea" |
|
dependencies = [ |
|
"yoke", |
|
"zerofrom", |
|
"zerovec-derive", |
|
] |
|
|
|
[[package]] |
|
name = "zerovec-derive" |
|
version = "0.10.1" |
|
source = "registry+https://github.com/rust-lang/crates.io-index" |
|
checksum = "7b4e5997cbf58990550ef1f0e5124a05e47e1ebd33a84af25739be6031a62c20" |
|
dependencies = [ |
|
"proc-macro2", |
|
"quote", |
|
"syn", |
|
]
|
|
|