philomena/native/philomena/Cargo.lock

562 lines
14 KiB
Text
Raw Normal View History

2021-09-11 02:37:13 +02:00
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 3
2021-09-11 02:37:13 +02:00
[[package]]
name = "aho-corasick"
2024-04-16 15:01:02 +02:00
version = "1.1.3"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
2021-09-11 02:37:13 +02:00
dependencies = [
"memchr",
]
2021-09-11 23:21:25 +02:00
[[package]]
name = "base64"
2024-04-16 15:01:02 +02:00
version = "0.21.7"
2021-09-11 23:21:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567"
2023-09-27 20:16:59 +02:00
2021-09-11 02:37:13 +02:00
[[package]]
name = "bumpalo"
2024-04-16 15:01:02 +02:00
version = "3.16.0"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
2021-09-11 23:21:25 +02:00
2021-09-23 00:03:06 +02:00
[[package]]
name = "bytes"
2024-04-16 15:01:02 +02:00
version = "1.6.0"
2021-09-23 00:03:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "514de17de45fdb8dc022b1a7975556c53c86f9f0aa5f534b98977b171857c2c9"
2021-09-23 00:03:06 +02:00
2021-09-11 23:21:25 +02:00
[[package]]
name = "cc"
2024-04-16 15:01:02 +02:00
version = "1.0.94"
2021-09-11 23:21:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "17f6e324229dc011159fcc089755d1e2e216a90d43a7dea6853ca740b84f35e7"
2021-09-11 02:37:13 +02:00
[[package]]
name = "cfg-if"
2021-09-11 23:21:25 +02:00
version = "1.0.0"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-11 23:21:25 +02:00
checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
2021-09-11 02:37:13 +02:00
[[package]]
name = "comrak"
2024-05-19 20:48:53 +02:00
version = "0.24.1"
source = "git+https://github.com/philomena-dev/comrak?branch=main#6a03dabfc80033b24070dc5826c9225686e3a98a"
2021-09-11 02:37:13 +02:00
dependencies = [
2024-04-16 15:01:02 +02:00
"derive_builder",
2021-09-11 02:37:13 +02:00
"entities",
2021-09-23 00:03:06 +02:00
"http",
"memchr",
"once_cell",
2021-09-11 02:37:13 +02:00
"regex",
"slug",
2021-09-11 02:37:13 +02:00
"typed-arena",
"unicode_categories",
2021-09-11 23:21:25 +02:00
]
[[package]]
2024-04-16 15:01:02 +02:00
name = "darling"
2024-05-19 20:48:53 +02:00
version = "0.20.9"
2021-09-11 23:21:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-19 20:48:53 +02:00
checksum = "83b2eb4d90d12bdda5ed17de686c2acb4c57914f8f921b8da7e112b5a36f3fe1"
2021-09-11 23:21:25 +02:00
dependencies = [
2024-04-16 15:01:02 +02:00
"darling_core",
"darling_macro",
2021-09-11 02:37:13 +02:00
]
2023-09-27 20:16:59 +02:00
[[package]]
2024-04-16 15:01:02 +02:00
name = "darling_core"
2024-05-19 20:48:53 +02:00
version = "0.20.9"
2023-09-27 20:16:59 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-19 20:48:53 +02:00
checksum = "622687fe0bac72a04e5599029151f5796111b90f1baaa9b544d807a5e31cd120"
2024-04-16 15:01:02 +02:00
dependencies = [
"fnv",
"ident_case",
"proc-macro2",
"quote",
"strsim",
2024-05-19 20:48:53 +02:00
"syn",
2024-04-16 15:01:02 +02:00
]
2023-09-27 20:16:59 +02:00
2021-09-11 02:37:13 +02:00
[[package]]
2024-04-16 15:01:02 +02:00
name = "darling_macro"
2024-05-19 20:48:53 +02:00
version = "0.20.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-19 20:48:53 +02:00
checksum = "733cabb43482b1a1b53eee8583c2b9e8684d592215ea83efd305dd31bc2f0178"
2024-04-16 15:01:02 +02:00
dependencies = [
"darling_core",
"quote",
2024-05-19 20:48:53 +02:00
"syn",
2024-04-16 15:01:02 +02:00
]
2021-09-11 02:37:13 +02:00
[[package]]
2024-04-16 15:01:02 +02:00
name = "derive_builder"
2024-05-19 20:48:53 +02:00
version = "0.20.0"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-19 20:48:53 +02:00
checksum = "0350b5cb0331628a5916d6c5c0b72e97393b8b6b03b47a9284f4e7f5a405ffd7"
2024-04-16 15:01:02 +02:00
dependencies = [
"derive_builder_macro",
]
2021-09-11 02:37:13 +02:00
[[package]]
2024-04-16 15:01:02 +02:00
name = "derive_builder_core"
2024-05-19 20:48:53 +02:00
version = "0.20.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-19 20:48:53 +02:00
checksum = "d48cda787f839151732d396ac69e3473923d54312c070ee21e9effcaa8ca0b1d"
dependencies = [
2024-04-16 15:01:02 +02:00
"darling",
"proc-macro2",
"quote",
2024-05-19 20:48:53 +02:00
"syn",
]
[[package]]
2024-04-16 15:01:02 +02:00
name = "derive_builder_macro"
2024-05-19 20:48:53 +02:00
version = "0.20.0"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-19 20:48:53 +02:00
checksum = "206868b8242f27cecce124c19fd88157fbd0dd334df2587f36417bafbc85097b"
dependencies = [
2024-04-16 15:01:02 +02:00
"derive_builder_core",
2024-05-19 20:48:53 +02:00
"syn",
]
[[package]]
2024-04-16 15:01:02 +02:00
name = "deunicode"
version = "1.4.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "322ef0094744e63628e6f0eb2295517f79276a5b342a4c2ff3042566ca181d4e"
2021-09-11 02:37:13 +02:00
2021-09-11 23:21:25 +02:00
[[package]]
2024-04-16 15:01:02 +02:00
name = "entities"
version = "1.0.1"
2021-09-11 23:21:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "b5320ae4c3782150d900b79807611a59a99fc9a1d61d686faafc24b93fc8d7ca"
2021-09-11 23:21:25 +02:00
[[package]]
name = "fnv"
version = "1.0.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
[[package]]
2021-09-13 20:54:57 +02:00
name = "form_urlencoded"
2024-04-16 15:01:02 +02:00
version = "1.2.1"
2021-09-13 00:38:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
2021-09-13 20:54:57 +02:00
dependencies = [
"percent-encoding",
]
2021-09-13 00:38:46 +02:00
2021-09-11 02:37:13 +02:00
[[package]]
name = "heck"
2023-05-18 16:23:17 +02:00
version = "0.4.1"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 16:23:17 +02:00
checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
2021-09-11 02:37:13 +02:00
2021-09-23 00:03:06 +02:00
[[package]]
name = "http"
2024-04-16 15:01:02 +02:00
version = "0.2.12"
2021-09-23 00:03:06 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "601cbb57e577e2f5ef5be8e7b83f0f63994f25aa94d673e54a92d5c516d101f1"
2021-09-23 00:03:06 +02:00
dependencies = [
"bytes",
"fnv",
"itoa",
]
2021-09-13 20:54:57 +02:00
[[package]]
2024-04-16 15:01:02 +02:00
name = "ident_case"
version = "1.0.1"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39"
2021-09-13 20:54:57 +02:00
2021-09-11 23:21:25 +02:00
[[package]]
2024-04-16 15:01:02 +02:00
name = "idna"
version = "0.5.0"
2021-09-11 23:21:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
2021-09-11 23:21:25 +02:00
dependencies = [
2024-04-16 15:01:02 +02:00
"unicode-bidi",
"unicode-normalization",
2021-09-11 23:21:25 +02:00
]
[[package]]
name = "itoa"
2024-04-16 15:01:02 +02:00
version = "1.0.11"
2021-09-11 23:21:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
2021-09-11 23:21:25 +02:00
[[package]]
name = "jemalloc-sys"
2023-09-27 20:16:59 +02:00
version = "0.5.4+5.3.0-patched"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-27 20:16:59 +02:00
checksum = "ac6c1946e1cea1788cbfde01c993b52a10e2da07f4bac608228d1bed20bfebf2"
dependencies = [
"cc",
"libc",
]
[[package]]
name = "jemallocator"
2023-09-27 20:16:59 +02:00
version = "0.5.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-27 20:16:59 +02:00
checksum = "a0de374a9f8e63150e6f5e8a60cc14c668226d7a347d8aee1a45766e3c4dd3bc"
dependencies = [
"jemalloc-sys",
"libc",
]
2021-09-13 20:54:57 +02:00
[[package]]
name = "js-sys"
2024-04-16 15:01:02 +02:00
version = "0.3.69"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "29c15563dc2726973df627357ce0c9ddddbea194836909d655df6a75d2cf296d"
2021-09-13 20:54:57 +02:00
dependencies = [
"wasm-bindgen",
]
2021-09-11 02:37:13 +02:00
[[package]]
name = "lazy_static"
version = "1.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646"
[[package]]
name = "libc"
2024-04-16 15:01:02 +02:00
version = "0.2.153"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "9c198f91728a82281a64e1f4f9eeb25d82cb32a5de251c6bd1b5154d63a8e7bd"
2021-09-11 02:37:13 +02:00
2021-09-13 20:54:57 +02:00
[[package]]
name = "log"
2024-04-16 15:01:02 +02:00
version = "0.4.21"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "90ed8c1e510134f979dbc4f070f87d4313098b704861a105fe34231c70a3901c"
2021-09-13 20:54:57 +02:00
2021-09-11 02:37:13 +02:00
[[package]]
name = "memchr"
2024-04-16 15:01:02 +02:00
version = "2.7.2"
2021-09-11 23:21:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "6c8640c5d730cb13ebd907d8d04b52f55ac9a2eec55b440c8892f40d56c76c1d"
2021-09-11 23:21:25 +02:00
2021-09-13 20:54:57 +02:00
[[package]]
name = "once_cell"
2024-04-16 15:01:02 +02:00
version = "1.19.0"
2021-09-11 23:21:25 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "3fdb12b2476b595f9358c5161aa467c2438859caa136dec86c26fdd2efe17b92"
2021-09-11 02:37:13 +02:00
2021-09-13 20:54:57 +02:00
[[package]]
name = "percent-encoding"
2024-04-16 15:01:02 +02:00
version = "2.3.1"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
2021-09-13 20:54:57 +02:00
[[package]]
name = "philomena"
2021-09-13 00:38:46 +02:00
version = "0.3.0"
dependencies = [
2021-09-16 21:04:15 +02:00
"base64",
"comrak",
"jemallocator",
2021-09-13 20:54:57 +02:00
"ring",
"rustler",
2021-09-13 20:54:57 +02:00
"url",
]
2021-09-11 02:37:13 +02:00
[[package]]
name = "proc-macro2"
2024-04-16 15:01:02 +02:00
version = "1.0.80"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "a56dea16b0a29e94408b9aa5e2940a4eedbd128a1ba20e8f7ae60fd3d465af0e"
2021-09-11 02:37:13 +02:00
dependencies = [
"unicode-ident",
2021-09-11 02:37:13 +02:00
]
2022-03-24 18:41:51 +01:00
[[package]]
2023-05-18 16:23:17 +02:00
name = "quote"
2024-04-16 15:01:02 +02:00
version = "1.0.36"
2022-03-24 18:41:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "0fa76aaf39101c457836aec0ce2316dbdc3ab723cdda1c6bd4e6ad4208acaca7"
2022-03-24 18:41:51 +01:00
dependencies = [
2023-05-18 16:23:17 +02:00
"proc-macro2",
2022-03-24 18:41:51 +01:00
]
2021-09-11 02:37:13 +02:00
[[package]]
name = "regex"
2024-04-16 15:01:02 +02:00
version = "1.10.4"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "c117dbdfde9c8308975b6a18d71f3f385c89461f7b3fb054288ecf2a2058ba4c"
2021-09-11 02:37:13 +02:00
dependencies = [
"aho-corasick",
"memchr",
2023-09-27 20:16:59 +02:00
"regex-automata",
"regex-syntax",
2021-09-11 02:37:13 +02:00
]
[[package]]
2023-09-27 20:16:59 +02:00
name = "regex-automata"
2024-04-16 15:01:02 +02:00
version = "0.4.6"
2023-05-18 16:23:17 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "86b83b8b9847f9bf95ef68afb0b8e6cdb80f498442f5179a29fad448fcc1eaea"
2023-09-27 20:16:59 +02:00
dependencies = [
"aho-corasick",
"memchr",
"regex-syntax",
]
2023-05-18 16:23:17 +02:00
[[package]]
name = "regex-syntax"
2024-04-16 15:01:02 +02:00
version = "0.8.3"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "adad44e29e4c806119491a7f06f03de4d1af22c3a680dd47f1e6e179439d1f56"
2021-09-11 02:37:13 +02:00
2021-09-13 00:38:46 +02:00
[[package]]
2021-09-13 20:54:57 +02:00
name = "ring"
version = "0.16.20"
2021-09-13 00:38:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2021-09-13 20:54:57 +02:00
checksum = "3053cf52e236a3ed746dfc745aa9cacf1b791d846bdaf412f60a8d7d6e17c8fc"
2021-09-13 00:38:46 +02:00
dependencies = [
2021-09-13 20:54:57 +02:00
"cc",
2021-09-13 00:38:46 +02:00
"libc",
2021-09-13 20:54:57 +02:00
"once_cell",
"spin",
"untrusted",
"web-sys",
"winapi",
2021-09-13 00:38:46 +02:00
]
2021-09-11 02:37:13 +02:00
[[package]]
name = "rustler"
2023-05-18 16:23:17 +02:00
version = "0.28.0"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 16:23:17 +02:00
checksum = "7d7a2f98cb272ae0548e434bb3afde626012084cbebef84542bc7afed868bd6f"
2021-09-11 02:37:13 +02:00
dependencies = [
"lazy_static",
"rustler_codegen",
"rustler_sys",
]
[[package]]
name = "rustler_codegen"
2023-05-18 16:23:17 +02:00
version = "0.28.0"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 16:23:17 +02:00
checksum = "2ae37fb154683a1ff13e95dfd16c15043d6aee9853ea650ca34a45bd94e319a5"
2021-09-11 02:37:13 +02:00
dependencies = [
2023-05-18 16:23:17 +02:00
"heck",
2021-09-11 02:37:13 +02:00
"proc-macro2",
"quote",
2024-05-19 20:48:53 +02:00
"syn",
2021-09-11 02:37:13 +02:00
]
[[package]]
name = "rustler_sys"
2023-09-27 20:16:59 +02:00
version = "2.2.1"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-27 20:16:59 +02:00
checksum = "ae0eb19e2fdf4abc3662441087fc499a58b7550822cc8007e79f15c40157c883"
2021-09-11 02:37:13 +02:00
dependencies = [
2023-05-18 16:23:17 +02:00
"regex",
2021-09-11 02:37:13 +02:00
"unreachable",
]
[[package]]
name = "slug"
2024-04-16 15:01:02 +02:00
version = "0.1.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "3bd94acec9c8da640005f8e135a39fc0372e74535e6b368b7a04b875f784c8c4"
dependencies = [
"deunicode",
2024-04-16 15:01:02 +02:00
"wasm-bindgen",
]
2021-09-13 20:54:57 +02:00
[[package]]
name = "spin"
version = "0.5.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6e63cff320ae2c57904679ba7cb63280a3dc4613885beafb148ee7bf9aa9042d"
2021-09-11 02:37:13 +02:00
[[package]]
name = "strsim"
2024-05-19 20:48:53 +02:00
version = "0.11.1"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-05-19 20:48:53 +02:00
checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f"
2021-09-11 02:37:13 +02:00
2021-09-11 23:21:25 +02:00
[[package]]
2024-04-16 15:01:02 +02:00
name = "syn"
version = "2.0.59"
2022-03-24 18:41:51 +01:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "4a6531ffc7b071655e4ce2e04bd464c4830bb585a61cabb96cf808f05172615a"
2022-03-24 18:41:51 +01:00
dependencies = [
"proc-macro2",
"quote",
2024-04-16 15:01:02 +02:00
"unicode-ident",
2022-03-24 18:41:51 +01:00
]
2021-09-11 02:37:13 +02:00
[[package]]
2021-09-13 20:54:57 +02:00
name = "tinyvec"
version = "1.6.0"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "87cc5ceb3875bb20c2890005a4e226a4651264a5c75edb2421b52861a0a0cb50"
2021-09-11 02:37:13 +02:00
dependencies = [
2021-09-13 20:54:57 +02:00
"tinyvec_macros",
2021-09-11 02:37:13 +02:00
]
2021-09-13 20:54:57 +02:00
[[package]]
name = "tinyvec_macros"
2023-05-18 16:23:17 +02:00
version = "0.1.1"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 16:23:17 +02:00
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
2021-09-13 20:54:57 +02:00
2021-09-11 02:37:13 +02:00
[[package]]
name = "typed-arena"
2023-05-18 16:23:17 +02:00
version = "2.0.2"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-05-18 16:23:17 +02:00
checksum = "6af6ae20167a9ece4bcb41af5b80f8a1f1df981f6391189ce00fd257af04126a"
2021-09-11 02:37:13 +02:00
[[package]]
name = "unicode-bidi"
2024-04-16 15:01:02 +02:00
version = "0.3.15"
2021-09-11 02:37:13 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "08f95100a766bf4f8f28f90d77e0a5461bbdb219042e7679bebe79004fed8d75"
2021-09-11 02:37:13 +02:00
2021-09-13 20:54:57 +02:00
[[package]]
name = "unicode-ident"
2023-09-27 20:16:59 +02:00
version = "1.0.12"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2023-09-27 20:16:59 +02:00
checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b"
2021-09-13 20:54:57 +02:00
[[package]]
name = "unicode-normalization"
2024-04-16 15:01:02 +02:00
version = "0.1.23"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "a56d1686db2308d901306f92a263857ef59ea39678a5458e7cb17f01415101f5"
2021-09-13 20:54:57 +02:00
dependencies = [
"tinyvec",
]
2021-09-11 02:37:13 +02:00
[[package]]
name = "unicode_categories"
version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "39ec24b3121d976906ece63c9daad25b85969647682eee313cb5779fdd69e14e"
[[package]]
name = "unreachable"
version = "1.0.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "382810877fe448991dfc7f0dd6e3ae5d58088fd0ea5e35189655f84e6814fa56"
dependencies = [
"void",
]
2021-09-13 20:54:57 +02:00
[[package]]
name = "untrusted"
version = "0.7.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a156c684c91ea7d62626509bce3cb4e1d9ed5c4d978f7b4352658f96a4c26b4a"
[[package]]
name = "url"
2024-04-16 15:01:02 +02:00
version = "2.5.0"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "31e6302e3bb753d46e83516cae55ae196fc0c309407cf11ab35cc51a4c2a4633"
2021-09-13 20:54:57 +02:00
dependencies = [
"form_urlencoded",
"idna",
"percent-encoding",
]
2021-09-11 02:37:13 +02:00
[[package]]
name = "void"
version = "1.0.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a02e4885ed3bc0f2de90ea6dd45ebcbb66dacffe03547fadbb0eeae2770887d"
2021-09-13 00:38:46 +02:00
[[package]]
2021-09-13 20:54:57 +02:00
name = "wasm-bindgen"
2024-04-16 15:01:02 +02:00
version = "0.2.92"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "4be2531df63900aeb2bca0daaaddec08491ee64ceecbee5076636a3b026795a8"
2021-09-13 20:54:57 +02:00
dependencies = [
"cfg-if",
"wasm-bindgen-macro",
]
[[package]]
name = "wasm-bindgen-backend"
2024-04-16 15:01:02 +02:00
version = "0.2.92"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "614d787b966d3989fa7bb98a654e369c762374fd3213d212cfc0251257e747da"
2021-09-13 20:54:57 +02:00
dependencies = [
"bumpalo",
"log",
"once_cell",
2021-09-13 20:54:57 +02:00
"proc-macro2",
"quote",
2024-05-19 20:48:53 +02:00
"syn",
2021-09-13 20:54:57 +02:00
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-macro"
2024-04-16 15:01:02 +02:00
version = "0.2.92"
2021-09-13 00:38:46 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "a1f8823de937b71b9460c0c34e25f3da88250760bec0ebac694b49997550d726"
2021-09-13 20:54:57 +02:00
dependencies = [
"quote",
"wasm-bindgen-macro-support",
]
[[package]]
name = "wasm-bindgen-macro-support"
2024-04-16 15:01:02 +02:00
version = "0.2.92"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "e94f17b526d0a461a191c78ea52bbce64071ed5c04c9ffe424dcb38f74171bb7"
2021-09-13 20:54:57 +02:00
dependencies = [
"proc-macro2",
"quote",
2024-05-19 20:48:53 +02:00
"syn",
2021-09-13 20:54:57 +02:00
"wasm-bindgen-backend",
"wasm-bindgen-shared",
]
[[package]]
name = "wasm-bindgen-shared"
2024-04-16 15:01:02 +02:00
version = "0.2.92"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "af190c94f2773fdb3729c55b007a722abb5384da03bc0986df4c289bf5567e96"
2021-09-13 20:54:57 +02:00
[[package]]
name = "web-sys"
2024-04-16 15:01:02 +02:00
version = "0.3.69"
2021-09-13 20:54:57 +02:00
source = "registry+https://github.com/rust-lang/crates.io-index"
2024-04-16 15:01:02 +02:00
checksum = "77afa9a11836342370f4817622a2f0f418b134426d91a82dfb48f532d2ec13ef"
2021-09-13 20:54:57 +02:00
dependencies = [
"js-sys",
"wasm-bindgen",
]
2021-09-13 00:38:46 +02:00
2021-09-11 02:37:13 +02:00
[[package]]
name = "winapi"
version = "0.3.9"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419"
dependencies = [
"winapi-i686-pc-windows-gnu",
"winapi-x86_64-pc-windows-gnu",
]
[[package]]
name = "winapi-i686-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6"
[[package]]
name = "winapi-x86_64-pc-windows-gnu"
version = "0.4.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f"