| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587 |
- # This file is automatically @generated by Cargo.
- # It is not intended for manual editing.
- version = 4
- [[package]]
- name = "aho-corasick"
- version = "1.1.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8e60d3430d3a69478ad0993f19238d2df97c507009a52b3c10addcd7f6bcb916"
- dependencies = [
- "memchr",
- ]
- [[package]]
- name = "anyhow"
- version = "1.0.91"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c042108f3ed77fd83760a5fd79b53be043192bb3b9dba91d8c574c0ada7850c8"
- [[package]]
- name = "async-recursion"
- version = "1.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3b43422f69d8ff38f95f1b2bb76517c91589a924d1559a0e935d7c8ce0274c11"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "attribute-derive"
- version = "0.9.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1f1ee502851995027b06f99f5ffbeffa1406b38d0b318a1ebfa469332c6cbafd"
- dependencies = [
- "attribute-derive-macro",
- "derive-where",
- "manyhow",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "attribute-derive-macro"
- version = "0.9.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3601467f634cfe36c4780ca9c75dea9a5b34529c1f2810676a337e7e0997f954"
- dependencies = [
- "collection_literals",
- "interpolator",
- "manyhow",
- "proc-macro-utils 0.8.0",
- "proc-macro2",
- "quote",
- "quote-use",
- "syn",
- ]
- [[package]]
- name = "autocfg"
- version = "1.4.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ace50bade8e6234aa140d9a2f552bbee1db4d353f69b8217bc503490fc1a9f26"
- [[package]]
- name = "base64"
- version = "0.22.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6"
- [[package]]
- name = "bitflags"
- version = "2.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b048fb63fd8b5923fc5aa7b340d8e156aec7ec02f0c78fa8a6ddc2613f6f71de"
- [[package]]
- name = "bumpalo"
- version = "3.16.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "79296716171880943b8470b5f8d03aa55eb2e645a4874bdbb28adb49162e012c"
- [[package]]
- name = "bytes"
- version = "1.8.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9ac0150caa2ae65ca5bd83f25c7de183dea78d4d366469f148435e2acfbad0da"
- [[package]]
- name = "camino"
- version = "1.1.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8b96ec4966b5813e2c0507c1f86115c8c5abaadc3980879c3424042a02fd1ad3"
- [[package]]
- name = "cfg-if"
- version = "1.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "baf1de4339761588bc0619e3cbc0120ee582ebb74b53b4efbf79117bd2da40fd"
- [[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 = "collection_literals"
- version = "1.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "186dce98367766de751c42c4f03970fc60fc012296e706ccbb9d5df9b6c1e271"
- [[package]]
- name = "config"
- version = "0.14.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "68578f196d2a33ff61b27fae256c3164f65e36382648e30666dde05b8cc9dfdf"
- dependencies = [
- "convert_case",
- "nom",
- "pathdiff",
- "serde",
- "toml",
- ]
- [[package]]
- name = "console_error_panic_hook"
- version = "0.1.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a06aeb73f470f66dcdbf7223caeebb85984942f22f1adb2a088cf9668146bbbc"
- dependencies = [
- "cfg-if",
- "wasm-bindgen",
- ]
- [[package]]
- name = "const_format"
- version = "0.2.33"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "50c655d81ff1114fb0dcdea9225ea9f0cc712a6f8d189378e82bdf62a473a64b"
- dependencies = [
- "const_format_proc_macros",
- ]
- [[package]]
- name = "const_format_proc_macros"
- version = "0.2.33"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "eff1a44b93f47b1bac19a27932f5c591e43d1ba357ee4f61526c8a25603f0eb1"
- dependencies = [
- "proc-macro2",
- "quote",
- "unicode-xid",
- ]
- [[package]]
- name = "convert_case"
- version = "0.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ec182b0ca2f35d8fc196cf3404988fd8b8c739a4d270ff118a398feb0cbec1ca"
- dependencies = [
- "unicode-segmentation",
- ]
- [[package]]
- name = "crunchy"
- version = "0.2.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7a81dae078cea95a014a339291cec439d2f232ebe854a9d672b796c6afafa9b7"
- [[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.5",
- "lock_api",
- "once_cell",
- "parking_lot_core",
- ]
- [[package]]
- name = "derive-where"
- version = "1.2.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "62d671cc41a825ebabc75757b62d3d168c577f9149b2d49ece1dad1f72119d25"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "drain_filter_polyfill"
- version = "0.1.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "669a445ee724c5c69b1b06fe0b63e70a1c84bc9bb7d9696cd4f4e3ec45050408"
- [[package]]
- name = "either"
- version = "1.13.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0"
- [[package]]
- name = "equivalent"
- version = "1.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5443807d6dff69373d433ab9ef5378ad8df50ca6298caf15de6e52e24aaf54d5"
- [[package]]
- name = "fnv"
- version = "1.0.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1"
- [[package]]
- name = "form_urlencoded"
- version = "1.2.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e13624c2627564efccf4934284bdd98cbaa14e79b0b5a141218e507b3a823456"
- dependencies = [
- "percent-encoding",
- ]
- [[package]]
- name = "futures"
- version = "0.3.31"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "65bc07b1a8bc7c85c5f2e110c476c7389b4554ba72af57d8445ea63a576b0876"
- dependencies = [
- "futures-channel",
- "futures-core",
- "futures-executor",
- "futures-io",
- "futures-sink",
- "futures-task",
- "futures-util",
- ]
- [[package]]
- name = "futures-channel"
- version = "0.3.31"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2dff15bf788c671c1934e366d07e30c1814a8ef514e1af724a602e8a2fbe1b10"
- dependencies = [
- "futures-core",
- "futures-sink",
- ]
- [[package]]
- name = "futures-core"
- version = "0.3.31"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "05f29059c0c2090612e8d742178b0580d2dc940c837851ad723096f87af6663e"
- [[package]]
- name = "futures-executor"
- version = "0.3.31"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1e28d1d997f585e54aebc3f97d39e72338912123a67330d723fdbb564d646c9f"
- dependencies = [
- "futures-core",
- "futures-task",
- "futures-util",
- ]
- [[package]]
- name = "futures-io"
- version = "0.3.31"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9e5c1b78ca4aae1ac06c48a526a655760685149f0d465d21f37abfe57ce075c6"
- [[package]]
- name = "futures-macro"
- version = "0.3.31"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "162ee34ebcb7c64a8abebc059ce0fee27c2262618d7b60ed8faf72fef13c3650"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "futures-sink"
- version = "0.3.31"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e575fab7d1e0dcb8d0c7bcf9a63ee213816ab51902e6d244a95819acacf1d4f7"
- [[package]]
- name = "futures-task"
- version = "0.3.31"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f90f7dce0722e95104fcb095585910c0977252f286e354b5e3bd38902cd99988"
- [[package]]
- name = "futures-util"
- version = "0.3.31"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9fa08315bb612088cc391249efdc3bc77536f16c91f6cf495e6fbe85b20a4a81"
- dependencies = [
- "futures-channel",
- "futures-core",
- "futures-io",
- "futures-macro",
- "futures-sink",
- "futures-task",
- "memchr",
- "pin-project-lite",
- "pin-utils",
- "slab",
- ]
- [[package]]
- name = "getrandom"
- version = "0.2.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c4567c8db10ae91089c99af84c68c38da3ec2f087c3f82960bcdbf3656b6f4d7"
- dependencies = [
- "cfg-if",
- "js-sys",
- "libc",
- "wasi",
- "wasm-bindgen",
- ]
- [[package]]
- name = "gloo-net"
- version = "0.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c06f627b1a58ca3d42b45d6104bf1e1a03799df472df00988b6ba21accc10580"
- dependencies = [
- "futures-channel",
- "futures-core",
- "futures-sink",
- "gloo-utils",
- "http",
- "js-sys",
- "pin-project",
- "serde",
- "serde_json",
- "thiserror",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
- ]
- [[package]]
- name = "gloo-utils"
- version = "0.2.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa"
- dependencies = [
- "js-sys",
- "serde",
- "serde_json",
- "wasm-bindgen",
- "web-sys",
- ]
- [[package]]
- name = "half"
- version = "2.4.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6dd08c532ae367adf81c312a4580bc67f1d0fe8bc9c460520283f4c0ff277888"
- dependencies = [
- "cfg-if",
- "crunchy",
- ]
- [[package]]
- name = "hashbrown"
- version = "0.14.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e5274423e17b7c9fc20b6e7e208532f9b19825d82dfd615708b70edd83df41f1"
- [[package]]
- name = "hashbrown"
- version = "0.15.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1e087f84d4f86bf4b218b927129862374b72199ae7d8657835f1e89000eea4fb"
- [[package]]
- name = "html-escape"
- version = "0.2.13"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6d1ad449764d627e22bfd7cd5e8868264fc9236e07c752972b4080cd351cb476"
- dependencies = [
- "utf8-width",
- ]
- [[package]]
- name = "http"
- version = "1.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258"
- dependencies = [
- "bytes",
- "fnv",
- "itoa",
- ]
- [[package]]
- name = "idna"
- version = "0.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "634d9b1461af396cad843f47fdba5597a4f9e6ddd4bfb6ff5d85028c25cb12f6"
- dependencies = [
- "unicode-bidi",
- "unicode-normalization",
- ]
- [[package]]
- name = "indexmap"
- version = "2.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "707907fe3c25f5424cce2cb7e1cbcafee6bdbe735ca90ef77c29e84591e5b9da"
- dependencies = [
- "equivalent",
- "hashbrown 0.15.0",
- ]
- [[package]]
- name = "interpolator"
- version = "0.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8"
- [[package]]
- name = "inventory"
- version = "0.3.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f958d3d68f4167080a18141e10381e7634563984a537f2a49a30fd8e53ac5767"
- [[package]]
- name = "itertools"
- version = "0.12.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569"
- dependencies = [
- "either",
- ]
- [[package]]
- name = "itoa"
- version = "1.0.11"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "49f1f14873335454500d59611f1cf4a4b0f786f9ac11f4312a78e4cf2566695b"
- [[package]]
- name = "js-sys"
- version = "0.3.72"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6a88f1bda2bd75b0452a14784937d796722fdebfe50df998aeb3f0b7603019a9"
- dependencies = [
- "wasm-bindgen",
- ]
- [[package]]
- name = "lazy_static"
- version = "1.5.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe"
- [[package]]
- name = "leptos"
- version = "0.6.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0cbb3237c274dadf00dcc27db96c52601b40375117178fb24a991cda073624f0"
- dependencies = [
- "cfg-if",
- "leptos_config",
- "leptos_dom",
- "leptos_macro",
- "leptos_reactive",
- "leptos_server",
- "server_fn",
- "tracing",
- "typed-builder",
- "typed-builder-macro",
- "wasm-bindgen",
- "web-sys",
- ]
- [[package]]
- name = "leptos1"
- version = "0.1.0"
- dependencies = [
- "console_error_panic_hook",
- "leptos",
- ]
- [[package]]
- name = "leptos_config"
- version = "0.6.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "62ed778611380ddea47568ac6ad6ec5158d39b5bd59e6c4dcd24efc15dc3dc0d"
- dependencies = [
- "config",
- "regex",
- "serde",
- "thiserror",
- "typed-builder",
- ]
- [[package]]
- name = "leptos_dom"
- version = "0.6.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8401c46c86c1f4c16dcb7881ed319fcdca9cda9b9e78a6088955cb423afcf119"
- dependencies = [
- "async-recursion",
- "cfg-if",
- "drain_filter_polyfill",
- "futures",
- "getrandom",
- "html-escape",
- "indexmap",
- "itertools",
- "js-sys",
- "leptos_reactive",
- "once_cell",
- "pad-adapter",
- "paste",
- "rustc-hash",
- "serde",
- "serde_json",
- "server_fn",
- "smallvec",
- "tracing",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
- ]
- [[package]]
- name = "leptos_hot_reload"
- version = "0.6.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6cb53d4794240b684a2f4be224b84bee9e62d2abc498cf2bcd643cd565e01d96"
- dependencies = [
- "anyhow",
- "camino",
- "indexmap",
- "parking_lot",
- "proc-macro2",
- "quote",
- "rstml",
- "serde",
- "syn",
- "walkdir",
- ]
- [[package]]
- name = "leptos_macro"
- version = "0.6.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4b13bc3db70715cd8218c4535a5af3ae3c0e5fea6f018531fc339377b36bc0e0"
- dependencies = [
- "attribute-derive",
- "cfg-if",
- "convert_case",
- "html-escape",
- "itertools",
- "leptos_hot_reload",
- "prettyplease",
- "proc-macro-error2",
- "proc-macro2",
- "quote",
- "rstml",
- "server_fn_macro",
- "syn",
- "tracing",
- "uuid",
- ]
- [[package]]
- name = "leptos_reactive"
- version = "0.6.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e4161acbf80f59219d8d14182371f57302bc7ff81ee41aba8ba1ff7295727f23"
- dependencies = [
- "base64",
- "cfg-if",
- "futures",
- "indexmap",
- "js-sys",
- "oco_ref",
- "paste",
- "pin-project",
- "rustc-hash",
- "self_cell",
- "serde",
- "serde-wasm-bindgen",
- "serde_json",
- "slotmap",
- "thiserror",
- "tracing",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
- ]
- [[package]]
- name = "leptos_server"
- version = "0.6.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4a97eb90a13f71500b831c7119ddd3bdd0d7ae0a6b0487cade4fddeed3b8c03f"
- dependencies = [
- "inventory",
- "lazy_static",
- "leptos_macro",
- "leptos_reactive",
- "serde",
- "server_fn",
- "thiserror",
- "tracing",
- ]
- [[package]]
- name = "libc"
- version = "0.2.161"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8e9489c2807c139ffd9c1794f4af0ebe86a828db53ecdc7fea2111d0fed085d1"
- [[package]]
- name = "lock_api"
- version = "0.4.12"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "07af8b9cdd281b7915f413fa73f29ebd5d55d0d3f0155584dade1ff18cea1b17"
- dependencies = [
- "autocfg",
- "scopeguard",
- ]
- [[package]]
- name = "log"
- version = "0.4.22"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a7a70ba024b9dc04c27ea2f0c0548feb474ec5c54bba33a7f72f873a39d07b24"
- [[package]]
- name = "manyhow"
- version = "0.10.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f91ea592d76c0b6471965708ccff7e6a5d277f676b90ab31f4d3f3fc77fade64"
- dependencies = [
- "manyhow-macros",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "manyhow-macros"
- version = "0.10.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c64621e2c08f2576e4194ea8be11daf24ac01249a4f53cd8befcbb7077120ead"
- dependencies = [
- "proc-macro-utils 0.8.0",
- "proc-macro2",
- "quote",
- ]
- [[package]]
- name = "memchr"
- version = "2.7.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "78ca9ab1a0babb1e7d5695e3530886289c18cf2f87ec19a575a0abdce112e3a3"
- [[package]]
- name = "minimal-lexical"
- version = "0.2.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "68354c5c6bd36d73ff3feceb05efa59b6acb7626617f4962be322a825e61f79a"
- [[package]]
- name = "nom"
- version = "7.1.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d273983c5a657a70a3e8f2a01329822f3b8c8172b73826411a55751e404a0a4a"
- dependencies = [
- "memchr",
- "minimal-lexical",
- ]
- [[package]]
- name = "oco_ref"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c51ebcefb2f0b9a5e0bea115532c8ae4215d1b01eff176d0f4ba4192895c2708"
- dependencies = [
- "serde",
- "thiserror",
- ]
- [[package]]
- name = "once_cell"
- version = "1.20.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1261fe7e33c73b354eab43b1273a57c8f967d0391e80353e51f764ac02cf6775"
- [[package]]
- name = "pad-adapter"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "56d80efc4b6721e8be2a10a5df21a30fa0b470f1539e53d8b4e6e75faf938b63"
- [[package]]
- name = "parking_lot"
- version = "0.12.3"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f1bf18183cf54e8d6059647fc3063646a1801cf30896933ec2311622cc4b9a27"
- dependencies = [
- "lock_api",
- "parking_lot_core",
- ]
- [[package]]
- name = "parking_lot_core"
- version = "0.9.10"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1e401f977ab385c9e4e3ab30627d6f26d00e2c73eef317493c4ec6d468726cf8"
- dependencies = [
- "cfg-if",
- "libc",
- "redox_syscall",
- "smallvec",
- "windows-targets",
- ]
- [[package]]
- name = "paste"
- version = "1.0.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "57c0d7b74b563b49d38dae00a0c37d4d6de9b432382b2892f0574ddcae73fd0a"
- [[package]]
- name = "pathdiff"
- version = "0.2.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d61c5ce1153ab5b689d0c074c4e7fc613e942dfb7dd9eea5ab202d2ad91fe361"
- [[package]]
- name = "percent-encoding"
- version = "2.3.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
- [[package]]
- name = "pin-project"
- version = "1.1.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "be57f64e946e500c8ee36ef6331845d40a93055567ec57e8fae13efd33759b95"
- dependencies = [
- "pin-project-internal",
- ]
- [[package]]
- name = "pin-project-internal"
- version = "1.1.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3c0f5fad0874fc7abcd4d750e76917eaebbecaa2c20bde22e1dbeeba8beb758c"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "pin-project-lite"
- version = "0.2.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "915a1e146535de9163f3987b8944ed8cf49a18bb0056bcebcdcece385cece4ff"
- [[package]]
- name = "pin-utils"
- version = "0.1.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184"
- [[package]]
- name = "prettyplease"
- version = "0.2.25"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "64d1ec885c64d0457d564db4ec299b2dae3f9c02808b8ad9c3a089c591b18033"
- dependencies = [
- "proc-macro2",
- "syn",
- ]
- [[package]]
- name = "proc-macro-error"
- version = "1.0.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c"
- dependencies = [
- "proc-macro-error-attr",
- "proc-macro2",
- "quote",
- "version_check",
- ]
- [[package]]
- name = "proc-macro-error-attr"
- version = "1.0.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869"
- dependencies = [
- "proc-macro2",
- "quote",
- "version_check",
- ]
- [[package]]
- name = "proc-macro-error-attr2"
- version = "2.0.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "96de42df36bb9bba5542fe9f1a054b8cc87e172759a1868aa05c1f3acc89dfc5"
- dependencies = [
- "proc-macro2",
- "quote",
- ]
- [[package]]
- name = "proc-macro-error2"
- version = "2.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "11ec05c52be0a07b08061f7dd003e7d7092e0472bc731b4af7bb1ef876109802"
- dependencies = [
- "proc-macro-error-attr2",
- "proc-macro2",
- "quote",
- ]
- [[package]]
- name = "proc-macro-utils"
- version = "0.8.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3f59e109e2f795a5070e69578c4dc101068139f74616778025ae1011d4cd41a8"
- dependencies = [
- "proc-macro2",
- "quote",
- "smallvec",
- ]
- [[package]]
- name = "proc-macro-utils"
- version = "0.10.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "eeaf08a13de400bc215877b5bdc088f241b12eb42f0a548d3390dc1c56bb7071"
- dependencies = [
- "proc-macro2",
- "quote",
- "smallvec",
- ]
- [[package]]
- name = "proc-macro2"
- version = "1.0.89"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f139b0662de085916d1fb67d2b4169d1addddda1919e696f3252b740b629986e"
- dependencies = [
- "unicode-ident",
- ]
- [[package]]
- name = "proc-macro2-diagnostics"
- version = "0.10.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- "version_check",
- "yansi",
- ]
- [[package]]
- name = "quote"
- version = "1.0.37"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b5b9d34b8991d19d98081b46eacdd8eb58c6f2b201139f7c5f643cc155a633af"
- dependencies = [
- "proc-macro2",
- ]
- [[package]]
- name = "quote-use"
- version = "0.8.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9619db1197b497a36178cfc736dc96b271fe918875fbf1344c436a7e93d0321e"
- dependencies = [
- "quote",
- "quote-use-macros",
- ]
- [[package]]
- name = "quote-use-macros"
- version = "0.8.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "82ebfb7faafadc06a7ab141a6f67bcfb24cb8beb158c6fe933f2f035afa99f35"
- dependencies = [
- "proc-macro-utils 0.10.0",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "redox_syscall"
- version = "0.5.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "9b6dfecf2c74bce2466cabf93f6664d6998a69eb21e39f4207930065b27b771f"
- dependencies = [
- "bitflags",
- ]
- [[package]]
- name = "regex"
- version = "1.11.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "b544ef1b4eac5dc2db33ea63606ae9ffcfac26c1416a2806ae0bf5f56b201191"
- dependencies = [
- "aho-corasick",
- "memchr",
- "regex-automata",
- "regex-syntax",
- ]
- [[package]]
- name = "regex-automata"
- version = "0.4.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "368758f23274712b504848e9d5a6f010445cc8b87a7cdb4d7cbee666c1288da3"
- dependencies = [
- "aho-corasick",
- "memchr",
- "regex-syntax",
- ]
- [[package]]
- name = "regex-syntax"
- version = "0.8.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "2b15c43186be67a4fd63bee50d0303afffcef381492ebe2c5d87f324e1b8815c"
- [[package]]
- name = "rstml"
- version = "0.11.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "fe542870b8f59dd45ad11d382e5339c9a1047cde059be136a7016095bbdefa77"
- dependencies = [
- "proc-macro2",
- "proc-macro2-diagnostics",
- "quote",
- "syn",
- "syn_derive",
- "thiserror",
- ]
- [[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.18"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f3cb5ba0dc43242ce17de99c180e96db90b235b8a9fdc9543c96d2209116bd9f"
- [[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 = "self_cell"
- version = "1.0.4"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d369a96f978623eb3dc28807c4852d6cc617fed53da5d3c400feff1ef34a714a"
- [[package]]
- name = "send_wrapper"
- version = "0.6.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73"
- dependencies = [
- "futures-core",
- ]
- [[package]]
- name = "serde"
- version = "1.0.213"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3ea7893ff5e2466df8d720bb615088341b295f849602c6956047f8f80f0e9bc1"
- dependencies = [
- "serde_derive",
- ]
- [[package]]
- name = "serde-wasm-bindgen"
- version = "0.6.5"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b"
- dependencies = [
- "js-sys",
- "serde",
- "wasm-bindgen",
- ]
- [[package]]
- name = "serde_derive"
- version = "1.0.213"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7e85ad2009c50b58e87caa8cd6dac16bdf511bbfb7af6c33df902396aa480fa5"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "serde_json"
- version = "1.0.132"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "d726bfaff4b320266d395898905d0eba0345aae23b54aee3a737e260fd46db03"
- dependencies = [
- "itoa",
- "memchr",
- "ryu",
- "serde",
- ]
- [[package]]
- name = "serde_qs"
- version = "0.12.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0431a35568651e363364210c91983c1da5eb29404d9f0928b67d4ebcfa7d330c"
- dependencies = [
- "percent-encoding",
- "serde",
- "thiserror",
- ]
- [[package]]
- name = "serde_spanned"
- version = "0.6.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "87607cb1398ed59d48732e575a4c28a7a8ebf2454b964fe3f224f2afc07909e1"
- dependencies = [
- "serde",
- ]
- [[package]]
- name = "server_fn"
- version = "0.6.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4fae7a3038a32e5a34ba32c6c45eb4852f8affaf8b794ebfcd4b1099e2d62ebe"
- dependencies = [
- "bytes",
- "ciborium",
- "const_format",
- "dashmap",
- "futures",
- "gloo-net",
- "http",
- "js-sys",
- "once_cell",
- "send_wrapper",
- "serde",
- "serde_json",
- "serde_qs",
- "server_fn_macro_default",
- "thiserror",
- "url",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "wasm-streams",
- "web-sys",
- "xxhash-rust",
- ]
- [[package]]
- name = "server_fn_macro"
- version = "0.6.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "faaaf648c6967aef78177c0610478abb5a3455811f401f3c62d10ae9bd3901a1"
- dependencies = [
- "const_format",
- "convert_case",
- "proc-macro2",
- "quote",
- "syn",
- "xxhash-rust",
- ]
- [[package]]
- name = "server_fn_macro_default"
- version = "0.6.15"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "7f2aa8119b558a17992e0ac1fd07f080099564f24532858811ce04f742542440"
- dependencies = [
- "server_fn_macro",
- "syn",
- ]
- [[package]]
- name = "slab"
- version = "0.4.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "8f92a496fb766b417c996b9c5e57daf2f7ad3b0bebe1ccfca4856390e3d3bb67"
- dependencies = [
- "autocfg",
- ]
- [[package]]
- name = "slotmap"
- version = "1.0.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "dbff4acf519f630b3a3ddcfaea6c06b42174d9a44bc70c620e9ed1649d58b82a"
- dependencies = [
- "serde",
- "version_check",
- ]
- [[package]]
- name = "smallvec"
- version = "1.13.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "3c5e1a9a646d36c3599cd173a41282daf47c44583ad367b8e6837255952e5c67"
- [[package]]
- name = "syn"
- version = "2.0.85"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5023162dfcd14ef8f32034d8bcd4cc5ddc61ef7a247c024a33e24e1f24d21b56"
- dependencies = [
- "proc-macro2",
- "quote",
- "unicode-ident",
- ]
- [[package]]
- name = "syn_derive"
- version = "0.1.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1329189c02ff984e9736652b1631330da25eaa6bc639089ed4915d25446cbe7b"
- dependencies = [
- "proc-macro-error",
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "thiserror"
- version = "1.0.65"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5d11abd9594d9b38965ef50805c5e469ca9cc6f197f883f717e0269a3057b3d5"
- dependencies = [
- "thiserror-impl",
- ]
- [[package]]
- name = "thiserror-impl"
- version = "1.0.65"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ae71770322cbd277e69d762a16c444af02aa0575ac0d174f0b9562d3b37f8602"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "tinyvec"
- version = "1.8.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "445e881f4f6d382d5f27c034e25eb92edd7c784ceab92a0937db7f2e9471b938"
- dependencies = [
- "tinyvec_macros",
- ]
- [[package]]
- name = "tinyvec_macros"
- version = "0.1.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
- [[package]]
- name = "toml"
- version = "0.8.19"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "a1ed1f98e3fdc28d6d910e6737ae6ab1a93bf1985935a1193e68f93eeb68d24e"
- dependencies = [
- "serde",
- "serde_spanned",
- "toml_datetime",
- "toml_edit",
- ]
- [[package]]
- name = "toml_datetime"
- version = "0.6.8"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "0dd7358ecb8fc2f8d014bf86f6f638ce72ba252a2c3a2572f2a795f1d23efb41"
- dependencies = [
- "serde",
- ]
- [[package]]
- name = "toml_edit"
- version = "0.22.22"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "4ae48d6208a266e853d946088ed816055e556cc6028c5e8e2b84d9fa5dd7c7f5"
- dependencies = [
- "indexmap",
- "serde",
- "serde_spanned",
- "toml_datetime",
- "winnow",
- ]
- [[package]]
- name = "tracing"
- version = "0.1.40"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c3523ab5a71916ccf420eebdf5521fcef02141234bbc0b8a49f2fdc4544364ef"
- dependencies = [
- "pin-project-lite",
- "tracing-attributes",
- "tracing-core",
- ]
- [[package]]
- name = "tracing-attributes"
- version = "0.1.27"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "tracing-core"
- version = "0.1.32"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "c06d3da6113f116aaee68e4d601191614c9053067f9ab7f6edbcb161237daa54"
- dependencies = [
- "once_cell",
- ]
- [[package]]
- name = "typed-builder"
- version = "0.18.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "77739c880e00693faef3d65ea3aad725f196da38b22fdc7ea6ded6e1ce4d3add"
- dependencies = [
- "typed-builder-macro",
- ]
- [[package]]
- name = "typed-builder-macro"
- version = "0.18.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "1f718dfaf347dcb5b983bfc87608144b0bad87970aebcbea5ce44d2a30c08e63"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- ]
- [[package]]
- name = "unicode-bidi"
- version = "0.3.17"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5ab17db44d7388991a428b2ee655ce0c212e862eff1768a455c58f9aad6e7893"
- [[package]]
- name = "unicode-ident"
- version = "1.0.13"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e91b56cd4cadaeb79bbf1a5645f6b4f8dc5bde8834ad5894a8db35fda9efa1fe"
- [[package]]
- name = "unicode-normalization"
- version = "0.1.24"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "5033c97c4262335cded6d6fc3e5c18ab755e1a3dc96376350f3d8e9f009ad956"
- dependencies = [
- "tinyvec",
- ]
- [[package]]
- name = "unicode-segmentation"
- version = "1.12.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493"
- [[package]]
- name = "unicode-xid"
- version = "0.2.6"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853"
- [[package]]
- name = "url"
- version = "2.5.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "22784dbdf76fdde8af1aeda5622b546b422b6fc585325248a2bf9f5e41e94d6c"
- dependencies = [
- "form_urlencoded",
- "idna",
- "percent-encoding",
- ]
- [[package]]
- name = "utf8-width"
- version = "0.1.7"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "86bd8d4e895da8537e5315b8254664e6b769c4ff3db18321b297a1e7004392e3"
- [[package]]
- name = "uuid"
- version = "1.11.0"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f8c5f0a0af699448548ad1a2fbf920fb4bee257eae39953ba95cb84891a0446a"
- dependencies = [
- "getrandom",
- ]
- [[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 = "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.95"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "128d1e363af62632b8eb57219c8fd7877144af57558fb2ef0368d0087bddeb2e"
- dependencies = [
- "cfg-if",
- "once_cell",
- "wasm-bindgen-macro",
- ]
- [[package]]
- name = "wasm-bindgen-backend"
- version = "0.2.95"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cb6dd4d3ca0ddffd1dd1c9c04f94b868c37ff5fac97c30b97cff2d74fce3a358"
- dependencies = [
- "bumpalo",
- "log",
- "once_cell",
- "proc-macro2",
- "quote",
- "syn",
- "wasm-bindgen-shared",
- ]
- [[package]]
- name = "wasm-bindgen-futures"
- version = "0.4.45"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cc7ec4f8827a71586374db3e87abdb5a2bb3a15afed140221307c3ec06b1f63b"
- dependencies = [
- "cfg-if",
- "js-sys",
- "wasm-bindgen",
- "web-sys",
- ]
- [[package]]
- name = "wasm-bindgen-macro"
- version = "0.2.95"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "e79384be7f8f5a9dd5d7167216f022090cf1f9ec128e6e6a482a2cb5c5422c56"
- dependencies = [
- "quote",
- "wasm-bindgen-macro-support",
- ]
- [[package]]
- name = "wasm-bindgen-macro-support"
- version = "0.2.95"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "26c6ab57572f7a24a4985830b120de1594465e5d500f24afe89e16b4e833ef68"
- dependencies = [
- "proc-macro2",
- "quote",
- "syn",
- "wasm-bindgen-backend",
- "wasm-bindgen-shared",
- ]
- [[package]]
- name = "wasm-bindgen-shared"
- version = "0.2.95"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "65fc09f10666a9f147042251e0dda9c18f166ff7de300607007e96bdebc1068d"
- [[package]]
- name = "wasm-streams"
- version = "0.4.2"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "15053d8d85c7eccdbefef60f06769760a563c7f0a9d6902a13d35c7800b0ad65"
- dependencies = [
- "futures-util",
- "js-sys",
- "wasm-bindgen",
- "wasm-bindgen-futures",
- "web-sys",
- ]
- [[package]]
- name = "web-sys"
- version = "0.3.72"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "f6488b90108c040df0fe62fa815cbdee25124641df01814dd7282749234c6112"
- dependencies = [
- "js-sys",
- "wasm-bindgen",
- ]
- [[package]]
- name = "winapi-util"
- version = "0.1.9"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cf221c93e13a30d793f7645a0e7762c55d169dbb0a49671918a2319d289b10bb"
- dependencies = [
- "windows-sys",
- ]
- [[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-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 = "winnow"
- version = "0.6.20"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "36c1fec1a2bb5866f07c25f68c26e565c4c200aebb96d7e55710c19d3e8ac49b"
- dependencies = [
- "memchr",
- ]
- [[package]]
- name = "xxhash-rust"
- version = "0.8.12"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "6a5cbf750400958819fb6178eaa83bee5cd9c29a26a40cc241df8c70fdd46984"
- [[package]]
- name = "yansi"
- version = "1.0.1"
- source = "registry+https://github.com/rust-lang/crates.io-index"
- checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049"
|