diff --git a/blade/main.rs b/blade/main.rs index 95a0713..6feba54 100644 --- a/blade/main.rs +++ b/blade/main.rs @@ -241,8 +241,10 @@ cfg_if! { tracing::info!("Starting blade server at: {}", addr.to_string()); let fut1 = HttpServer::new(move || { let leptos_options = &conf.leptos_options; + let fn_state = actix_state.clone(); let rt_state = actix_state.clone(); App::new() + .route("/api/{tail:.*}", leptos_actix::handle_server_fns_with_context(move|| provide_context(fn_state.clone()))) // serve JS/WASM/CSS from `pkg` .service(Files::new("/pkg", pkg.clone())) // serve other assets from the `assets` directory diff --git a/blade/routes/test.rs b/blade/routes/test.rs index 1fe1edb..ecdf1be 100644 --- a/blade/routes/test.rs +++ b/blade/routes/test.rs @@ -14,22 +14,25 @@ use std::sync::Arc; #[server] pub async fn get_artifact(uri: String) -> Result, ServerFnError> { let global: Arc = use_context::>().unwrap(); - let parsed = url::Url::parse(&uri).map_err(|e| ServerFnError::new(format!("{e:#?}")))?; + let parsed = + url::Url::parse(&uri).map_err(|e| ServerFnError::ServerError(format!("{e:#?}")))?; match parsed.scheme() { "file" => { if !global.allow_local { - return Err(ServerFnError::new("not implemented".to_string())); + return Err(ServerFnError::ServerError("not implemented".to_string())); } let path = parsed .to_file_path() - .map_err(|e| ServerFnError::new(format!("{e:#?}")))?; - std::fs::read(path).map_err(|e| ServerFnError::new(format!("{e:#?}"))) + .map_err(|e| ServerFnError::ServerError(format!("{e:#?}")))?; + return std::fs::read(path).map_err(|e| ServerFnError::ServerError(format!("{e:#?}"))); + } + "bytestream" | "http" | "https" => { + return global + .bytestream_client + .download_file(&uri) + .await + .map_err(|e| ServerFnError::ServerError(format!("failed to get artifact: {e}"))); } - "bytestream" | "http" | "https" => global - .bytestream_client - .download_file(&uri) - .await - .map_err(|e| ServerFnError::new(format!("failed to get artifact: {e}"))), _ => Err(ServerFnError::ServerError("not implemented".to_string())), } } diff --git a/third_party/rust/Cargo.Bazel.lock b/third_party/rust/Cargo.Bazel.lock index fe3a91d..ecb6754 100644 --- a/third_party/rust/Cargo.Bazel.lock +++ b/third_party/rust/Cargo.Bazel.lock @@ -1,5 +1,5 @@ { - "checksum": "675107c80dd97ac5c112d32e2e76120259db99e0dad7e0f9822991d954816e81", + "checksum": "3b339b7502a20fd4028c053b2806b83a61a6403100318fefd71cb70e8a933128", "crates": { "actix-codec 0.5.1": { "name": "actix-codec", @@ -415,11 +415,11 @@ "deps": { "common": [ { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -486,7 +486,7 @@ "target": "regex" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -897,7 +897,7 @@ "target": "regex" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -990,11 +990,11 @@ "target": "actix_router" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -1923,15 +1923,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -2039,15 +2039,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -2110,15 +2110,15 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -2177,15 +2177,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -2257,15 +2257,15 @@ "target": "proc_macro_utils" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -2428,7 +2428,7 @@ "target": "pin_project_lite" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -3611,11 +3611,11 @@ "target": "darling" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -4002,7 +4002,7 @@ "target": "ciborium_ll" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" } ], @@ -4302,15 +4302,15 @@ "target": "heck" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -4489,14 +4489,14 @@ ], "license_file": "LICENSE-APACHE" }, - "config 0.14.0": { + "config 0.13.3": { "name": "config", - "version": "0.14.0", + "version": "0.13.3", "package_url": "https://github.com/mehcode/config-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/config/0.14.0/download", - "sha256": "7328b20597b53c2454f0b1919720c25c7339051c02b72b7e05409e00b14132be" + "url": "https://static.crates.io/crates/config/0.13.3/download", + "sha256": "d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7" } }, "targets": [ @@ -4539,20 +4539,29 @@ "target": "pathdiff" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { - "id": "toml 0.8.10", + "id": "toml 0.5.11", "target": "toml" } ], "selects": {} }, "edition": "2018", - "version": "0.14.0" + "proc_macro_deps": { + "common": [ + { + "id": "async-trait 0.1.73", + "target": "async_trait" + } + ], + "selects": {} + }, + "version": "0.13.3" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -4650,11 +4659,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -5268,11 +5277,11 @@ "target": "ident_case" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -5331,7 +5340,7 @@ "target": "darling_core" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -5350,69 +5359,6 @@ ], "license_file": "LICENSE" }, - "dashmap 5.5.3": { - "name": "dashmap", - "version": "5.5.3", - "package_url": "https://github.com/xacrimon/dashmap", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/dashmap/5.5.3/download", - "sha256": "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" - } - }, - "targets": [ - { - "Library": { - "crate_name": "dashmap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": false, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "dashmap", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "hashbrown 0.14.0", - "target": "hashbrown" - }, - { - "id": "lock_api 0.4.10", - "target": "lock_api" - }, - { - "id": "once_cell 1.18.0", - "target": "once_cell" - }, - { - "id": "parking_lot_core 0.9.8", - "target": "parking_lot_core" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "5.5.3" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, "deranged 0.3.10": { "name": "deranged", "version": "0.3.10", @@ -5458,7 +5404,7 @@ "target": "powerfmt" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" } ], @@ -5506,11 +5452,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -5562,15 +5508,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -5653,11 +5599,11 @@ "target": "convert_case" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -5952,15 +5898,15 @@ "target": "diesel_table_macro_syntax" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -6077,7 +6023,7 @@ "deps": { "common": [ { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -6250,19 +6196,19 @@ "target": "lazy_static" }, { - "id": "leptos 0.6.9", + "id": "leptos 0.5.4", "target": "leptos" }, { - "id": "leptos_actix 0.6.9", + "id": "leptos_actix 0.5.4", "target": "leptos_actix" }, { - "id": "leptos_meta 0.6.9", + "id": "leptos_meta 0.5.4", "target": "leptos_meta" }, { - "id": "leptos_router 0.6.9", + "id": "leptos_router 0.5.4", "target": "leptos_router" }, { @@ -6302,7 +6248,7 @@ "target": "scopeguard" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -7424,15 +7370,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -7978,7 +7924,7 @@ "target": "pin_project" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -8014,118 +7960,6 @@ ], "license_file": null }, - "gloo-net 0.5.0": { - "name": "gloo-net", - "version": "0.5.0", - "package_url": "https://github.com/rustwasm/gloo", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/gloo-net/0.5.0/download", - "sha256": "43aaa242d1239a8822c15c645f02166398da4f8b5c4bae795c1f5b44e9eee173" - } - }, - "targets": [ - { - "Library": { - "crate_name": "gloo_net", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": false, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "gloo_net", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "eventsource", - "futures-channel", - "futures-core", - "futures-sink", - "http", - "json", - "pin-project", - "serde", - "serde_json", - "websocket" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "futures-channel 0.3.29", - "target": "futures_channel" - }, - { - "id": "futures-core 0.3.29", - "target": "futures_core" - }, - { - "id": "futures-sink 0.3.29", - "target": "futures_sink" - }, - { - "id": "gloo-utils 0.2.0", - "target": "gloo_utils" - }, - { - "id": "http 0.2.9", - "target": "http" - }, - { - "id": "js-sys 0.3.64", - "target": "js_sys" - }, - { - "id": "pin-project 1.1.3", - "target": "pin_project" - }, - { - "id": "serde 1.0.197", - "target": "serde" - }, - { - "id": "serde_json 1.0.108", - "target": "serde_json" - }, - { - "id": "thiserror 1.0.44", - "target": "thiserror" - }, - { - "id": "wasm-bindgen 0.2.87", - "target": "wasm_bindgen" - }, - { - "id": "wasm-bindgen-futures 0.4.37", - "target": "wasm_bindgen_futures" - }, - { - "id": "web-sys 0.3.64", - "target": "web_sys" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.5.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, "gloo-utils 0.1.7": { "name": "gloo-utils", "version": "0.1.7", @@ -8168,7 +8002,7 @@ "target": "js_sys" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -8196,76 +8030,6 @@ ], "license_file": null }, - "gloo-utils 0.2.0": { - "name": "gloo-utils", - "version": "0.2.0", - "package_url": "https://github.com/rustwasm/gloo/tree/master/crates/utils", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/gloo-utils/0.2.0/download", - "sha256": "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" - } - }, - "targets": [ - { - "Library": { - "crate_name": "gloo_utils", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": false, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "gloo_utils", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "serde" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "js-sys 0.3.64", - "target": "js_sys" - }, - { - "id": "serde 1.0.197", - "target": "serde" - }, - { - "id": "serde_json 1.0.108", - "target": "serde_json" - }, - { - "id": "wasm-bindgen 0.2.87", - "target": "wasm_bindgen" - }, - { - "id": "web-sys 0.3.64", - "target": "web_sys" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.2.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": null - }, "h2 0.3.24": { "name": "h2", "version": "0.3.24", @@ -8739,69 +8503,6 @@ ], "license_file": "LICENSE-APACHE" }, - "http 1.1.0": { - "name": "http", - "version": "1.1.0", - "package_url": "https://github.com/hyperium/http", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/http/1.1.0/download", - "sha256": "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" - } - }, - "targets": [ - { - "Library": { - "crate_name": "http", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": false, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "http", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "bytes 1.4.0", - "target": "bytes" - }, - { - "id": "fnv 1.0.7", - "target": "fnv" - }, - { - "id": "itoa 1.0.9", - "target": "itoa" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "1.1.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "http-body 0.4.5": { "name": "http-body", "version": "0.4.5", @@ -9759,20 +9460,20 @@ ], "license_file": "LICENSE-APACHE" }, - "ipnetwork 0.20.0": { - "name": "ipnetwork", - "version": "0.20.0", - "package_url": "https://github.com/achanda/ipnetwork", + "ipnet 2.8.0": { + "name": "ipnet", + "version": "2.8.0", + "package_url": "https://github.com/krisprice/ipnet", "repository": { "Http": { - "url": "https://static.crates.io/crates/ipnetwork/0.20.0/download", - "sha256": "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e" + "url": "https://static.crates.io/crates/ipnet/2.8.0/download", + "sha256": "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" } }, "targets": [ { "Library": { - "crate_name": "ipnetwork", + "crate_name": "ipnet", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -9783,7 +9484,7 @@ } } ], - "library_target_name": "ipnetwork", + "library_target_name": "ipnet", "common_attrs": { "compile_data_glob": [ "**" @@ -9791,43 +9492,34 @@ "crate_features": { "common": [ "default", - "serde" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "serde 1.0.197", - "target": "serde" - } + "std" ], "selects": {} }, - "edition": "2021", - "version": "0.20.0" + "edition": "2018", + "version": "2.8.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE.md" + "license_file": "LICENSE-APACHE" }, - "itertools 0.10.5": { - "name": "itertools", - "version": "0.10.5", - "package_url": "https://github.com/rust-itertools/itertools", + "ipnetwork 0.20.0": { + "name": "ipnetwork", + "version": "0.20.0", + "package_url": "https://github.com/achanda/ipnetwork", "repository": { "Http": { - "url": "https://static.crates.io/crates/itertools/0.10.5/download", - "sha256": "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" + "url": "https://static.crates.io/crates/ipnetwork/0.20.0/download", + "sha256": "bf466541e9d546596ee94f9f69590f89473455f88372423e0008fc1a7daf100e" } }, "targets": [ { "Library": { - "crate_name": "itertools", + "crate_name": "ipnetwork", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -9838,44 +9530,45 @@ } } ], - "library_target_name": "itertools", + "library_target_name": "ipnetwork", "common_attrs": { "compile_data_glob": [ "**" ], "crate_features": { "common": [ - "use_alloc" + "default", + "serde" ], "selects": {} }, "deps": { "common": [ { - "id": "either 1.9.0", - "target": "either" + "id": "serde 1.0.186", + "target": "serde" } ], "selects": {} }, - "edition": "2018", - "version": "0.10.5" + "edition": "2021", + "version": "0.20.0" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": "LICENSE-APACHE.md" }, - "itertools 0.11.0": { + "itertools 0.10.5": { "name": "itertools", - "version": "0.11.0", + "version": "0.10.5", "package_url": "https://github.com/rust-itertools/itertools", "repository": { "Http": { - "url": "https://static.crates.io/crates/itertools/0.11.0/download", - "sha256": "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" + "url": "https://static.crates.io/crates/itertools/0.10.5/download", + "sha256": "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" } }, "targets": [ @@ -9899,7 +9592,9 @@ ], "crate_features": { "common": [ - "use_alloc" + "default", + "use_alloc", + "use_std" ], "selects": {} }, @@ -9913,23 +9608,23 @@ "selects": {} }, "edition": "2018", - "version": "0.11.0" + "version": "0.10.5" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "itertools 0.12.1": { + "itertools 0.11.0": { "name": "itertools", - "version": "0.12.1", + "version": "0.11.0", "package_url": "https://github.com/rust-itertools/itertools", "repository": { "Http": { - "url": "https://static.crates.io/crates/itertools/0.12.1/download", - "sha256": "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" + "url": "https://static.crates.io/crates/itertools/0.11.0/download", + "sha256": "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" } }, "targets": [ @@ -9969,7 +9664,7 @@ "selects": {} }, "edition": "2018", - "version": "0.12.1" + "version": "0.11.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -10166,7 +9861,7 @@ "target": "quick_xml" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -10263,14 +9958,14 @@ ], "license_file": "LICENSE-APACHE" }, - "leptos 0.6.9": { + "leptos 0.5.4": { "name": "leptos", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos/0.6.9/download", - "sha256": "56d079555ff18158a1ed28d2a8ac529b4cb5904490384064346eb2d321addde6" + "url": "https://static.crates.io/crates/leptos/0.5.4/download", + "sha256": "9d02b78d6e38acf8199426058a0d8c4030835d84a4ee16147df25be7fed707e0" } }, "targets": [ @@ -10296,7 +9991,8 @@ "common": [ "default", "serde", - "ssr" + "ssr", + "tracing" ], "selects": {} }, @@ -10307,23 +10003,23 @@ "target": "cfg_if" }, { - "id": "leptos_config 0.6.9", + "id": "leptos_config 0.5.4", "target": "leptos_config" }, { - "id": "leptos_dom 0.6.9", + "id": "leptos_dom 0.5.4", "target": "leptos_dom" }, { - "id": "leptos_reactive 0.6.9", + "id": "leptos_reactive 0.5.4", "target": "leptos_reactive" }, { - "id": "leptos_server 0.6.9", + "id": "leptos_server 0.5.4", "target": "leptos_server" }, { - "id": "server_fn 0.6.9", + "id": "server_fn 0.5.4", "target": "server_fn" }, { @@ -10345,7 +10041,7 @@ "proc_macro_deps": { "common": [ { - "id": "leptos_macro 0.6.9", + "id": "leptos_macro 0.5.4", "target": "leptos_macro" }, { @@ -10355,7 +10051,7 @@ ], "selects": {} }, - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -10363,14 +10059,14 @@ ], "license_file": null }, - "leptos_actix 0.6.9": { + "leptos_actix 0.5.4": { "name": "leptos_actix", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_actix/0.6.9/download", - "sha256": "9edb4789a15864a26d695038f42dcdf1d1c32d3a1f537751ce177c97f4f5e3dd" + "url": "https://static.crates.io/crates/leptos_actix/0.5.4/download", + "sha256": "67b2b118a031de24b39be9ef2dcfa03e7e255e98d06a8aa2c53f220155424cf1" } }, "targets": [ @@ -10407,19 +10103,19 @@ "target": "futures" }, { - "id": "leptos 0.6.9", + "id": "leptos 0.5.4", "target": "leptos" }, { - "id": "leptos_integration_utils 0.6.9", + "id": "leptos_integration_utils 0.5.4", "target": "leptos_integration_utils" }, { - "id": "leptos_meta 0.6.9", + "id": "leptos_meta 0.5.4", "target": "leptos_meta" }, { - "id": "leptos_router 0.6.9", + "id": "leptos_router 0.5.4", "target": "leptos_router" }, { @@ -10434,32 +10130,19 @@ "id": "serde_json 1.0.108", "target": "serde_json" }, - { - "id": "server_fn 0.6.9", - "target": "server_fn" - }, { "id": "tokio 1.32.0", "target": "tokio" }, { - "id": "tracing 0.1.40", - "target": "tracing" - } - ], - "selects": {} - }, - "edition": "2021", - "proc_macro_deps": { - "common": [ - { - "id": "leptos_macro 0.6.9", - "target": "leptos_macro" + "id": "tracing 0.1.40", + "target": "tracing" } ], "selects": {} }, - "version": "0.6.9" + "edition": "2021", + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -10467,14 +10150,14 @@ ], "license_file": null }, - "leptos_config 0.6.9": { + "leptos_config 0.5.4": { "name": "leptos_config", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_config/0.6.9/download", - "sha256": "2d80b4ed5f0447996b9a28879002f995d3770687630f568be41307f362f84cb7" + "url": "https://static.crates.io/crates/leptos_config/0.5.4/download", + "sha256": "afcaa5db5b22b794b624e14ffe2aefae215b2d21c60a230ae2d06fe21ae5da64" } }, "targets": [ @@ -10499,7 +10182,7 @@ "deps": { "common": [ { - "id": "config 0.14.0", + "id": "config 0.13.3", "target": "config" }, { @@ -10507,7 +10190,7 @@ "target": "regex" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -10522,7 +10205,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -10530,14 +10213,14 @@ ], "license_file": null }, - "leptos_dom 0.6.9": { + "leptos_dom 0.5.4": { "name": "leptos_dom", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_dom/0.6.9/download", - "sha256": "2a4b4da3cb6a4dde22e68717482a4b926fb5dd182c12461b27efa37764b29d9a" + "url": "https://static.crates.io/crates/leptos_dom/0.5.4/download", + "sha256": "af459b63567e8e9c921ecbe7863732dc8dcb7874eaad6826b7d3778a53ec0ea6" } }, "targets": [ @@ -10589,7 +10272,7 @@ "target": "indexmap" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.10.5", "target": "itertools" }, { @@ -10597,7 +10280,7 @@ "target": "js_sys" }, { - "id": "leptos_reactive 0.6.9", + "id": "leptos_reactive 0.5.4", "target": "leptos_reactive" }, { @@ -10613,7 +10296,7 @@ "target": "rustc_hash" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -10621,7 +10304,7 @@ "target": "serde_json" }, { - "id": "server_fn 0.6.9", + "id": "server_fn 0.5.4", "target": "server_fn" }, { @@ -10668,7 +10351,7 @@ ], "selects": {} }, - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -10676,14 +10359,14 @@ ], "license_file": null }, - "leptos_hot_reload 0.6.9": { + "leptos_hot_reload 0.5.4": { "name": "leptos_hot_reload", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_hot_reload/0.6.9/download", - "sha256": "fb051c7b3bce8368ee30fb57e7b14cdcd573019ea6cd1858b9c697a3519ea099" + "url": "https://static.crates.io/crates/leptos_hot_reload/0.5.4/download", + "sha256": "4ea60376eb80a24b3ab082612d62211e3ea0fc4dee132f7ff34d5fa5a5108cd2" } }, "targets": [ @@ -10724,11 +10407,11 @@ "target": "parking_lot" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -10736,11 +10419,11 @@ "target": "rstml" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -10751,7 +10434,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -10759,14 +10442,14 @@ ], "license_file": null }, - "leptos_integration_utils 0.6.9": { + "leptos_integration_utils 0.5.4": { "name": "leptos_integration_utils", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_integration_utils/0.6.9/download", - "sha256": "ff00799857159434d31b6bd1898e21c63f69f39289621da5a554fcab1c3e7300" + "url": "https://static.crates.io/crates/leptos_integration_utils/0.5.4/download", + "sha256": "c2dbbd7d721bcdd9aa7b20987063de41314c836a3ac67e263ca489857e337dec" } }, "targets": [ @@ -10795,19 +10478,19 @@ "target": "futures" }, { - "id": "leptos 0.6.9", + "id": "leptos 0.5.4", "target": "leptos" }, { - "id": "leptos_config 0.6.9", + "id": "leptos_config 0.5.4", "target": "leptos_config" }, { - "id": "leptos_hot_reload 0.6.9", + "id": "leptos_hot_reload 0.5.4", "target": "leptos_hot_reload" }, { - "id": "leptos_meta 0.6.9", + "id": "leptos_meta 0.5.4", "target": "leptos_meta" }, { @@ -10818,7 +10501,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -10826,14 +10509,14 @@ ], "license_file": null }, - "leptos_macro 0.6.9": { + "leptos_macro 0.5.4": { "name": "leptos_macro", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_macro/0.6.9/download", - "sha256": "e82c33c8baa07a36c1f0d6149af821be885e6863779bcb24954bf865ad8402b4" + "url": "https://static.crates.io/crates/leptos_macro/0.5.4/download", + "sha256": "a7e96f4c450f4b5e2ccb135c2b1328890f911ca4ee89da9ed6d582df929e6cb5" } }, "targets": [ @@ -10857,8 +10540,8 @@ ], "crate_features": { "common": [ - "actix", - "ssr" + "ssr", + "tracing" ], "selects": {} }, @@ -10881,11 +10564,11 @@ "target": "html_escape" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.11.0", "target": "itertools" }, { - "id": "leptos_hot_reload 0.6.9", + "id": "leptos_hot_reload 0.5.4", "target": "leptos_hot_reload" }, { @@ -10897,11 +10580,11 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -10909,11 +10592,11 @@ "target": "rstml" }, { - "id": "server_fn_macro 0.6.9", + "id": "server_fn_macro 0.5.4", "target": "server_fn_macro" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -10928,7 +10611,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -10936,14 +10619,14 @@ ], "license_file": null }, - "leptos_meta 0.6.9": { + "leptos_meta 0.5.4": { "name": "leptos_meta", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_meta/0.6.9/download", - "sha256": "12b9dac59a2f88f5235dbe17cfa81b738a6f47238a64e4f23b921f1a90a9bf11" + "url": "https://static.crates.io/crates/leptos_meta/0.5.4/download", + "sha256": "983bbf829598d275b01e96bd9fca71e4739dd7b9fdf69cb8898b30ebfb124332" } }, "targets": [ @@ -10983,7 +10666,7 @@ "target": "indexmap" }, { - "id": "leptos 0.6.9", + "id": "leptos 0.5.4", "target": "leptos" }, { @@ -11002,7 +10685,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -11010,14 +10693,14 @@ ], "license_file": null }, - "leptos_reactive 0.6.9": { + "leptos_reactive 0.5.4": { "name": "leptos_reactive", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_reactive/0.6.9/download", - "sha256": "93bdcebc9822cc22a72cc9528dd794e1396152c75749ee09959f8272a8c99657" + "url": "https://static.crates.io/crates/leptos_reactive/0.5.4/download", + "sha256": "22207568e096ac153ba8da68635e3136c1ec614ea9012736fa861c05bfb2eeff" } }, "targets": [ @@ -11078,11 +10761,11 @@ "target": "self_cell" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { - "id": "serde-wasm-bindgen 0.6.5", + "id": "serde-wasm-bindgen 0.5.0", "target": "serde_wasm_bindgen" }, { @@ -11125,7 +10808,7 @@ ], "selects": {} }, - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -11133,14 +10816,14 @@ ], "license_file": null }, - "leptos_router 0.6.9": { + "leptos_router 0.5.4": { "name": "leptos_router", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_router/0.6.9/download", - "sha256": "9460a5dc184fa05d8eb635b687ad3220d02d2d23d6f49c3bf146aa71e427f423" + "url": "https://static.crates.io/crates/leptos_router/0.5.4/download", + "sha256": "c1a2ff8b8e8ae8b17efd8be2a407f7f83ed57c5243f70f2d03e6635f9ff61848" } }, "targets": [ @@ -11184,7 +10867,7 @@ "target": "gloo_net" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.11.0", "target": "itertools" }, { @@ -11196,15 +10879,15 @@ "target": "lazy_static" }, { - "id": "leptos 0.6.9", + "id": "leptos 0.5.4", "target": "leptos" }, { - "id": "leptos_integration_utils 0.6.9", + "id": "leptos_integration_utils 0.5.4", "target": "leptos_integration_utils" }, { - "id": "leptos_meta 0.6.9", + "id": "leptos_meta 0.5.4", "target": "leptos_meta" }, { @@ -11228,11 +10911,7 @@ "target": "regex" }, { - "id": "send_wrapper 0.6.0", - "target": "send_wrapper" - }, - { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -11271,7 +10950,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -11279,14 +10958,14 @@ ], "license_file": null }, - "leptos_server 0.6.9": { + "leptos_server 0.5.4": { "name": "leptos_server", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_server/0.6.9/download", - "sha256": "654b6ff6a24e79977641b5214452373b1e12fdf4c8a563fadf656c139694b4b9" + "url": "https://static.crates.io/crates/leptos_server/0.5.4/download", + "sha256": "272d018a5adf33d10ee57e6f0f83dccc305c68613cd207e8a653aeebd4cd5b4f" } }, "targets": [ @@ -11325,15 +11004,15 @@ "target": "lazy_static" }, { - "id": "leptos_reactive 0.6.9", + "id": "leptos_reactive 0.5.4", "target": "leptos_reactive" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { - "id": "server_fn 0.6.9", + "id": "server_fn 0.5.4", "target": "server_fn" }, { @@ -11351,13 +11030,13 @@ "proc_macro_deps": { "common": [ { - "id": "leptos_macro 0.6.9", + "id": "leptos_macro 0.5.4", "target": "leptos_macro" } ], "selects": {} }, - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -11721,7 +11400,7 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -12185,11 +11864,11 @@ "target": "fnv" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -12197,7 +11876,7 @@ "target": "regex_syntax" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -12355,15 +12034,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn", "alias": "syn2" } @@ -12426,11 +12105,11 @@ "target": "proc_macro_utils" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" } ], @@ -12642,7 +12321,7 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -12704,11 +12383,11 @@ "target": "migrations_internals" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" } ], @@ -14330,15 +14009,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -14693,7 +14372,7 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { @@ -14767,11 +14446,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -14849,11 +14528,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -14944,11 +14623,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" } ], @@ -15021,11 +14700,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -15045,14 +14724,14 @@ ], "license_file": "LICENSE-APACHE" }, - "proc-macro2 1.0.78": { + "proc-macro2 1.0.66": { "name": "proc-macro2", - "version": "1.0.78", + "version": "1.0.66", "package_url": "https://github.com/dtolnay/proc-macro2", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.78/download", - "sha256": "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" + "url": "https://static.crates.io/crates/proc-macro2/1.0.66/download", + "sha256": "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" } }, "targets": [ @@ -15098,7 +14777,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "build_script_build" }, { @@ -15109,7 +14788,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.78" + "version": "1.0.66" }, "build_script_attrs": { "data_glob": [ @@ -15175,7 +14854,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { @@ -15183,11 +14862,11 @@ "target": "build_script_build" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -15345,15 +15024,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -15650,11 +15329,11 @@ "target": "itertools" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -15713,15 +15392,15 @@ "target": "itertools" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -15801,7 +15480,7 @@ "target": "prost_types" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde", "alias": "serde1" }, @@ -15863,15 +15542,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -16135,7 +15814,7 @@ "target": "regex" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -16208,14 +15887,14 @@ ], "license_file": "LICENSE-MIT.md" }, - "quote 1.0.35": { + "quote 1.0.32": { "name": "quote", - "version": "1.0.35", + "version": "1.0.32", "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.35/download", - "sha256": "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" + "url": "https://static.crates.io/crates/quote/1.0.32/download", + "sha256": "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" } }, "targets": [ @@ -16247,14 +15926,14 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" } ], "selects": {} }, "edition": "2018", - "version": "1.0.35" + "version": "1.0.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -16305,15 +15984,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -17256,6 +16935,161 @@ ], "license_file": null }, + "reqwest 0.11.18": { + "name": "reqwest", + "version": "0.11.18", + "package_url": "https://github.com/seanmonstar/reqwest", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/reqwest/0.11.18/download", + "sha256": "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" + } + }, + "targets": [ + { + "Library": { + "crate_name": "reqwest", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "reqwest", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "base64 0.21.2", + "target": "base64" + }, + { + "id": "bytes 1.4.0", + "target": "bytes" + }, + { + "id": "futures-core 0.3.29", + "target": "futures_core" + }, + { + "id": "futures-util 0.3.29", + "target": "futures_util" + }, + { + "id": "http 0.2.9", + "target": "http" + }, + { + "id": "serde 1.0.186", + "target": "serde" + }, + { + "id": "serde_urlencoded 0.7.1", + "target": "serde_urlencoded" + }, + { + "id": "tower-service 0.3.2", + "target": "tower_service" + }, + { + "id": "url 2.5.0", + "target": "url" + } + ], + "selects": { + "cfg(not(target_arch = \"wasm32\"))": [ + { + "id": "encoding_rs 0.8.32", + "target": "encoding_rs" + }, + { + "id": "h2 0.3.24", + "target": "h2" + }, + { + "id": "http-body 0.4.5", + "target": "http_body" + }, + { + "id": "hyper 0.14.27", + "target": "hyper" + }, + { + "id": "ipnet 2.8.0", + "target": "ipnet" + }, + { + "id": "log 0.4.20", + "target": "log" + }, + { + "id": "mime 0.3.17", + "target": "mime" + }, + { + "id": "once_cell 1.18.0", + "target": "once_cell" + }, + { + "id": "percent-encoding 2.3.1", + "target": "percent_encoding" + }, + { + "id": "pin-project-lite 0.2.12", + "target": "pin_project_lite" + }, + { + "id": "tokio 1.32.0", + "target": "tokio" + } + ], + "cfg(target_arch = \"wasm32\")": [ + { + "id": "js-sys 0.3.64", + "target": "js_sys" + }, + { + "id": "serde_json 1.0.108", + "target": "serde_json" + }, + { + "id": "wasm-bindgen 0.2.87", + "target": "wasm_bindgen" + }, + { + "id": "wasm-bindgen-futures 0.4.37", + "target": "wasm_bindgen_futures" + }, + { + "id": "web-sys 0.3.64", + "target": "web_sys" + } + ], + "cfg(windows)": [ + { + "id": "winreg 0.10.1", + "target": "winreg" + } + ] + } + }, + "edition": "2018", + "version": "0.11.18" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "rstml 0.11.0": { "name": "rstml", "version": "0.11.0", @@ -17288,7 +17122,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { @@ -17296,11 +17130,11 @@ "target": "proc_macro2_diagnostics" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -18009,69 +17843,14 @@ ], "license_file": "LICENSE-APACHE" }, - "send_wrapper 0.6.0": { - "name": "send_wrapper", - "version": "0.6.0", - "package_url": "https://github.com/thk1/send_wrapper", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/send_wrapper/0.6.0/download", - "sha256": "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" - } - }, - "targets": [ - { - "Library": { - "crate_name": "send_wrapper", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": false, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "send_wrapper", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "futures", - "futures-core" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "futures-core 0.3.29", - "target": "futures_core" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.6.0" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE.txt" - }, - "serde 1.0.197": { + "serde 1.0.186": { "name": "serde", - "version": "1.0.197", + "version": "1.0.186", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde/1.0.197/download", - "sha256": "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" + "url": "https://static.crates.io/crates/serde/1.0.186/download", + "sha256": "9f5db24220c009de9bd45e69fb2938f4b6d2df856aa9304ce377b3180f83b7c1" } }, "targets": [ @@ -18118,7 +17897,7 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "build_script_build" } ], @@ -18128,13 +17907,13 @@ "proc_macro_deps": { "common": [ { - "id": "serde_derive 1.0.197", + "id": "serde_derive 1.0.186", "target": "serde_derive" } ], "selects": {} }, - "version": "1.0.197" + "version": "1.0.186" }, "build_script_attrs": { "data_glob": [ @@ -18184,7 +17963,7 @@ "target": "ordered_float" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" } ], @@ -18199,14 +17978,14 @@ ], "license_file": null }, - "serde-wasm-bindgen 0.6.5": { + "serde-wasm-bindgen 0.5.0": { "name": "serde-wasm-bindgen", - "version": "0.6.5", - "package_url": "https://github.com/RReverser/serde-wasm-bindgen", + "version": "0.5.0", + "package_url": "https://github.com/cloudflare/serde-wasm-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde-wasm-bindgen/0.6.5/download", - "sha256": "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" + "url": "https://static.crates.io/crates/serde-wasm-bindgen/0.5.0/download", + "sha256": "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e" } }, "targets": [ @@ -18235,7 +18014,7 @@ "target": "js_sys" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -18246,7 +18025,7 @@ "selects": {} }, "edition": "2018", - "version": "0.6.5" + "version": "0.5.0" }, "license": "MIT", "license_ids": [ @@ -18254,14 +18033,14 @@ ], "license_file": "LICENSE" }, - "serde_derive 1.0.197": { + "serde_derive 1.0.186": { "name": "serde_derive", - "version": "1.0.197", + "version": "1.0.186", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_derive/1.0.197/download", - "sha256": "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" + "url": "https://static.crates.io/crates/serde_derive/1.0.186/download", + "sha256": "5ad697f7e0b65af4983a4ce8f56ed5b357e8d3c36651bf6a7e13639c17b8e670" } }, "targets": [ @@ -18292,22 +18071,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], "selects": {} }, "edition": "2015", - "version": "1.0.197" + "version": "1.0.186" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -18375,7 +18154,7 @@ "target": "ryu" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -18442,7 +18221,7 @@ "target": "percent_encoding" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -18500,7 +18279,7 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" } ], @@ -18548,7 +18327,7 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" } ], @@ -18608,7 +18387,7 @@ "target": "ryu" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" } ], @@ -18624,14 +18403,14 @@ ], "license_file": "LICENSE-APACHE" }, - "server_fn 0.6.9": { + "server_fn 0.5.4": { "name": "server_fn", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/server_fn/0.6.9/download", - "sha256": "2955da1dc5fcd970c182ebf1089af6c5f19051e1f286a21f7b96490a49b7a531" + "url": "https://static.crates.io/crates/server_fn/0.5.4/download", + "sha256": "cfed18dfcc8d9004579c40482c3419c07f60ffb9c5b250542edca99f508b0ce9" } }, "targets": [ @@ -18655,28 +18434,13 @@ ], "crate_features": { "common": [ - "actix", - "browser", - "cbor", - "default", - "form-redirects", "inventory", - "json", - "ssr", - "url" + "ssr" ], "selects": {} }, "deps": { "common": [ - { - "id": "actix-web 4.5.1", - "target": "actix_web" - }, - { - "id": "bytes 1.4.0", - "target": "bytes" - }, { "id": "ciborium 0.2.1", "target": "ciborium" @@ -18685,40 +18449,24 @@ "id": "const_format 0.2.31", "target": "const_format" }, - { - "id": "dashmap 5.5.3", - "target": "dashmap" - }, - { - "id": "futures 0.3.29", - "target": "futures" - }, - { - "id": "gloo-net 0.5.0", - "target": "gloo_net" - }, - { - "id": "http 1.1.0", - "target": "http" - }, { "id": "inventory 0.3.11", "target": "inventory" }, { - "id": "js-sys 0.3.64", - "target": "js_sys" + "id": "lazy_static 1.4.0", + "target": "lazy_static" }, { - "id": "once_cell 1.18.0", - "target": "once_cell" + "id": "proc-macro2 1.0.66", + "target": "proc_macro2" }, { - "id": "send_wrapper 0.6.0", - "target": "send_wrapper" + "id": "quote 1.0.32", + "target": "quote" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -18730,47 +18478,52 @@ "target": "serde_qs" }, { - "id": "thiserror 1.0.44", - "target": "thiserror" - }, - { - "id": "url 2.5.0", - "target": "url" - }, - { - "id": "wasm-bindgen 0.2.87", - "target": "wasm_bindgen" - }, - { - "id": "wasm-bindgen-futures 0.4.37", - "target": "wasm_bindgen_futures" - }, - { - "id": "wasm-streams 0.4.0", - "target": "wasm_streams" + "id": "syn 2.0.32", + "target": "syn" }, { - "id": "web-sys 0.3.64", - "target": "web_sys" + "id": "thiserror 1.0.44", + "target": "thiserror" }, { "id": "xxhash-rust 0.8.6", "target": "xxhash_rust" } ], - "selects": {} + "selects": { + "cfg(not(target_arch = \"wasm32\"))": [ + { + "id": "once_cell 1.18.0", + "target": "once_cell" + }, + { + "id": "reqwest 0.11.18", + "target": "reqwest" + } + ], + "cfg(target_arch = \"wasm32\")": [ + { + "id": "gloo-net 0.2.6", + "target": "gloo_net" + }, + { + "id": "js-sys 0.3.64", + "target": "js_sys" + } + ] + } }, "edition": "2021", "proc_macro_deps": { "common": [ { - "id": "server_fn_macro_default 0.6.9", + "id": "server_fn_macro_default 0.5.4", "target": "server_fn_macro_default" } ], "selects": {} }, - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -18778,14 +18531,14 @@ ], "license_file": null }, - "server_fn_macro 0.6.9": { + "server_fn_macro 0.5.4": { "name": "server_fn_macro", - "version": "0.6.9", - "package_url": null, + "version": "0.5.4", + "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/server_fn_macro/0.6.9/download", - "sha256": "adfdd051ef905fdb3da20942b0c52d536158d7489a724e14cc2fd47323e7ca91" + "url": "https://static.crates.io/crates/server_fn_macro/0.5.4/download", + "sha256": "0b70ae8e22546ba85500391b36c08e3fba64871be8a26557a3663a8e08acb56f" } }, "targets": [ @@ -18809,7 +18562,6 @@ ], "crate_features": { "common": [ - "actix", "ssr" ], "selects": {} @@ -18821,19 +18573,23 @@ "target": "const_format" }, { - "id": "convert_case 0.6.0", - "target": "convert_case" + "id": "proc-macro-error 1.0.4", + "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "serde 1.0.186", + "target": "serde" + }, + { + "id": "syn 2.0.32", "target": "syn" }, { @@ -18850,7 +18606,7 @@ }, "selects": {} }, - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -18858,14 +18614,14 @@ ], "license_file": null }, - "server_fn_macro_default 0.6.9": { + "server_fn_macro_default 0.5.4": { "name": "server_fn_macro_default", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/server_fn_macro_default/0.6.9/download", - "sha256": "060af1def72353a779fcc184c53e1965d3055a38b9e827f2259b2bff2d9c371e" + "url": "https://static.crates.io/crates/server_fn_macro_default/0.5.4/download", + "sha256": "7256ba61dfadb220598db418376e7bc2a34b96df36c4dc48f24ffe161810fc0b" } }, "targets": [ @@ -18890,18 +18646,18 @@ "deps": { "common": [ { - "id": "server_fn_macro 0.6.9", + "id": "server_fn_macro 0.5.4", "target": "server_fn_macro" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -19240,7 +18996,7 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -19634,11 +19390,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -19667,14 +19423,14 @@ ], "license_file": "LICENSE-APACHE" }, - "syn 2.0.52": { + "syn 2.0.32": { "name": "syn", - "version": "2.0.52", + "version": "2.0.32", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.52/download", - "sha256": "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07" + "url": "https://static.crates.io/crates/syn/2.0.32/download", + "sha256": "239814284fd6f1a4ffe4ca893952cdd93c224b6a1571c9a9eadd670295c0c9e2" } }, "targets": [ @@ -19716,11 +19472,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -19731,7 +19487,7 @@ "selects": {} }, "edition": "2021", - "version": "2.0.52" + "version": "2.0.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -19776,15 +19532,15 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -20123,15 +19879,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -20401,7 +20157,7 @@ "target": "powerfmt" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -20843,15 +20599,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -21005,14 +20761,14 @@ ], "license_file": "LICENSE" }, - "toml 0.7.8": { + "toml 0.5.11": { "name": "toml", - "version": "0.7.8", + "version": "0.5.11", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml/0.7.8/download", - "sha256": "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" + "url": "https://static.crates.io/crates/toml/0.5.11/download", + "sha256": "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" } }, "targets": [ @@ -21036,51 +20792,37 @@ ], "crate_features": { "common": [ - "default", - "display", - "parse" + "default" ], "selects": {} }, "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" - }, - { - "id": "serde_spanned 0.6.5", - "target": "serde_spanned" - }, - { - "id": "toml_datetime 0.6.5", - "target": "toml_datetime" - }, - { - "id": "toml_edit 0.19.15", - "target": "toml_edit" } ], "selects": {} }, - "edition": "2021", - "version": "0.7.8" + "edition": "2018", + "version": "0.5.11" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "toml 0.8.10": { + "toml 0.7.8": { "name": "toml", - "version": "0.8.10", + "version": "0.7.8", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml/0.8.10/download", - "sha256": "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" + "url": "https://static.crates.io/crates/toml/0.7.8/download", + "sha256": "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" } }, "targets": [ @@ -21113,7 +20855,7 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -21125,14 +20867,14 @@ "target": "toml_datetime" }, { - "id": "toml_edit 0.22.6", + "id": "toml_edit 0.19.15", "target": "toml_edit" } ], "selects": {} }, "edition": "2021", - "version": "0.8.10" + "version": "0.7.8" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -21179,7 +20921,7 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" } ], @@ -21238,7 +20980,7 @@ "target": "indexmap" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -21266,78 +21008,6 @@ ], "license_file": "LICENSE-APACHE" }, - "toml_edit 0.22.6": { - "name": "toml_edit", - "version": "0.22.6", - "package_url": "https://github.com/toml-rs/toml", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/toml_edit/0.22.6/download", - "sha256": "2c1b5fd4128cc8d3e0cb74d4ed9a9cc7c7284becd4df68f5f940e1ad123606f6" - } - }, - "targets": [ - { - "Library": { - "crate_name": "toml_edit", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": false, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "toml_edit", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "display", - "parse", - "serde" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "indexmap 2.0.0", - "target": "indexmap" - }, - { - "id": "serde 1.0.197", - "target": "serde" - }, - { - "id": "serde_spanned 0.6.5", - "target": "serde_spanned" - }, - { - "id": "toml_datetime 0.6.5", - "target": "toml_datetime" - }, - { - "id": "winnow 0.6.5", - "target": "winnow" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.22.6" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "tonic 0.10.2": { "name": "tonic", "version": "0.10.2", @@ -21517,7 +21187,7 @@ "target": "prettyplease" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { @@ -21525,7 +21195,7 @@ "target": "prost_build" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -21976,15 +21646,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -22217,7 +21887,7 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -22314,7 +21984,7 @@ "target": "regex" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -22479,15 +22149,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -23172,15 +22842,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -23688,15 +23358,15 @@ "target": "once_cell" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -23817,7 +23487,7 @@ "deps": { "common": [ { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { @@ -23875,15 +23545,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -23973,70 +23643,6 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-streams 0.4.0": { - "name": "wasm-streams", - "version": "0.4.0", - "package_url": "https://github.com/MattiasBuelens/wasm-streams/", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasm-streams/0.4.0/download", - "sha256": "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasm_streams", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": false, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasm_streams", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "futures-util 0.3.29", - "target": "futures_util" - }, - { - "id": "js-sys 0.3.64", - "target": "js_sys" - }, - { - "id": "wasm-bindgen 0.2.87", - "target": "wasm_bindgen" - }, - { - "id": "wasm-bindgen-futures 0.4.37", - "target": "wasm_bindgen_futures" - }, - { - "id": "web-sys 0.3.64", - "target": "web_sys" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.4.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "web-sys 0.3.64": { "name": "web-sys", "version": "0.3.64", @@ -24185,19 +23791,8 @@ "PopStateEvent", "ProgressEvent", "PromiseRejectionEvent", - "QueuingStrategy", "Range", - "ReadableByteStreamController", "ReadableStream", - "ReadableStreamByobReader", - "ReadableStreamByobRequest", - "ReadableStreamDefaultController", - "ReadableStreamDefaultReader", - "ReadableStreamGetReaderOptions", - "ReadableStreamReadResult", - "ReadableStreamReaderMode", - "ReadableStreamType", - "ReadableWritablePair", "ReferrerPolicy", "Request", "RequestCache", @@ -24206,35 +23801,25 @@ "RequestMode", "RequestRedirect", "Response", - "ResponseInit", "ResponseType", "SecurityPolicyViolationEvent", "ShadowRoot", "ShadowRootInit", "ShadowRootMode", "StorageEvent", - "StreamPipeOptions", "SubmitEvent", "SvgElement", "Text", "TouchEvent", - "TransformStream", - "TransformStreamDefaultController", - "Transformer", "TransitionEvent", "TreeWalker", "UiEvent", - "UnderlyingSink", - "UnderlyingSource", "Url", "UrlSearchParams", "WebSocket", "WheelEvent", "Window", "WorkerGlobalScope", - "WritableStream", - "WritableStreamDefaultController", - "WritableStreamDefaultWriter", "console" ], "selects": {} @@ -24367,16 +23952,21 @@ "errhandlingapi", "fileapi", "handleapi", + "impl-debug", + "impl-default", + "minwinbase", "minwindef", "ntsecapi", "ntstatus", "processenv", "profileapi", "std", + "timezoneapi", "winbase", "wincon", "winerror", "winnt", + "winreg", "ws2ipdef", "ws2tcpip" ], @@ -25302,20 +24892,20 @@ ], "license_file": "LICENSE-MIT" }, - "winnow 0.6.5": { - "name": "winnow", - "version": "0.6.5", - "package_url": "https://github.com/winnow-rs/winnow", + "winreg 0.10.1": { + "name": "winreg", + "version": "0.10.1", + "package_url": "https://github.com/gentoo90/winreg-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winnow/0.6.5/download", - "sha256": "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" + "url": "https://static.crates.io/crates/winreg/0.10.1/download", + "sha256": "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" } }, "targets": [ { "Library": { - "crate_name": "winnow", + "crate_name": "winreg", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -25324,29 +24914,51 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } } ], - "library_target_name": "winnow", + "library_target_name": "winreg", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { + "deps": { "common": [ - "alloc", - "default", - "std" + { + "id": "winapi 0.3.9", + "target": "winapi" + }, + { + "id": "winreg 0.10.1", + "target": "build_script_build" + } ], "selects": {} }, - "edition": "2021", - "version": "0.6.5" + "edition": "2015", + "version": "0.10.1" + }, + "build_script_attrs": { + "data_glob": [ + "**" + ] }, "license": "MIT", "license_ids": [ "MIT" ], - "license_file": "LICENSE-MIT" + "license_file": "LICENSE" }, "xxhash-rust 0.8.6": { "name": "xxhash-rust", @@ -25528,15 +25140,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.32", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -26093,6 +25705,40 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], + "cfg(not(target_arch = \"wasm32\"))": [ + "aarch64-apple-darwin", + "aarch64-apple-ios", + "aarch64-apple-ios-sim", + "aarch64-fuchsia", + "aarch64-linux-android", + "aarch64-pc-windows-msvc", + "aarch64-unknown-linux-gnu", + "aarch64-unknown-nixos-gnu", + "aarch64-unknown-nto-qnx710", + "arm-unknown-linux-gnueabi", + "armv7-linux-androideabi", + "armv7-unknown-linux-gnueabi", + "i686-apple-darwin", + "i686-linux-android", + "i686-pc-windows-msvc", + "i686-unknown-freebsd", + "i686-unknown-linux-gnu", + "powerpc-unknown-linux-gnu", + "riscv32imc-unknown-none-elf", + "riscv64gc-unknown-none-elf", + "s390x-unknown-linux-gnu", + "thumbv7em-none-eabi", + "thumbv8m.main-none-eabi", + "x86_64-apple-darwin", + "x86_64-apple-ios", + "x86_64-fuchsia", + "x86_64-linux-android", + "x86_64-pc-windows-msvc", + "x86_64-unknown-freebsd", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu", + "x86_64-unknown-none" + ], "cfg(not(target_family = \"wasm\"))": [ "aarch64-apple-darwin", "aarch64-apple-ios", @@ -26316,10 +25962,10 @@ "humantime 2.1.0", "junit-parser 1.0.0", "lazy_static 1.4.0", - "leptos 0.6.9", - "leptos_actix 0.6.9", - "leptos_meta 0.6.9", - "leptos_router 0.6.9", + "leptos 0.5.4", + "leptos_actix 0.5.4", + "leptos_meta 0.5.4", + "leptos_router 0.5.4", "log 0.4.20", "prometheus-client 0.22.2", "prost 0.12.3", @@ -26329,7 +25975,7 @@ "protoc-gen-tonic 0.3.0", "r2d2 0.8.10", "scopeguard 1.2.0", - "serde 1.0.197", + "serde 1.0.186", "serde_json 1.0.108", "tempdir 0.3.7", "tikv-jemallocator 0.5.4", diff --git a/third_party/rust/Cargo.lock b/third_party/rust/Cargo.lock index 301c492..5199c56 100644 --- a/third_party/rust/Cargo.lock +++ b/third_party/rust/Cargo.lock @@ -63,7 +63,7 @@ dependencies = [ "flate2", "futures-core", "h2", - "http 0.2.9", + "http", "httparse", "httpdate", "itoa", @@ -88,7 +88,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e01ed3140b2f8d422c68afa1ed2e85d996ea619c988ac834d255db32138655cb" dependencies = [ "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -98,7 +98,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d66ff4d247d2b160861fa2866457e85706833527840e4133f8f49aa423a38799" dependencies = [ "bytestring", - "http 0.2.9", + "http", "regex", "serde", "tracing", @@ -350,7 +350,7 @@ checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -372,7 +372,7 @@ checksum = "16e62a023e7c117e27523144c5d2459f4397fcc3cab0085af8e2224f643a0193" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -383,7 +383,7 @@ checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -395,7 +395,7 @@ dependencies = [ "attribute-derive-macro", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -411,7 +411,7 @@ dependencies = [ "proc-macro2", "quote", "quote-use", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -431,7 +431,7 @@ dependencies = [ "bitflags 1.3.2", "bytes", "futures-util", - "http 0.2.9", + "http", "http-body", "hyper", "itoa", @@ -457,7 +457,7 @@ dependencies = [ "async-trait", "bytes", "futures-util", - "http 0.2.9", + "http", "http-body", "mime", "rustversion", @@ -719,7 +719,7 @@ dependencies = [ "heck", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -751,15 +751,16 @@ checksum = "acbf1af155f9b9ef647e42cdc158db4b64a1b61f743629225fde6f3e0be2a7c7" [[package]] name = "config" -version = "0.14.0" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7328b20597b53c2454f0b1919720c25c7339051c02b72b7e05409e00b14132be" +checksum = "d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7" dependencies = [ + "async-trait", "lazy_static", "nom", "pathdiff", "serde", - "toml 0.8.10", + "toml 0.5.11", ] [[package]] @@ -886,19 +887,6 @@ dependencies = [ "syn 1.0.109", ] -[[package]] -name = "dashmap" -version = "5.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" -dependencies = [ - "cfg-if 1.0.0", - "hashbrown 0.14.0", - "lock_api 0.4.10", - "once_cell", - "parking_lot_core 0.9.8", -] - [[package]] name = "deranged" version = "0.3.10" @@ -928,7 +916,7 @@ checksum = "5bc1955a640c4464859ae700fbe48e666da6fdce99ce5fe1acd08dd295889d10" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -989,7 +977,7 @@ dependencies = [ "diesel_table_macro_syntax", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1009,7 +997,7 @@ version = "0.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "fc5557efc453706fed5e4fa85006fe9817c224c3f480a34c7e5959fd700921c5" dependencies = [ - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1230,7 +1218,7 @@ checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1301,28 +1289,7 @@ dependencies = [ "futures-channel", "futures-core", "futures-sink", - "gloo-utils 0.1.7", - "js-sys", - "pin-project", - "serde", - "serde_json", - "thiserror", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "gloo-net" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43aaa242d1239a8822c15c645f02166398da4f8b5c4bae795c1f5b44e9eee173" -dependencies = [ - "futures-channel", - "futures-core", - "futures-sink", - "gloo-utils 0.2.0", - "http 0.2.9", + "gloo-utils", "js-sys", "pin-project", "serde", @@ -1346,19 +1313,6 @@ dependencies = [ "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 = "h2" version = "0.3.24" @@ -1370,7 +1324,7 @@ dependencies = [ "futures-core", "futures-sink", "futures-util", - "http 0.2.9", + "http", "indexmap 2.0.0", "slab", "tokio", @@ -1438,17 +1392,6 @@ dependencies = [ "itoa", ] -[[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 = "http-body" version = "0.4.5" @@ -1456,7 +1399,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "http 0.2.9", + "http", "pin-project-lite", ] @@ -1495,7 +1438,7 @@ dependencies = [ "futures-core", "futures-util", "h2", - "http 0.2.9", + "http", "http-body", "httparse", "httpdate", @@ -1600,6 +1543,12 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a53088c87cf71c9d4f3372a2cb9eea1e7b8a0b1bf8b7f7d23fe5b76dbb07e63b" +[[package]] +name = "ipnet" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" + [[package]] name = "ipnetwork" version = "0.20.0" @@ -1627,15 +1576,6 @@ dependencies = [ "either", ] -[[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.9" @@ -1685,9 +1625,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "leptos" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56d079555ff18158a1ed28d2a8ac529b4cb5904490384064346eb2d321addde6" +checksum = "9d02b78d6e38acf8199426058a0d8c4030835d84a4ee16147df25be7fed707e0" dependencies = [ "cfg-if 1.0.0", "leptos_config", @@ -1704,31 +1644,29 @@ dependencies = [ [[package]] name = "leptos_actix" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9edb4789a15864a26d695038f42dcdf1d1c32d3a1f537751ce177c97f4f5e3dd" +checksum = "67b2b118a031de24b39be9ef2dcfa03e7e255e98d06a8aa2c53f220155424cf1" dependencies = [ "actix-http", "actix-web", "futures", "leptos", "leptos_integration_utils", - "leptos_macro", "leptos_meta", "leptos_router", "parking_lot 0.12.1", "regex", "serde_json", - "server_fn", "tokio", "tracing", ] [[package]] name = "leptos_config" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d80b4ed5f0447996b9a28879002f995d3770687630f568be41307f362f84cb7" +checksum = "afcaa5db5b22b794b624e14ffe2aefae215b2d21c60a230ae2d06fe21ae5da64" dependencies = [ "config", "regex", @@ -1739,9 +1677,9 @@ dependencies = [ [[package]] name = "leptos_dom" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a4b4da3cb6a4dde22e68717482a4b926fb5dd182c12461b27efa37764b29d9a" +checksum = "af459b63567e8e9c921ecbe7863732dc8dcb7874eaad6826b7d3778a53ec0ea6" dependencies = [ "async-recursion", "cfg-if 1.0.0", @@ -1750,7 +1688,7 @@ dependencies = [ "getrandom", "html-escape", "indexmap 2.0.0", - "itertools 0.12.1", + "itertools 0.10.5", "js-sys", "leptos_reactive", "once_cell", @@ -1769,9 +1707,9 @@ dependencies = [ [[package]] name = "leptos_hot_reload" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb051c7b3bce8368ee30fb57e7b14cdcd573019ea6cd1858b9c697a3519ea099" +checksum = "4ea60376eb80a24b3ab082612d62211e3ea0fc4dee132f7ff34d5fa5a5108cd2" dependencies = [ "anyhow", "camino", @@ -1781,15 +1719,15 @@ dependencies = [ "quote", "rstml", "serde", - "syn 2.0.52", + "syn 2.0.32", "walkdir", ] [[package]] name = "leptos_integration_utils" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ff00799857159434d31b6bd1898e21c63f69f39289621da5a554fcab1c3e7300" +checksum = "c2dbbd7d721bcdd9aa7b20987063de41314c836a3ac67e263ca489857e337dec" dependencies = [ "futures", "leptos", @@ -1801,15 +1739,15 @@ dependencies = [ [[package]] name = "leptos_macro" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e82c33c8baa07a36c1f0d6149af821be885e6863779bcb24954bf865ad8402b4" +checksum = "a7e96f4c450f4b5e2ccb135c2b1328890f911ca4ee89da9ed6d582df929e6cb5" dependencies = [ "attribute-derive", "cfg-if 1.0.0", "convert_case 0.6.0", "html-escape", - "itertools 0.12.1", + "itertools 0.11.0", "leptos_hot_reload", "prettyplease 0.2.12", "proc-macro-error", @@ -1817,16 +1755,16 @@ dependencies = [ "quote", "rstml", "server_fn_macro", - "syn 2.0.52", + "syn 2.0.32", "tracing", "uuid", ] [[package]] name = "leptos_meta" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12b9dac59a2f88f5235dbe17cfa81b738a6f47238a64e4f23b921f1a90a9bf11" +checksum = "983bbf829598d275b01e96bd9fca71e4739dd7b9fdf69cb8898b30ebfb124332" dependencies = [ "cfg-if 1.0.0", "indexmap 2.0.0", @@ -1838,9 +1776,9 @@ dependencies = [ [[package]] name = "leptos_reactive" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93bdcebc9822cc22a72cc9528dd794e1396152c75749ee09959f8272a8c99657" +checksum = "22207568e096ac153ba8da68635e3136c1ec614ea9012736fa861c05bfb2eeff" dependencies = [ "base64", "cfg-if 1.0.0", @@ -1862,14 +1800,14 @@ dependencies = [ [[package]] name = "leptos_router" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9460a5dc184fa05d8eb635b687ad3220d02d2d23d6f49c3bf146aa71e427f423" +checksum = "c1a2ff8b8e8ae8b17efd8be2a407f7f83ed57c5243f70f2d03e6635f9ff61848" dependencies = [ "cached", "cfg-if 1.0.0", - "gloo-net 0.2.6", - "itertools 0.12.1", + "gloo-net", + "itertools 0.11.0", "js-sys", "lazy_static", "leptos", @@ -1880,7 +1818,6 @@ dependencies = [ "once_cell", "percent-encoding", "regex", - "send_wrapper", "serde", "serde_json", "serde_qs", @@ -1894,9 +1831,9 @@ dependencies = [ [[package]] name = "leptos_server" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "654b6ff6a24e79977641b5214452373b1e12fdf4c8a563fadf656c139694b4b9" +checksum = "272d018a5adf33d10ee57e6f0f83dccc305c68613cd207e8a653aeebd4cd5b4f" dependencies = [ "inventory", "lazy_static", @@ -2009,7 +1946,7 @@ dependencies = [ "proc-macro2", "quote", "regex-syntax 0.6.29", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -2039,7 +1976,7 @@ dependencies = [ "manyhow-macros", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -2338,7 +2275,7 @@ checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -2397,7 +2334,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c64d9ba0963cdcea2e1b2230fbae2bab30eb25a174be395c41e764bfb65dd62" dependencies = [ "proc-macro2", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -2437,9 +2374,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.78" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" dependencies = [ "unicode-ident", ] @@ -2452,7 +2389,7 @@ checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", "version_check", "yansi", ] @@ -2477,7 +2414,7 @@ checksum = "440f724eba9f6996b75d63681b0a92b06947f1457076d503a4d2e2c8f56442b8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -2545,7 +2482,7 @@ dependencies = [ "itertools 0.11.0", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -2572,7 +2509,7 @@ checksum = "172da1212c02be2c94901440cb27183cd92bff00ebacca5c323bf7520b8f9c04" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -2619,7 +2556,7 @@ dependencies = [ "prost-types 0.11.9", "protoc-gen-prost", "regex", - "syn 2.0.52", + "syn 2.0.32", "tonic-build", ] @@ -2634,9 +2571,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.35" +version = "1.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" +checksum = "50f3b39ccfb720540debaa0164757101c08ecb8d326b15358ce76a62c7e85965" dependencies = [ "proc-macro2", ] @@ -2650,7 +2587,7 @@ dependencies = [ "derive-where", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -2799,6 +2736,40 @@ dependencies = [ "winapi", ] +[[package]] +name = "reqwest" +version = "0.11.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" +dependencies = [ + "base64", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "hyper", + "ipnet", + "js-sys", + "log", + "mime", + "once_cell", + "percent-encoding", + "pin-project-lite", + "serde", + "serde_json", + "serde_urlencoded", + "tokio", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "winreg", +] + [[package]] name = "rstml" version = "0.11.0" @@ -2808,7 +2779,7 @@ dependencies = [ "proc-macro2", "proc-macro2-diagnostics", "quote", - "syn 2.0.52", + "syn 2.0.32", "syn_derive", "thiserror", ] @@ -2895,20 +2866,11 @@ version = "1.0.18" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "b0293b4b29daaf487284529cc2f5675b8e57c61f70167ba415a463651fd6a918" -[[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.197" +version = "1.0.186" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" +checksum = "9f5db24220c009de9bd45e69fb2938f4b6d2df856aa9304ce377b3180f83b7c1" dependencies = [ "serde_derive", ] @@ -2925,9 +2887,9 @@ dependencies = [ [[package]] name = "serde-wasm-bindgen" -version = "0.6.5" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" +checksum = "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e" dependencies = [ "js-sys", "serde", @@ -2936,13 +2898,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.197" +version = "1.0.186" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" +checksum = "5ad697f7e0b65af4983a4ce8f56ed5b357e8d3c36651bf6a7e13639c17b8e670" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -2999,57 +2961,52 @@ dependencies = [ [[package]] name = "server_fn" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2955da1dc5fcd970c182ebf1089af6c5f19051e1f286a21f7b96490a49b7a531" +checksum = "cfed18dfcc8d9004579c40482c3419c07f60ffb9c5b250542edca99f508b0ce9" dependencies = [ - "actix-web", - "bytes", "ciborium", "const_format", - "dashmap", - "futures", - "gloo-net 0.5.0", - "http 1.1.0", + "gloo-net", "inventory", "js-sys", + "lazy_static", "once_cell", - "send_wrapper", + "proc-macro2", + "quote", + "reqwest", "serde", "serde_json", "serde_qs", "server_fn_macro_default", + "syn 2.0.32", "thiserror", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams", - "web-sys", "xxhash-rust", ] [[package]] name = "server_fn_macro" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adfdd051ef905fdb3da20942b0c52d536158d7489a724e14cc2fd47323e7ca91" +checksum = "0b70ae8e22546ba85500391b36c08e3fba64871be8a26557a3663a8e08acb56f" dependencies = [ "const_format", - "convert_case 0.6.0", + "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.52", + "serde", + "syn 2.0.32", "xxhash-rust", ] [[package]] name = "server_fn_macro_default" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "060af1def72353a779fcc184c53e1965d3055a38b9e827f2259b2bff2d9c371e" +checksum = "7256ba61dfadb220598db418376e7bc2a34b96df36c4dc48f24ffe161810fc0b" dependencies = [ "server_fn_macro", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -3151,9 +3108,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.52" +version = "2.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07" +checksum = "239814284fd6f1a4ffe4ca893952cdd93c224b6a1571c9a9eadd670295c0c9e2" dependencies = [ "proc-macro2", "quote", @@ -3169,7 +3126,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -3228,7 +3185,7 @@ checksum = "090198534930841fab3a5d1bb637cde49e339654e606195f8d9c76eeb081dc96" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -3342,7 +3299,7 @@ checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -3372,26 +3329,23 @@ dependencies = [ [[package]] name = "toml" -version = "0.7.8" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" +checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" dependencies = [ "serde", - "serde_spanned", - "toml_datetime", - "toml_edit 0.19.15", ] [[package]] name = "toml" -version = "0.8.10" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" +checksum = "dd79e69d3b627db300ff956027cc6c3798cef26d22526befdfcd12feeb6d2257" dependencies = [ "serde", "serde_spanned", "toml_datetime", - "toml_edit 0.22.6", + "toml_edit", ] [[package]] @@ -3413,20 +3367,7 @@ dependencies = [ "serde", "serde_spanned", "toml_datetime", - "winnow 0.5.30", -] - -[[package]] -name = "toml_edit" -version = "0.22.6" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c1b5fd4128cc8d3e0cb74d4ed9a9cc7c7284becd4df68f5f940e1ad123606f6" -dependencies = [ - "indexmap 2.0.0", - "serde", - "serde_spanned", - "toml_datetime", - "winnow 0.6.5", + "winnow", ] [[package]] @@ -3441,7 +3382,7 @@ dependencies = [ "base64", "bytes", "h2", - "http 0.2.9", + "http", "http-body", "hyper", "hyper-timeout", @@ -3547,7 +3488,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -3637,7 +3578,7 @@ checksum = "982ee4197351b5c9782847ef5ec1fdcaf50503fb19d68f9771adae314e72b492" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -3740,7 +3681,7 @@ checksum = "f49e7f3f3db8040a100710a11932239fd30697115e2ba4107080d8252939845e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -3813,7 +3754,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", "wasm-bindgen-shared", ] @@ -3847,7 +3788,7 @@ checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -3858,19 +3799,6 @@ version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" -[[package]] -name = "wasm-streams" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" -dependencies = [ - "futures-util", - "js-sys", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - [[package]] name = "web-sys" version = "0.3.64" @@ -4008,12 +3936,12 @@ dependencies = [ ] [[package]] -name = "winnow" -version = "0.6.5" +name = "winreg" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" +checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" dependencies = [ - "memchr", + "winapi", ] [[package]] @@ -4045,7 +3973,7 @@ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] diff --git a/third_party/rust/WasmCargo.Bazel.lock b/third_party/rust/WasmCargo.Bazel.lock index 43b20e8..a749736 100644 --- a/third_party/rust/WasmCargo.Bazel.lock +++ b/third_party/rust/WasmCargo.Bazel.lock @@ -1,5 +1,5 @@ { - "checksum": "648c1f98a3828ab42706a80063d12ea6eeb23926bb176f148f0b12f2e19a39e1", + "checksum": "47bad8ebfbf783a0eda24635028199deb35dd8871dba1215aaec2a726ba5c1b4", "crates": { "addr2line 0.20.0": { "name": "addr2line", @@ -401,15 +401,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -425,6 +425,83 @@ ], "license_file": "LICENSE-APACHE" }, + "async-trait 0.1.73": { + "name": "async-trait", + "version": "0.1.73", + "package_url": "https://github.com/dtolnay/async-trait", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/async-trait/0.1.73/download", + "sha256": "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" + } + }, + "targets": [ + { + "ProcMacro": { + "crate_name": "async_trait", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "async_trait", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "async-trait 0.1.73", + "target": "build_script_build" + }, + { + "id": "proc-macro2 1.0.66", + "target": "proc_macro2" + }, + { + "id": "quote 1.0.33", + "target": "quote" + }, + { + "id": "syn 2.0.32", + "target": "syn" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "0.1.73" + }, + "build_script_attrs": { + "data_glob": [ + "**" + ] + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "attribute-derive 0.8.1": { "name": "attribute-derive", "version": "0.8.1", @@ -463,15 +540,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -543,15 +620,15 @@ "target": "proc_macro_utils" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -1134,7 +1211,7 @@ "target": "ciborium_ll" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" } ], @@ -1283,14 +1360,14 @@ ], "license_file": null }, - "config 0.14.0": { + "config 0.13.3": { "name": "config", - "version": "0.14.0", + "version": "0.13.3", "package_url": "https://github.com/mehcode/config-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/config/0.14.0/download", - "sha256": "7328b20597b53c2454f0b1919720c25c7339051c02b72b7e05409e00b14132be" + "url": "https://static.crates.io/crates/config/0.13.3/download", + "sha256": "d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7" } }, "targets": [ @@ -1333,20 +1410,29 @@ "target": "pathdiff" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { - "id": "toml 0.8.10", + "id": "toml 0.5.11", "target": "toml" } ], "selects": {} }, "edition": "2018", - "version": "0.14.0" + "proc_macro_deps": { + "common": [ + { + "id": "async-trait 0.1.73", + "target": "async_trait" + } + ], + "selects": {} + }, + "version": "0.13.3" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" @@ -1554,11 +1640,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { @@ -1776,69 +1862,6 @@ ], "license_file": "LICENSE-APACHE" }, - "dashmap 5.5.3": { - "name": "dashmap", - "version": "5.5.3", - "package_url": "https://github.com/xacrimon/dashmap", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/dashmap/5.5.3/download", - "sha256": "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" - } - }, - "targets": [ - { - "Library": { - "crate_name": "dashmap", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": false, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "dashmap", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "cfg-if 1.0.0", - "target": "cfg_if" - }, - { - "id": "hashbrown 0.14.0", - "target": "hashbrown" - }, - { - "id": "lock_api 0.4.10", - "target": "lock_api" - }, - { - "id": "once_cell 1.18.0", - "target": "once_cell" - }, - { - "id": "parking_lot_core 0.9.8", - "target": "parking_lot_core" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "5.5.3" - }, - "license": "MIT", - "license_ids": [ - "MIT" - ], - "license_file": "LICENSE" - }, "deranged 0.3.10": { "name": "deranged", "version": "0.3.10", @@ -1927,15 +1950,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -2030,15 +2053,15 @@ "target": "junit_parser" }, { - "id": "leptos 0.6.9", + "id": "leptos 0.5.4", "target": "leptos" }, { - "id": "leptos_meta 0.6.9", + "id": "leptos_meta 0.5.4", "target": "leptos_meta" }, { - "id": "leptos_router 0.6.9", + "id": "leptos_router 0.5.4", "target": "leptos_router" }, { @@ -2046,7 +2069,7 @@ "target": "log" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -2192,6 +2215,62 @@ ], "license_file": "LICENSE-APACHE" }, + "encoding_rs 0.8.32": { + "name": "encoding_rs", + "version": "0.8.32", + "package_url": "https://github.com/hsivonen/encoding_rs", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/encoding_rs/0.8.32/download", + "sha256": "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" + } + }, + "targets": [ + { + "Library": { + "crate_name": "encoding_rs", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "encoding_rs", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "alloc", + "default" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "cfg-if 1.0.0", + "target": "cfg_if" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.8.32" + }, + "license": "(Apache-2.0 OR MIT) AND BSD-3-Clause", + "license_ids": [ + "Apache-2.0", + "BSD-3-Clause", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "equivalent 1.0.1": { "name": "equivalent", "version": "1.0.1", @@ -2771,15 +2850,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -3358,7 +3437,7 @@ "target": "pin_project" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -3470,7 +3549,7 @@ "target": "pin_project" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -3506,20 +3585,20 @@ ], "license_file": null }, - "gloo-net 0.5.0": { - "name": "gloo-net", - "version": "0.5.0", - "package_url": "https://github.com/rustwasm/gloo", + "gloo-utils 0.1.7": { + "name": "gloo-utils", + "version": "0.1.7", + "package_url": "https://github.com/rustwasm/gloo/tree/master/crates/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/gloo-net/0.5.0/download", - "sha256": "43aaa242d1239a8822c15c645f02166398da4f8b5c4bae795c1f5b44e9eee173" + "url": "https://static.crates.io/crates/gloo-utils/0.1.7/download", + "sha256": "037fcb07216cb3a30f7292bd0176b050b7b9a052ba830ef7d5d65f6dc64ba58e" } }, "targets": [ { "Library": { - "crate_name": "gloo_net", + "crate_name": "gloo_utils", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -3530,77 +3609,35 @@ } } ], - "library_target_name": "gloo_net", + "library_target_name": "gloo_utils", "common_attrs": { "compile_data_glob": [ "**" ], "crate_features": { "common": [ - "default", - "eventsource", - "futures-channel", - "futures-core", - "futures-sink", - "http", - "json", - "pin-project", - "serde", - "serde_json", - "websocket" + "serde" ], "selects": {} }, "deps": { "common": [ - { - "id": "futures-channel 0.3.29", - "target": "futures_channel" - }, - { - "id": "futures-core 0.3.29", - "target": "futures_core" - }, - { - "id": "futures-sink 0.3.29", - "target": "futures_sink" - }, - { - "id": "gloo-utils 0.2.0", - "target": "gloo_utils" - }, - { - "id": "http 0.2.9", - "target": "http" - }, { "id": "js-sys 0.3.64", "target": "js_sys" }, { - "id": "pin-project 1.1.3", - "target": "pin_project" - }, - { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { "id": "serde_json 1.0.105", "target": "serde_json" }, - { - "id": "thiserror 1.0.47", - "target": "thiserror" - }, { "id": "wasm-bindgen 0.2.87", "target": "wasm_bindgen" }, - { - "id": "wasm-bindgen-futures 0.4.37", - "target": "wasm_bindgen_futures" - }, { "id": "web-sys 0.3.64", "target": "web_sys" @@ -3608,24 +3645,24 @@ ], "selects": {} }, - "edition": "2021", - "version": "0.5.0" + "edition": "2018", + "version": "0.1.7" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": null }, - "gloo-utils 0.1.7": { + "gloo-utils 0.2.0": { "name": "gloo-utils", - "version": "0.1.7", + "version": "0.2.0", "package_url": "https://github.com/rustwasm/gloo/tree/master/crates/utils", "repository": { "Http": { - "url": "https://static.crates.io/crates/gloo-utils/0.1.7/download", - "sha256": "037fcb07216cb3a30f7292bd0176b050b7b9a052ba830ef7d5d65f6dc64ba58e" + "url": "https://static.crates.io/crates/gloo-utils/0.2.0/download", + "sha256": "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" } }, "targets": [ @@ -3660,7 +3697,7 @@ "target": "js_sys" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -3678,30 +3715,30 @@ ], "selects": {} }, - "edition": "2018", - "version": "0.1.7" + "edition": "2021", + "version": "0.2.0" }, - "license": "MIT/Apache-2.0", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": null }, - "gloo-utils 0.2.0": { - "name": "gloo-utils", - "version": "0.2.0", - "package_url": "https://github.com/rustwasm/gloo/tree/master/crates/utils", + "h2 0.3.20": { + "name": "h2", + "version": "0.3.20", + "package_url": "https://github.com/hyperium/h2", "repository": { "Http": { - "url": "https://static.crates.io/crates/gloo-utils/0.2.0/download", - "sha256": "0b5555354113b18c547c1d3a98fbf7fb32a9ff4f6fa112ce823a21641a0ba3aa" + "url": "https://static.crates.io/crates/h2/0.3.20/download", + "sha256": "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" } }, "targets": [ { "Library": { - "crate_name": "gloo_utils", + "crate_name": "h2", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -3712,51 +3749,68 @@ } } ], - "library_target_name": "gloo_utils", + "library_target_name": "h2", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "serde" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "js-sys 0.3.64", - "target": "js_sys" + "id": "bytes 1.4.0", + "target": "bytes" }, { - "id": "serde 1.0.197", - "target": "serde" + "id": "fnv 1.0.7", + "target": "fnv" }, { - "id": "serde_json 1.0.105", - "target": "serde_json" + "id": "futures-core 0.3.29", + "target": "futures_core" }, { - "id": "wasm-bindgen 0.2.87", - "target": "wasm_bindgen" + "id": "futures-sink 0.3.29", + "target": "futures_sink" }, { - "id": "web-sys 0.3.64", - "target": "web_sys" + "id": "futures-util 0.3.29", + "target": "futures_util" + }, + { + "id": "http 0.2.9", + "target": "http" + }, + { + "id": "indexmap 1.9.3", + "target": "indexmap" + }, + { + "id": "slab 0.4.8", + "target": "slab" + }, + { + "id": "tokio 1.32.0", + "target": "tokio" + }, + { + "id": "tokio-util 0.7.8", + "target": "tokio_util" + }, + { + "id": "tracing 0.1.40", + "target": "tracing" } ], "selects": {} }, - "edition": "2021", - "version": "0.2.0" + "edition": "2018", + "version": "0.3.20" }, - "license": "MIT OR Apache-2.0", + "license": "MIT", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": null + "license_file": "LICENSE" }, "half 1.8.2": { "name": "half", @@ -3797,6 +3851,51 @@ ], "license_file": "LICENSE" }, + "hashbrown 0.12.3": { + "name": "hashbrown", + "version": "0.12.3", + "package_url": "https://github.com/rust-lang/hashbrown", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/hashbrown/0.12.3/download", + "sha256": "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + } + }, + "targets": [ + { + "Library": { + "crate_name": "hashbrown", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "hashbrown", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "raw" + ], + "selects": {} + }, + "edition": "2021", + "version": "0.12.3" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "hashbrown 0.14.0": { "name": "hashbrown", "version": "0.14.0", @@ -3991,20 +4090,20 @@ ], "license_file": "LICENSE-APACHE" }, - "http 1.1.0": { - "name": "http", - "version": "1.1.0", - "package_url": "https://github.com/hyperium/http", + "http-body 0.4.5": { + "name": "http-body", + "version": "0.4.5", + "package_url": "https://github.com/hyperium/http-body", "repository": { "Http": { - "url": "https://static.crates.io/crates/http/1.1.0/download", - "sha256": "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" + "url": "https://static.crates.io/crates/http-body/0.4.5/download", + "sha256": "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" } }, "targets": [ { "Library": { - "crate_name": "http", + "crate_name": "http_body", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -4015,7 +4114,74 @@ } } ], - "library_target_name": "http", + "library_target_name": "http_body", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "bytes 1.4.0", + "target": "bytes" + }, + { + "id": "http 0.2.9", + "target": "http" + }, + { + "id": "pin-project-lite 0.2.12", + "target": "pin_project_lite" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.4.5" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, + "httparse 1.8.0": { + "name": "httparse", + "version": "1.8.0", + "package_url": "https://github.com/seanmonstar/httparse", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/httparse/1.8.0/download", + "sha256": "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" + } + }, + "targets": [ + { + "Library": { + "crate_name": "httparse", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "httparse", "common_attrs": { "compile_data_glob": [ "**" @@ -4030,22 +4196,58 @@ "deps": { "common": [ { - "id": "bytes 1.4.0", - "target": "bytes" - }, - { - "id": "fnv 1.0.7", - "target": "fnv" - }, - { - "id": "itoa 1.0.9", - "target": "itoa" + "id": "httparse 1.8.0", + "target": "build_script_build" } ], "selects": {} }, "edition": "2018", - "version": "1.1.0" + "version": "1.8.0" + }, + "build_script_attrs": { + "data_glob": [ + "**" + ] + }, + "license": "MIT/Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "httpdate 1.0.3": { + "name": "httpdate", + "version": "1.0.3", + "package_url": "https://github.com/pyfisch/httpdate", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/httpdate/1.0.3/download", + "sha256": "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + } + }, + "targets": [ + { + "Library": { + "crate_name": "httpdate", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "httpdate", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2021", + "version": "1.0.3" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4093,6 +4295,125 @@ ], "license_file": "LICENSE-APACHE" }, + "hyper 0.14.27": { + "name": "hyper", + "version": "0.14.27", + "package_url": "https://github.com/hyperium/hyper", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/hyper/0.14.27/download", + "sha256": "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" + } + }, + "targets": [ + { + "Library": { + "crate_name": "hyper", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "hyper", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "client", + "h2", + "http1", + "http2", + "runtime", + "socket2", + "tcp" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "bytes 1.4.0", + "target": "bytes" + }, + { + "id": "futures-channel 0.3.29", + "target": "futures_channel" + }, + { + "id": "futures-core 0.3.29", + "target": "futures_core" + }, + { + "id": "futures-util 0.3.29", + "target": "futures_util" + }, + { + "id": "h2 0.3.20", + "target": "h2" + }, + { + "id": "http 0.2.9", + "target": "http" + }, + { + "id": "http-body 0.4.5", + "target": "http_body" + }, + { + "id": "httparse 1.8.0", + "target": "httparse" + }, + { + "id": "httpdate 1.0.3", + "target": "httpdate" + }, + { + "id": "itoa 1.0.9", + "target": "itoa" + }, + { + "id": "pin-project-lite 0.2.12", + "target": "pin_project_lite" + }, + { + "id": "socket2 0.4.9", + "target": "socket2" + }, + { + "id": "tokio 1.32.0", + "target": "tokio" + }, + { + "id": "tower-service 0.3.2", + "target": "tower_service" + }, + { + "id": "tracing 0.1.40", + "target": "tracing" + }, + { + "id": "want 0.3.1", + "target": "want" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.14.27" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "idna 0.5.0": { "name": "idna", "version": "0.5.0", @@ -4153,20 +4474,208 @@ ], "license_file": "LICENSE-APACHE" }, + "indexmap 1.9.3": { + "name": "indexmap", + "version": "1.9.3", + "package_url": "https://github.com/bluss/indexmap", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/indexmap/1.9.3/download", + "sha256": "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" + } + }, + "targets": [ + { + "Library": { + "crate_name": "indexmap", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "indexmap", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "hashbrown 0.12.3", + "target": "hashbrown" + }, + { + "id": "indexmap 1.9.3", + "target": "build_script_build" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "1.9.3" + }, + "build_script_attrs": { + "data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "autocfg 1.1.0", + "target": "autocfg" + } + ], + "selects": {} + } + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "indexmap 2.0.0": { "name": "indexmap", "version": "2.0.0", "package_url": "https://github.com/bluss/indexmap", "repository": { "Http": { - "url": "https://static.crates.io/crates/indexmap/2.0.0/download", - "sha256": "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" + "url": "https://static.crates.io/crates/indexmap/2.0.0/download", + "sha256": "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" + } + }, + "targets": [ + { + "Library": { + "crate_name": "indexmap", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "indexmap", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "equivalent 1.0.1", + "target": "equivalent" + }, + { + "id": "hashbrown 0.14.0", + "target": "hashbrown" + } + ], + "selects": {} + }, + "edition": "2021", + "version": "2.0.0" + }, + "license": "Apache-2.0 OR MIT", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "interpolator 0.5.0": { + "name": "interpolator", + "version": "0.5.0", + "package_url": "https://github.com/ModProg/interpolator", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/interpolator/0.5.0/download", + "sha256": "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8" + } + }, + "targets": [ + { + "Library": { + "crate_name": "interpolator", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "interpolator", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "iter" + ], + "selects": {} + }, + "edition": "2021", + "version": "0.5.0" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "inventory 0.3.11": { + "name": "inventory", + "version": "0.3.11", + "package_url": "https://github.com/dtolnay/inventory", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/inventory/0.3.11/download", + "sha256": "a53088c87cf71c9d4f3372a2cb9eea1e7b8a0b1bf8b7f7d23fe5b76dbb07e63b" } }, "targets": [ { "Library": { - "crate_name": "indexmap", + "crate_name": "inventory", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -4177,55 +4686,35 @@ } } ], - "library_target_name": "indexmap", + "library_target_name": "inventory", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "default", - "std" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "equivalent 1.0.1", - "target": "equivalent" - }, - { - "id": "hashbrown 0.14.0", - "target": "hashbrown" - } - ], - "selects": {} - }, "edition": "2021", - "version": "2.0.0" + "version": "0.3.11" }, - "license": "Apache-2.0 OR MIT", + "license": "MIT OR Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "interpolator 0.5.0": { - "name": "interpolator", - "version": "0.5.0", - "package_url": "https://github.com/ModProg/interpolator", + "ipnet 2.8.0": { + "name": "ipnet", + "version": "2.8.0", + "package_url": "https://github.com/krisprice/ipnet", "repository": { "Http": { - "url": "https://static.crates.io/crates/interpolator/0.5.0/download", - "sha256": "71dd52191aae121e8611f1e8dc3e324dd0dd1dee1e6dd91d10ee07a3cfb4d9d8" + "url": "https://static.crates.io/crates/ipnet/2.8.0/download", + "sha256": "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" } }, "targets": [ { "Library": { - "crate_name": "interpolator", + "crate_name": "ipnet", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -4236,19 +4725,20 @@ } } ], - "library_target_name": "interpolator", + "library_target_name": "ipnet", "common_attrs": { "compile_data_glob": [ "**" ], "crate_features": { "common": [ - "iter" + "default", + "std" ], "selects": {} }, - "edition": "2021", - "version": "0.5.0" + "edition": "2018", + "version": "2.8.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4257,20 +4747,20 @@ ], "license_file": "LICENSE-APACHE" }, - "inventory 0.3.11": { - "name": "inventory", - "version": "0.3.11", - "package_url": "https://github.com/dtolnay/inventory", + "itertools 0.10.5": { + "name": "itertools", + "version": "0.10.5", + "package_url": "https://github.com/rust-itertools/itertools", "repository": { "Http": { - "url": "https://static.crates.io/crates/inventory/0.3.11/download", - "sha256": "a53088c87cf71c9d4f3372a2cb9eea1e7b8a0b1bf8b7f7d23fe5b76dbb07e63b" + "url": "https://static.crates.io/crates/itertools/0.10.5/download", + "sha256": "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" } }, "targets": [ { "Library": { - "crate_name": "inventory", + "crate_name": "itertools", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -4281,29 +4771,46 @@ } } ], - "library_target_name": "inventory", + "library_target_name": "itertools", "common_attrs": { "compile_data_glob": [ "**" ], - "edition": "2021", - "version": "0.3.11" + "crate_features": { + "common": [ + "default", + "use_alloc", + "use_std" + ], + "selects": {} + }, + "deps": { + "common": [ + { + "id": "either 1.9.0", + "target": "either" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.10.5" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "itertools 0.12.1": { + "itertools 0.11.0": { "name": "itertools", - "version": "0.12.1", + "version": "0.11.0", "package_url": "https://github.com/rust-itertools/itertools", "repository": { "Http": { - "url": "https://static.crates.io/crates/itertools/0.12.1/download", - "sha256": "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" + "url": "https://static.crates.io/crates/itertools/0.11.0/download", + "sha256": "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" } }, "targets": [ @@ -4343,7 +4850,7 @@ "selects": {} }, "edition": "2018", - "version": "0.12.1" + "version": "0.11.0" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -4490,7 +4997,7 @@ "target": "quick_xml" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -4548,14 +5055,14 @@ ], "license_file": "LICENSE-APACHE" }, - "leptos 0.6.9": { + "leptos 0.5.4": { "name": "leptos", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos/0.6.9/download", - "sha256": "56d079555ff18158a1ed28d2a8ac529b4cb5904490384064346eb2d321addde6" + "url": "https://static.crates.io/crates/leptos/0.5.4/download", + "sha256": "9d02b78d6e38acf8199426058a0d8c4030835d84a4ee16147df25be7fed707e0" } }, "targets": [ @@ -4581,7 +5088,8 @@ "common": [ "default", "hydrate", - "serde" + "serde", + "tracing" ], "selects": {} }, @@ -4592,23 +5100,23 @@ "target": "cfg_if" }, { - "id": "leptos_config 0.6.9", + "id": "leptos_config 0.5.4", "target": "leptos_config" }, { - "id": "leptos_dom 0.6.9", + "id": "leptos_dom 0.5.4", "target": "leptos_dom" }, { - "id": "leptos_reactive 0.6.9", + "id": "leptos_reactive 0.5.4", "target": "leptos_reactive" }, { - "id": "leptos_server 0.6.9", + "id": "leptos_server 0.5.4", "target": "leptos_server" }, { - "id": "server_fn 0.6.9", + "id": "server_fn 0.5.4", "target": "server_fn" }, { @@ -4634,7 +5142,7 @@ "proc_macro_deps": { "common": [ { - "id": "leptos_macro 0.6.9", + "id": "leptos_macro 0.5.4", "target": "leptos_macro" }, { @@ -4644,7 +5152,7 @@ ], "selects": {} }, - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -4652,14 +5160,14 @@ ], "license_file": null }, - "leptos_config 0.6.9": { + "leptos_config 0.5.4": { "name": "leptos_config", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_config/0.6.9/download", - "sha256": "2d80b4ed5f0447996b9a28879002f995d3770687630f568be41307f362f84cb7" + "url": "https://static.crates.io/crates/leptos_config/0.5.4/download", + "sha256": "afcaa5db5b22b794b624e14ffe2aefae215b2d21c60a230ae2d06fe21ae5da64" } }, "targets": [ @@ -4684,7 +5192,7 @@ "deps": { "common": [ { - "id": "config 0.14.0", + "id": "config 0.13.3", "target": "config" }, { @@ -4692,7 +5200,7 @@ "target": "regex" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -4707,7 +5215,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -4715,14 +5223,14 @@ ], "license_file": null }, - "leptos_dom 0.6.9": { + "leptos_dom 0.5.4": { "name": "leptos_dom", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_dom/0.6.9/download", - "sha256": "2a4b4da3cb6a4dde22e68717482a4b926fb5dd182c12461b27efa37764b29d9a" + "url": "https://static.crates.io/crates/leptos_dom/0.5.4/download", + "sha256": "af459b63567e8e9c921ecbe7863732dc8dcb7874eaad6826b7d3778a53ec0ea6" } }, "targets": [ @@ -4775,7 +5283,7 @@ "target": "indexmap" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.10.5", "target": "itertools" }, { @@ -4783,7 +5291,7 @@ "target": "js_sys" }, { - "id": "leptos_reactive 0.6.9", + "id": "leptos_reactive 0.5.4", "target": "leptos_reactive" }, { @@ -4799,7 +5307,7 @@ "target": "rustc_hash" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -4807,7 +5315,7 @@ "target": "serde_json" }, { - "id": "server_fn 0.6.9", + "id": "server_fn 0.5.4", "target": "server_fn" }, { @@ -4854,7 +5362,7 @@ ], "selects": {} }, - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -4862,14 +5370,14 @@ ], "license_file": null }, - "leptos_hot_reload 0.6.9": { + "leptos_hot_reload 0.5.4": { "name": "leptos_hot_reload", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_hot_reload/0.6.9/download", - "sha256": "fb051c7b3bce8368ee30fb57e7b14cdcd573019ea6cd1858b9c697a3519ea099" + "url": "https://static.crates.io/crates/leptos_hot_reload/0.5.4/download", + "sha256": "4ea60376eb80a24b3ab082612d62211e3ea0fc4dee132f7ff34d5fa5a5108cd2" } }, "targets": [ @@ -4910,11 +5418,11 @@ "target": "parking_lot" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { @@ -4922,11 +5430,11 @@ "target": "rstml" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -4937,7 +5445,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -4945,14 +5453,14 @@ ], "license_file": null }, - "leptos_macro 0.6.9": { + "leptos_macro 0.5.4": { "name": "leptos_macro", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_macro/0.6.9/download", - "sha256": "e82c33c8baa07a36c1f0d6149af821be885e6863779bcb24954bf865ad8402b4" + "url": "https://static.crates.io/crates/leptos_macro/0.5.4/download", + "sha256": "a7e96f4c450f4b5e2ccb135c2b1328890f911ca4ee89da9ed6d582df929e6cb5" } }, "targets": [ @@ -4976,7 +5484,8 @@ ], "crate_features": { "common": [ - "hydrate" + "hydrate", + "tracing" ], "selects": {} }, @@ -4999,11 +5508,11 @@ "target": "html_escape" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.11.0", "target": "itertools" }, { - "id": "leptos_hot_reload 0.6.9", + "id": "leptos_hot_reload 0.5.4", "target": "leptos_hot_reload" }, { @@ -5015,11 +5524,11 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { @@ -5027,11 +5536,11 @@ "target": "rstml" }, { - "id": "server_fn_macro 0.6.9", + "id": "server_fn_macro 0.5.4", "target": "server_fn_macro" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -5046,7 +5555,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -5054,14 +5563,14 @@ ], "license_file": null }, - "leptos_meta 0.6.9": { + "leptos_meta 0.5.4": { "name": "leptos_meta", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_meta/0.6.9/download", - "sha256": "12b9dac59a2f88f5235dbe17cfa81b738a6f47238a64e4f23b921f1a90a9bf11" + "url": "https://static.crates.io/crates/leptos_meta/0.5.4/download", + "sha256": "983bbf829598d275b01e96bd9fca71e4739dd7b9fdf69cb8898b30ebfb124332" } }, "targets": [ @@ -5101,7 +5610,7 @@ "target": "indexmap" }, { - "id": "leptos 0.6.9", + "id": "leptos 0.5.4", "target": "leptos" }, { @@ -5120,7 +5629,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -5128,14 +5637,14 @@ ], "license_file": null }, - "leptos_reactive 0.6.9": { + "leptos_reactive 0.5.4": { "name": "leptos_reactive", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_reactive/0.6.9/download", - "sha256": "93bdcebc9822cc22a72cc9528dd794e1396152c75749ee09959f8272a8c99657" + "url": "https://static.crates.io/crates/leptos_reactive/0.5.4/download", + "sha256": "22207568e096ac153ba8da68635e3136c1ec614ea9012736fa861c05bfb2eeff" } }, "targets": [ @@ -5200,11 +5709,11 @@ "target": "self_cell" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { - "id": "serde-wasm-bindgen 0.6.5", + "id": "serde-wasm-bindgen 0.5.0", "target": "serde_wasm_bindgen" }, { @@ -5248,7 +5757,7 @@ ], "selects": {} }, - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -5256,14 +5765,14 @@ ], "license_file": null }, - "leptos_router 0.6.9": { + "leptos_router 0.5.4": { "name": "leptos_router", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_router/0.6.9/download", - "sha256": "9460a5dc184fa05d8eb635b687ad3220d02d2d23d6f49c3bf146aa71e427f423" + "url": "https://static.crates.io/crates/leptos_router/0.5.4/download", + "sha256": "c1a2ff8b8e8ae8b17efd8be2a407f7f83ed57c5243f70f2d03e6635f9ff61848" } }, "targets": [ @@ -5303,7 +5812,7 @@ "target": "gloo_net" }, { - "id": "itertools 0.12.1", + "id": "itertools 0.11.0", "target": "itertools" }, { @@ -5315,7 +5824,7 @@ "target": "lazy_static" }, { - "id": "leptos 0.6.9", + "id": "leptos 0.5.4", "target": "leptos" }, { @@ -5331,11 +5840,7 @@ "target": "percent_encoding" }, { - "id": "send_wrapper 0.6.0", - "target": "send_wrapper" - }, - { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -5370,7 +5875,7 @@ "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -5378,14 +5883,14 @@ ], "license_file": null }, - "leptos_server 0.6.9": { + "leptos_server 0.5.4": { "name": "leptos_server", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/leptos_server/0.6.9/download", - "sha256": "654b6ff6a24e79977641b5214452373b1e12fdf4c8a563fadf656c139694b4b9" + "url": "https://static.crates.io/crates/leptos_server/0.5.4/download", + "sha256": "272d018a5adf33d10ee57e6f0f83dccc305c68613cd207e8a653aeebd4cd5b4f" } }, "targets": [ @@ -5424,15 +5929,15 @@ "target": "lazy_static" }, { - "id": "leptos_reactive 0.6.9", + "id": "leptos_reactive 0.5.4", "target": "leptos_reactive" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { - "id": "server_fn 0.6.9", + "id": "server_fn 0.5.4", "target": "server_fn" }, { @@ -5450,13 +5955,13 @@ "proc_macro_deps": { "common": [ { - "id": "leptos_macro 0.6.9", + "id": "leptos_macro 0.5.4", "target": "leptos_macro" } ], "selects": {} }, - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -5576,7 +6081,7 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -5766,15 +6271,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn", "alias": "syn2" } @@ -5837,11 +6342,11 @@ "target": "proc_macro_utils" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" } ], @@ -5929,6 +6434,45 @@ ], "license_file": "LICENSE-MIT" }, + "mime 0.3.17": { + "name": "mime", + "version": "0.3.17", + "package_url": "https://github.com/hyperium/mime", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/mime/0.3.17/download", + "sha256": "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + } + }, + "targets": [ + { + "Library": { + "crate_name": "mime", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "mime", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2015", + "version": "0.3.17" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "minimal-lexical 0.2.1": { "name": "minimal-lexical", "version": "0.2.1", @@ -6825,15 +7369,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -7014,11 +7558,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -7096,11 +7640,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { @@ -7191,11 +7735,11 @@ "target": "build_script_build" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" } ], @@ -7268,11 +7812,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { @@ -7292,14 +7836,14 @@ ], "license_file": "LICENSE-APACHE" }, - "proc-macro2 1.0.78": { + "proc-macro2 1.0.66": { "name": "proc-macro2", - "version": "1.0.78", + "version": "1.0.66", "package_url": "https://github.com/dtolnay/proc-macro2", "repository": { "Http": { - "url": "https://static.crates.io/crates/proc-macro2/1.0.78/download", - "sha256": "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" + "url": "https://static.crates.io/crates/proc-macro2/1.0.66/download", + "sha256": "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" } }, "targets": [ @@ -7345,7 +7889,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "build_script_build" }, { @@ -7356,7 +7900,7 @@ "selects": {} }, "edition": "2021", - "version": "1.0.78" + "version": "1.0.66" }, "build_script_attrs": { "data_glob": [ @@ -7421,7 +7965,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { @@ -7429,11 +7973,11 @@ "target": "build_script_build" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -7527,14 +8071,14 @@ ], "license_file": "LICENSE-MIT.md" }, - "quote 1.0.35": { + "quote 1.0.33": { "name": "quote", - "version": "1.0.35", + "version": "1.0.33", "package_url": "https://github.com/dtolnay/quote", "repository": { "Http": { - "url": "https://static.crates.io/crates/quote/1.0.35/download", - "sha256": "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" + "url": "https://static.crates.io/crates/quote/1.0.33/download", + "sha256": "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" } }, "targets": [ @@ -7566,14 +8110,14 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" } ], "selects": {} }, "edition": "2018", - "version": "1.0.35" + "version": "1.0.33" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7624,15 +8168,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -7890,30 +8434,185 @@ ] } } - } - ], - "library_target_name": "regex_syntax", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "default", - "std", - "unicode", - "unicode-age", - "unicode-bool", - "unicode-case", - "unicode-gencat", - "unicode-perl", - "unicode-script", - "unicode-segment" - ], - "selects": {} + } + ], + "library_target_name": "regex_syntax", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "default", + "std", + "unicode", + "unicode-age", + "unicode-bool", + "unicode-case", + "unicode-gencat", + "unicode-perl", + "unicode-script", + "unicode-segment" + ], + "selects": {} + }, + "edition": "2021", + "version": "0.7.4" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, + "reqwest 0.11.18": { + "name": "reqwest", + "version": "0.11.18", + "package_url": "https://github.com/seanmonstar/reqwest", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/reqwest/0.11.18/download", + "sha256": "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" + } + }, + "targets": [ + { + "Library": { + "crate_name": "reqwest", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "reqwest", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "base64 0.21.2", + "target": "base64" + }, + { + "id": "bytes 1.4.0", + "target": "bytes" + }, + { + "id": "futures-core 0.3.29", + "target": "futures_core" + }, + { + "id": "futures-util 0.3.29", + "target": "futures_util" + }, + { + "id": "http 0.2.9", + "target": "http" + }, + { + "id": "serde 1.0.186", + "target": "serde" + }, + { + "id": "serde_urlencoded 0.7.1", + "target": "serde_urlencoded" + }, + { + "id": "tower-service 0.3.2", + "target": "tower_service" + }, + { + "id": "url 2.5.0", + "target": "url" + } + ], + "selects": { + "cfg(not(target_arch = \"wasm32\"))": [ + { + "id": "encoding_rs 0.8.32", + "target": "encoding_rs" + }, + { + "id": "h2 0.3.20", + "target": "h2" + }, + { + "id": "http-body 0.4.5", + "target": "http_body" + }, + { + "id": "hyper 0.14.27", + "target": "hyper" + }, + { + "id": "ipnet 2.8.0", + "target": "ipnet" + }, + { + "id": "log 0.4.20", + "target": "log" + }, + { + "id": "mime 0.3.17", + "target": "mime" + }, + { + "id": "once_cell 1.18.0", + "target": "once_cell" + }, + { + "id": "percent-encoding 2.3.1", + "target": "percent_encoding" + }, + { + "id": "pin-project-lite 0.2.12", + "target": "pin_project_lite" + }, + { + "id": "tokio 1.32.0", + "target": "tokio" + } + ], + "cfg(target_arch = \"wasm32\")": [ + { + "id": "js-sys 0.3.64", + "target": "js_sys" + }, + { + "id": "serde_json 1.0.105", + "target": "serde_json" + }, + { + "id": "wasm-bindgen 0.2.87", + "target": "wasm_bindgen" + }, + { + "id": "wasm-bindgen-futures 0.4.37", + "target": "wasm_bindgen_futures" + }, + { + "id": "web-sys 0.3.64", + "target": "web_sys" + } + ], + "cfg(windows)": [ + { + "id": "winreg 0.10.1", + "target": "winreg" + } + ] + } }, - "edition": "2021", - "version": "0.7.4" + "edition": "2018", + "version": "0.11.18" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -7961,7 +8660,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { @@ -7969,11 +8668,11 @@ "target": "proc_macro2_diagnostics" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -8252,69 +8951,14 @@ ], "license_file": "LICENSE" }, - "send_wrapper 0.6.0": { - "name": "send_wrapper", - "version": "0.6.0", - "package_url": "https://github.com/thk1/send_wrapper", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/send_wrapper/0.6.0/download", - "sha256": "cd0b0ec5f1c1ca621c432a25813d8d60c88abe6d3e08a3eb9cf37d97a0fe3d73" - } - }, - "targets": [ - { - "Library": { - "crate_name": "send_wrapper", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": false, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "send_wrapper", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "crate_features": { - "common": [ - "futures", - "futures-core" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "futures-core 0.3.29", - "target": "futures_core" - } - ], - "selects": {} - }, - "edition": "2018", - "version": "0.6.0" - }, - "license": "MIT/Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE.txt" - }, - "serde 1.0.197": { + "serde 1.0.186": { "name": "serde", - "version": "1.0.197", + "version": "1.0.186", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde/1.0.197/download", - "sha256": "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" + "url": "https://static.crates.io/crates/serde/1.0.186/download", + "sha256": "9f5db24220c009de9bd45e69fb2938f4b6d2df856aa9304ce377b3180f83b7c1" } }, "targets": [ @@ -8361,7 +9005,7 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "build_script_build" } ], @@ -8371,13 +9015,13 @@ "proc_macro_deps": { "common": [ { - "id": "serde_derive 1.0.197", + "id": "serde_derive 1.0.186", "target": "serde_derive" } ], "selects": {} }, - "version": "1.0.197" + "version": "1.0.186" }, "build_script_attrs": { "data_glob": [ @@ -8391,14 +9035,14 @@ ], "license_file": "LICENSE-APACHE" }, - "serde-wasm-bindgen 0.6.5": { + "serde-wasm-bindgen 0.5.0": { "name": "serde-wasm-bindgen", - "version": "0.6.5", - "package_url": "https://github.com/RReverser/serde-wasm-bindgen", + "version": "0.5.0", + "package_url": "https://github.com/cloudflare/serde-wasm-bindgen", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde-wasm-bindgen/0.6.5/download", - "sha256": "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" + "url": "https://static.crates.io/crates/serde-wasm-bindgen/0.5.0/download", + "sha256": "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e" } }, "targets": [ @@ -8427,7 +9071,7 @@ "target": "js_sys" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -8438,7 +9082,7 @@ "selects": {} }, "edition": "2018", - "version": "0.6.5" + "version": "0.5.0" }, "license": "MIT", "license_ids": [ @@ -8446,14 +9090,14 @@ ], "license_file": "LICENSE" }, - "serde_derive 1.0.197": { + "serde_derive 1.0.186": { "name": "serde_derive", - "version": "1.0.197", + "version": "1.0.186", "package_url": "https://github.com/serde-rs/serde", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_derive/1.0.197/download", - "sha256": "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" + "url": "https://static.crates.io/crates/serde_derive/1.0.186/download", + "sha256": "5ad697f7e0b65af4983a4ce8f56ed5b357e8d3c36651bf6a7e13639c17b8e670" } }, "targets": [ @@ -8484,22 +9128,22 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], "selects": {} }, "edition": "2015", - "version": "1.0.197" + "version": "1.0.186" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8567,7 +9211,7 @@ "target": "ryu" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -8634,7 +9278,7 @@ "target": "percent_encoding" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -8654,20 +9298,20 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_spanned 0.6.5": { - "name": "serde_spanned", - "version": "0.6.5", - "package_url": "https://github.com/toml-rs/toml", + "serde_test 1.0.176": { + "name": "serde_test", + "version": "1.0.176", + "package_url": "https://github.com/serde-rs/test", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_spanned/0.6.5/download", - "sha256": "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" + "url": "https://static.crates.io/crates/serde_test/1.0.176/download", + "sha256": "5a2f49ace1498612d14f7e0b8245519584db8299541dfe31a06374a828d620ab" } }, "targets": [ { "Library": { - "crate_name": "serde_spanned", + "crate_name": "serde_test", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -8678,28 +9322,22 @@ } } ], - "library_target_name": "serde_spanned", + "library_target_name": "serde_test", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "serde" - ], - "selects": {} - }, "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" } ], "selects": {} }, "edition": "2021", - "version": "0.6.5" + "version": "1.0.176" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -8708,20 +9346,20 @@ ], "license_file": "LICENSE-APACHE" }, - "serde_test 1.0.176": { - "name": "serde_test", - "version": "1.0.176", - "package_url": "https://github.com/serde-rs/test", + "serde_urlencoded 0.7.1": { + "name": "serde_urlencoded", + "version": "0.7.1", + "package_url": "https://github.com/nox/serde_urlencoded", "repository": { "Http": { - "url": "https://static.crates.io/crates/serde_test/1.0.176/download", - "sha256": "5a2f49ace1498612d14f7e0b8245519584db8299541dfe31a06374a828d620ab" + "url": "https://static.crates.io/crates/serde_urlencoded/0.7.1/download", + "sha256": "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" } }, "targets": [ { "Library": { - "crate_name": "serde_test", + "crate_name": "serde_urlencoded", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -8732,7 +9370,7 @@ } } ], - "library_target_name": "serde_test", + "library_target_name": "serde_urlencoded", "common_attrs": { "compile_data_glob": [ "**" @@ -8740,30 +9378,42 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "form_urlencoded 1.2.1", + "target": "form_urlencoded" + }, + { + "id": "itoa 1.0.9", + "target": "itoa" + }, + { + "id": "ryu 1.0.15", + "target": "ryu" + }, + { + "id": "serde 1.0.186", "target": "serde" } ], "selects": {} }, - "edition": "2021", - "version": "1.0.176" + "edition": "2018", + "version": "0.7.1" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "server_fn 0.6.9": { + "server_fn 0.5.4": { "name": "server_fn", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/server_fn/0.6.9/download", - "sha256": "2955da1dc5fcd970c182ebf1089af6c5f19051e1f286a21f7b96490a49b7a531" + "url": "https://static.crates.io/crates/server_fn/0.5.4/download", + "sha256": "cfed18dfcc8d9004579c40482c3419c07f60ffb9c5b250542edca99f508b0ce9" } }, "targets": [ @@ -8785,23 +9435,8 @@ "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "browser", - "cbor", - "default", - "form-redirects", - "json", - "url" - ], - "selects": {} - }, "deps": { "common": [ - { - "id": "bytes 1.4.0", - "target": "bytes" - }, { "id": "ciborium 0.2.1", "target": "ciborium" @@ -8811,35 +9446,19 @@ "target": "const_format" }, { - "id": "dashmap 5.5.3", - "target": "dashmap" - }, - { - "id": "futures 0.3.29", - "target": "futures" - }, - { - "id": "gloo-net 0.5.0", - "target": "gloo_net" - }, - { - "id": "http 1.1.0", - "target": "http" - }, - { - "id": "js-sys 0.3.64", - "target": "js_sys" + "id": "lazy_static 1.4.0", + "target": "lazy_static" }, { - "id": "once_cell 1.18.0", - "target": "once_cell" + "id": "proc-macro2 1.0.66", + "target": "proc_macro2" }, { - "id": "send_wrapper 0.6.0", - "target": "send_wrapper" + "id": "quote 1.0.33", + "target": "quote" }, { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -8851,47 +9470,52 @@ "target": "serde_qs" }, { - "id": "thiserror 1.0.47", - "target": "thiserror" - }, - { - "id": "url 2.5.0", - "target": "url" - }, - { - "id": "wasm-bindgen 0.2.87", - "target": "wasm_bindgen" - }, - { - "id": "wasm-bindgen-futures 0.4.37", - "target": "wasm_bindgen_futures" - }, - { - "id": "wasm-streams 0.4.0", - "target": "wasm_streams" + "id": "syn 2.0.32", + "target": "syn" }, { - "id": "web-sys 0.3.64", - "target": "web_sys" + "id": "thiserror 1.0.47", + "target": "thiserror" }, { "id": "xxhash-rust 0.8.6", "target": "xxhash_rust" } ], - "selects": {} + "selects": { + "cfg(not(target_arch = \"wasm32\"))": [ + { + "id": "once_cell 1.18.0", + "target": "once_cell" + }, + { + "id": "reqwest 0.11.18", + "target": "reqwest" + } + ], + "cfg(target_arch = \"wasm32\")": [ + { + "id": "gloo-net 0.2.6", + "target": "gloo_net" + }, + { + "id": "js-sys 0.3.64", + "target": "js_sys" + } + ] + } }, "edition": "2021", "proc_macro_deps": { "common": [ { - "id": "server_fn_macro_default 0.6.9", + "id": "server_fn_macro_default 0.5.4", "target": "server_fn_macro_default" } ], "selects": {} }, - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -8899,14 +9523,14 @@ ], "license_file": null }, - "server_fn_macro 0.6.9": { + "server_fn_macro 0.5.4": { "name": "server_fn_macro", - "version": "0.6.9", - "package_url": null, + "version": "0.5.4", + "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/server_fn_macro/0.6.9/download", - "sha256": "adfdd051ef905fdb3da20942b0c52d536158d7489a724e14cc2fd47323e7ca91" + "url": "https://static.crates.io/crates/server_fn_macro/0.5.4/download", + "sha256": "0b70ae8e22546ba85500391b36c08e3fba64871be8a26557a3663a8e08acb56f" } }, "targets": [ @@ -8935,19 +9559,23 @@ "target": "const_format" }, { - "id": "convert_case 0.6.0", - "target": "convert_case" + "id": "proc-macro-error 1.0.4", + "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "serde 1.0.186", + "target": "serde" + }, + { + "id": "syn 2.0.32", "target": "syn" }, { @@ -8964,7 +9592,7 @@ }, "selects": {} }, - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -8972,14 +9600,14 @@ ], "license_file": null }, - "server_fn_macro_default 0.6.9": { + "server_fn_macro_default 0.5.4": { "name": "server_fn_macro_default", - "version": "0.6.9", + "version": "0.5.4", "package_url": "https://github.com/leptos-rs/leptos", "repository": { "Http": { - "url": "https://static.crates.io/crates/server_fn_macro_default/0.6.9/download", - "sha256": "060af1def72353a779fcc184c53e1965d3055a38b9e827f2259b2bff2d9c371e" + "url": "https://static.crates.io/crates/server_fn_macro_default/0.5.4/download", + "sha256": "7256ba61dfadb220598db418376e7bc2a34b96df36c4dc48f24ffe161810fc0b" } }, "targets": [ @@ -9004,18 +9632,18 @@ "deps": { "common": [ { - "id": "server_fn_macro 0.6.9", + "id": "server_fn_macro 0.5.4", "target": "server_fn_macro" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], "selects": {} }, "edition": "2021", - "version": "0.6.9" + "version": "0.5.4" }, "license": "MIT", "license_ids": [ @@ -9250,7 +9878,7 @@ "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" }, { @@ -9328,6 +9956,68 @@ ], "license_file": "LICENSE-APACHE" }, + "socket2 0.4.9": { + "name": "socket2", + "version": "0.4.9", + "package_url": "https://github.com/rust-lang/socket2", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/socket2/0.4.9/download", + "sha256": "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" + } + }, + "targets": [ + { + "Library": { + "crate_name": "socket2", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "socket2", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "crate_features": { + "common": [ + "all" + ], + "selects": {} + }, + "deps": { + "common": [], + "selects": { + "cfg(unix)": [ + { + "id": "libc 0.2.147", + "target": "libc" + } + ], + "cfg(windows)": [ + { + "id": "winapi 0.3.9", + "target": "winapi" + } + ] + } + }, + "edition": "2018", + "version": "0.4.9" + }, + "license": "MIT OR Apache-2.0", + "license_ids": [ + "Apache-2.0", + "MIT" + ], + "license_file": "LICENSE-APACHE" + }, "socket2 0.5.3": { "name": "socket2", "version": "0.5.3", @@ -9434,7 +10124,7 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { @@ -9463,14 +10153,14 @@ ], "license_file": "LICENSE-APACHE" }, - "syn 2.0.52": { + "syn 2.0.32": { "name": "syn", - "version": "2.0.52", + "version": "2.0.32", "package_url": "https://github.com/dtolnay/syn", "repository": { "Http": { - "url": "https://static.crates.io/crates/syn/2.0.52/download", - "sha256": "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07" + "url": "https://static.crates.io/crates/syn/2.0.32/download", + "sha256": "239814284fd6f1a4ffe4ca893952cdd93c224b6a1571c9a9eadd670295c0c9e2" } }, "targets": [ @@ -9511,11 +10201,11 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { @@ -9526,7 +10216,7 @@ "selects": {} }, "edition": "2021", - "version": "2.0.52" + "version": "2.0.32" }, "license": "MIT OR Apache-2.0", "license_ids": [ @@ -9571,15 +10261,15 @@ "target": "proc_macro_error" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -9701,15 +10391,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -10215,15 +10905,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -10300,20 +10990,20 @@ ], "license_file": "LICENSE" }, - "toml 0.8.10": { - "name": "toml", - "version": "0.8.10", - "package_url": "https://github.com/toml-rs/toml", + "tokio-util 0.7.8": { + "name": "tokio-util", + "version": "0.7.8", + "package_url": "https://github.com/tokio-rs/tokio", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml/0.8.10/download", - "sha256": "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" + "url": "https://static.crates.io/crates/tokio-util/0.7.8/download", + "sha256": "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" } }, "targets": [ { "Library": { - "crate_name": "toml", + "crate_name": "tokio_util", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -10324,64 +11014,71 @@ } } ], - "library_target_name": "toml", + "library_target_name": "tokio_util", "common_attrs": { "compile_data_glob": [ "**" ], "crate_features": { "common": [ + "codec", "default", - "display", - "parse" + "tracing" ], "selects": {} }, "deps": { "common": [ { - "id": "serde 1.0.197", - "target": "serde" + "id": "bytes 1.4.0", + "target": "bytes" + }, + { + "id": "futures-core 0.3.29", + "target": "futures_core" + }, + { + "id": "futures-sink 0.3.29", + "target": "futures_sink" }, { - "id": "serde_spanned 0.6.5", - "target": "serde_spanned" + "id": "pin-project-lite 0.2.12", + "target": "pin_project_lite" }, { - "id": "toml_datetime 0.6.5", - "target": "toml_datetime" + "id": "tokio 1.32.0", + "target": "tokio" }, { - "id": "toml_edit 0.22.6", - "target": "toml_edit" + "id": "tracing 0.1.40", + "target": "tracing" } ], "selects": {} }, "edition": "2021", - "version": "0.8.10" + "version": "0.7.8" }, - "license": "MIT OR Apache-2.0", + "license": "MIT", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": "LICENSE" }, - "toml_datetime 0.6.5": { - "name": "toml_datetime", - "version": "0.6.5", + "toml 0.5.11": { + "name": "toml", + "version": "0.5.11", "package_url": "https://github.com/toml-rs/toml", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_datetime/0.6.5/download", - "sha256": "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" + "url": "https://static.crates.io/crates/toml/0.5.11/download", + "sha256": "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" } }, "targets": [ { "Library": { - "crate_name": "toml_datetime", + "crate_name": "toml", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -10392,50 +11089,50 @@ } } ], - "library_target_name": "toml_datetime", + "library_target_name": "toml", "common_attrs": { "compile_data_glob": [ "**" ], "crate_features": { "common": [ - "serde" + "default" ], "selects": {} }, "deps": { "common": [ { - "id": "serde 1.0.197", + "id": "serde 1.0.186", "target": "serde" } ], "selects": {} }, - "edition": "2021", - "version": "0.6.5" + "edition": "2018", + "version": "0.5.11" }, - "license": "MIT OR Apache-2.0", + "license": "MIT/Apache-2.0", "license_ids": [ "Apache-2.0", "MIT" ], "license_file": "LICENSE-APACHE" }, - "toml_edit 0.22.6": { - "name": "toml_edit", - "version": "0.22.6", - "package_url": "https://github.com/toml-rs/toml", + "tower-service 0.3.2": { + "name": "tower-service", + "version": "0.3.2", + "package_url": "https://github.com/tower-rs/tower", "repository": { "Http": { - "url": "https://static.crates.io/crates/toml_edit/0.22.6/download", - "sha256": "2c1b5fd4128cc8d3e0cb74d4ed9a9cc7c7284becd4df68f5f940e1ad123606f6" + "url": "https://static.crates.io/crates/tower-service/0.3.2/download", + "sha256": "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" } }, "targets": [ { "Library": { - "crate_name": "toml_edit", + "crate_name": "tower_service", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -10446,53 +11143,19 @@ } } ], - "library_target_name": "toml_edit", + "library_target_name": "tower_service", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { - "common": [ - "display", - "parse", - "serde" - ], - "selects": {} - }, - "deps": { - "common": [ - { - "id": "indexmap 2.0.0", - "target": "indexmap" - }, - { - "id": "serde 1.0.197", - "target": "serde" - }, - { - "id": "serde_spanned 0.6.5", - "target": "serde_spanned" - }, - { - "id": "toml_datetime 0.6.5", - "target": "toml_datetime" - }, - { - "id": "winnow 0.6.5", - "target": "winnow" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.22.6" + "edition": "2018", + "version": "0.3.2" }, - "license": "MIT OR Apache-2.0", + "license": "MIT", "license_ids": [ - "Apache-2.0", "MIT" ], - "license_file": "LICENSE-APACHE" + "license_file": "LICENSE" }, "tracing 0.1.40": { "name": "tracing", @@ -10595,15 +11258,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -10889,6 +11552,44 @@ ], "license_file": "LICENSE-APACHE" }, + "try-lock 0.2.4": { + "name": "try-lock", + "version": "0.2.4", + "package_url": "https://github.com/seanmonstar/try-lock", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/try-lock/0.2.4/download", + "sha256": "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" + } + }, + "targets": [ + { + "Library": { + "crate_name": "try_lock", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "try_lock", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "edition": "2015", + "version": "0.2.4" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "typed-builder 0.18.0": { "name": "typed-builder", "version": "0.18.0", @@ -10969,15 +11670,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -11580,6 +12281,53 @@ ], "license_file": "LICENSE-MIT" }, + "want 0.3.1": { + "name": "want", + "version": "0.3.1", + "package_url": "https://github.com/seanmonstar/want", + "repository": { + "Http": { + "url": "https://static.crates.io/crates/want/0.3.1/download", + "sha256": "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" + } + }, + "targets": [ + { + "Library": { + "crate_name": "want", + "crate_root": "src/lib.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } + } + ], + "library_target_name": "want", + "common_attrs": { + "compile_data_glob": [ + "**" + ], + "deps": { + "common": [ + { + "id": "try-lock 0.2.4", + "target": "try_lock" + } + ], + "selects": {} + }, + "edition": "2018", + "version": "0.3.1" + }, + "license": "MIT", + "license_ids": [ + "MIT" + ], + "license_file": "LICENSE" + }, "wasi 0.11.0+wasi-snapshot-preview1": { "name": "wasi", "version": "0.11.0+wasi-snapshot-preview1", @@ -11763,15 +12511,15 @@ "target": "once_cell" }, { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -11892,7 +12640,7 @@ "deps": { "common": [ { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { @@ -11950,15 +12698,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" }, { @@ -12048,70 +12796,6 @@ ], "license_file": "LICENSE-APACHE" }, - "wasm-streams 0.4.0": { - "name": "wasm-streams", - "version": "0.4.0", - "package_url": "https://github.com/MattiasBuelens/wasm-streams/", - "repository": { - "Http": { - "url": "https://static.crates.io/crates/wasm-streams/0.4.0/download", - "sha256": "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" - } - }, - "targets": [ - { - "Library": { - "crate_name": "wasm_streams", - "crate_root": "src/lib.rs", - "srcs": { - "allow_empty": false, - "include": [ - "**/*.rs" - ] - } - } - } - ], - "library_target_name": "wasm_streams", - "common_attrs": { - "compile_data_glob": [ - "**" - ], - "deps": { - "common": [ - { - "id": "futures-util 0.3.29", - "target": "futures_util" - }, - { - "id": "js-sys 0.3.64", - "target": "js_sys" - }, - { - "id": "wasm-bindgen 0.2.87", - "target": "wasm_bindgen" - }, - { - "id": "wasm-bindgen-futures 0.4.37", - "target": "wasm_bindgen_futures" - }, - { - "id": "web-sys 0.3.64", - "target": "web_sys" - } - ], - "selects": {} - }, - "edition": "2021", - "version": "0.4.0" - }, - "license": "MIT OR Apache-2.0", - "license_ids": [ - "Apache-2.0", - "MIT" - ], - "license_file": "LICENSE-APACHE" - }, "web-sys 0.3.64": { "name": "web-sys", "version": "0.3.64", @@ -12264,19 +12948,8 @@ "PopStateEvent", "ProgressEvent", "PromiseRejectionEvent", - "QueuingStrategy", "Range", - "ReadableByteStreamController", "ReadableStream", - "ReadableStreamByobReader", - "ReadableStreamByobRequest", - "ReadableStreamDefaultController", - "ReadableStreamDefaultReader", - "ReadableStreamGetReaderOptions", - "ReadableStreamReadResult", - "ReadableStreamReaderMode", - "ReadableStreamType", - "ReadableWritablePair", "ReferrerPolicy", "Request", "RequestCache", @@ -12292,28 +12965,19 @@ "ShadowRootInit", "ShadowRootMode", "StorageEvent", - "StreamPipeOptions", "SubmitEvent", "SvgElement", "Text", "TouchEvent", - "TransformStream", - "TransformStreamDefaultController", - "Transformer", "TransitionEvent", "TreeWalker", "UiEvent", - "UnderlyingSink", - "UnderlyingSource", "Url", "UrlSearchParams", "WebSocket", "WheelEvent", "Window", "WorkerGlobalScope", - "WritableStream", - "WritableStreamDefaultController", - "WritableStreamDefaultWriter", "console" ], "selects": {} @@ -12388,7 +13052,17 @@ "errhandlingapi", "fileapi", "handleapi", - "processenv" + "impl-debug", + "impl-default", + "minwinbase", + "minwindef", + "processenv", + "timezoneapi", + "winerror", + "winnt", + "winreg", + "ws2ipdef", + "ws2tcpip" ], "selects": {} }, @@ -13218,20 +13892,20 @@ ], "license_file": "license-apache-2.0" }, - "winnow 0.6.5": { - "name": "winnow", - "version": "0.6.5", - "package_url": "https://github.com/winnow-rs/winnow", + "winreg 0.10.1": { + "name": "winreg", + "version": "0.10.1", + "package_url": "https://github.com/gentoo90/winreg-rs", "repository": { "Http": { - "url": "https://static.crates.io/crates/winnow/0.6.5/download", - "sha256": "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" + "url": "https://static.crates.io/crates/winreg/0.10.1/download", + "sha256": "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" } }, "targets": [ { "Library": { - "crate_name": "winnow", + "crate_name": "winreg", "crate_root": "src/lib.rs", "srcs": { "allow_empty": false, @@ -13240,29 +13914,51 @@ ] } } + }, + { + "BuildScript": { + "crate_name": "build_script_build", + "crate_root": "build.rs", + "srcs": { + "allow_empty": false, + "include": [ + "**/*.rs" + ] + } + } } ], - "library_target_name": "winnow", + "library_target_name": "winreg", "common_attrs": { "compile_data_glob": [ "**" ], - "crate_features": { + "deps": { "common": [ - "alloc", - "default", - "std" + { + "id": "winapi 0.3.9", + "target": "winapi" + }, + { + "id": "winreg 0.10.1", + "target": "build_script_build" + } ], "selects": {} }, - "edition": "2021", - "version": "0.6.5" + "edition": "2015", + "version": "0.10.1" + }, + "build_script_attrs": { + "data_glob": [ + "**" + ] }, "license": "MIT", "license_ids": [ "MIT" ], - "license_file": "LICENSE-MIT" + "license_file": "LICENSE" }, "xxhash-rust 0.8.6": { "name": "xxhash-rust", @@ -13444,15 +14140,15 @@ "deps": { "common": [ { - "id": "proc-macro2 1.0.78", + "id": "proc-macro2 1.0.66", "target": "proc_macro2" }, { - "id": "quote 1.0.35", + "id": "quote 1.0.33", "target": "quote" }, { - "id": "syn 2.0.52", + "id": "syn 2.0.32", "target": "syn" } ], @@ -13648,6 +14344,40 @@ "x86_64-unknown-nixos-gnu", "x86_64-unknown-none" ], + "cfg(not(target_arch = \"wasm32\"))": [ + "aarch64-apple-darwin", + "aarch64-apple-ios", + "aarch64-apple-ios-sim", + "aarch64-fuchsia", + "aarch64-linux-android", + "aarch64-pc-windows-msvc", + "aarch64-unknown-linux-gnu", + "aarch64-unknown-nixos-gnu", + "aarch64-unknown-nto-qnx710", + "arm-unknown-linux-gnueabi", + "armv7-linux-androideabi", + "armv7-unknown-linux-gnueabi", + "i686-apple-darwin", + "i686-linux-android", + "i686-pc-windows-msvc", + "i686-unknown-freebsd", + "i686-unknown-linux-gnu", + "powerpc-unknown-linux-gnu", + "riscv32imc-unknown-none-elf", + "riscv64gc-unknown-none-elf", + "s390x-unknown-linux-gnu", + "thumbv7em-none-eabi", + "thumbv8m.main-none-eabi", + "x86_64-apple-darwin", + "x86_64-apple-ios", + "x86_64-fuchsia", + "x86_64-linux-android", + "x86_64-pc-windows-msvc", + "x86_64-unknown-freebsd", + "x86_64-unknown-linux-gnu", + "x86_64-unknown-nixos-gnu", + "x86_64-unknown-none" + ], "cfg(not(target_family = \"wasm\"))": [ "aarch64-apple-darwin", "aarch64-apple-ios", @@ -13848,11 +14578,11 @@ "gloo-net 0.4.0", "humantime 2.1.0", "junit-parser 1.0.0", - "leptos 0.6.9", - "leptos_meta 0.6.9", - "leptos_router 0.6.9", + "leptos 0.5.4", + "leptos_meta 0.5.4", + "leptos_router 0.5.4", "log 0.4.20", - "serde 1.0.197", + "serde 1.0.186", "time 0.3.31", "tokio 1.32.0", "tokio-stream 0.1.14", diff --git a/third_party/rust/WasmCargo.lock b/third_party/rust/WasmCargo.lock index 536433d..f933b6e 100644 --- a/third_party/rust/WasmCargo.lock +++ b/third_party/rust/WasmCargo.lock @@ -62,7 +62,18 @@ checksum = "0e97ce7de6cf12de5d7226c73f5ba9811622f4db3a5b91b55c53e987e5f91cba" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", +] + +[[package]] +name = "async-trait" +version = "0.1.73" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc00ceb34980c03614e35a3a4e218276a0a824e911d07651cd0d858a51e8c0f0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.32", ] [[package]] @@ -74,7 +85,7 @@ dependencies = [ "attribute-derive-macro", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -90,7 +101,7 @@ dependencies = [ "proc-macro2", "quote", "quote-use", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -200,10 +211,11 @@ checksum = "186dce98367766de751c42c4f03970fc60fc012296e706ccbb9d5df9b6c1e271" [[package]] name = "config" -version = "0.14.0" +version = "0.13.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7328b20597b53c2454f0b1919720c25c7339051c02b72b7e05409e00b14132be" +checksum = "d379af7f68bfc21714c6c7dea883544201741d2ce8274bb12fa54f89507f52a7" dependencies = [ + "async-trait", "lazy_static", "nom", "pathdiff", @@ -278,19 +290,6 @@ dependencies = [ "cfg-if", ] -[[package]] -name = "dashmap" -version = "5.5.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "978747c1d849a7d2ee5e8adc0159961c48fb7e5db2f06af6723b80123bb53856" -dependencies = [ - "cfg-if", - "hashbrown", - "lock_api", - "once_cell", - "parking_lot_core", -] - [[package]] name = "deranged" version = "0.3.10" @@ -308,7 +307,7 @@ checksum = "5bc1955a640c4464859ae700fbe48e666da6fdce99ce5fe1acd08dd295889d10" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -358,6 +357,15 @@ version = "1.9.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a26ae43d7bcc3b814de94796a5e736d4029efb0ee900c12e2d54c993ad1a1e07" +[[package]] +name = "encoding_rs" +version = "0.8.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071a31f4ee85403370b58aca746f01041ede6f0da2730960ad001edc2b71b394" +dependencies = [ + "cfg-if", +] + [[package]] name = "equivalent" version = "1.0.1" @@ -445,7 +453,7 @@ checksum = "53b153fd91e4b0147f4aced87be237c98248656bb01050b96bf3ee89220a8ddb" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -549,28 +557,7 @@ dependencies = [ "futures-core", "futures-sink", "gloo-utils 0.2.0", - "http 0.2.9", - "js-sys", - "pin-project", - "serde", - "serde_json", - "thiserror", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - -[[package]] -name = "gloo-net" -version = "0.5.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "43aaa242d1239a8822c15c645f02166398da4f8b5c4bae795c1f5b44e9eee173" -dependencies = [ - "futures-channel", - "futures-core", - "futures-sink", - "gloo-utils 0.2.0", - "http 0.2.9", + "http", "js-sys", "pin-project", "serde", @@ -607,12 +594,37 @@ dependencies = [ "web-sys", ] +[[package]] +name = "h2" +version = "0.3.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97ec8491ebaf99c8eaa73058b045fe58073cd6be7f596ac993ced0b0a0c01049" +dependencies = [ + "bytes", + "fnv", + "futures-core", + "futures-sink", + "futures-util", + "http", + "indexmap 1.9.3", + "slab", + "tokio", + "tokio-util", + "tracing", +] + [[package]] name = "half" version = "1.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "eabb4a44450da02c90444cf74558da904edde8fb4e9035a9a6a4e15445af0bd7" +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + [[package]] name = "hashbrown" version = "0.14.0" @@ -646,22 +658,58 @@ dependencies = [ ] [[package]] -name = "http" -version = "1.1.0" +name = "http-body" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "21b9ddb458710bc376481b842f5da65cdf31522de232c1ca8146abce2a358258" +checksum = "d5f38f16d184e36f2408a55281cd658ecbd3ca05cce6d6510a176eca393e26d1" dependencies = [ "bytes", - "fnv", - "itoa", + "http", + "pin-project-lite", ] +[[package]] +name = "httparse" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d897f394bad6a705d5f4104762e116a75639e470d80901eed05a860a95cb1904" + +[[package]] +name = "httpdate" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" + [[package]] name = "humantime" version = "2.1.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "9a3a5bfb195931eeb336b2a7b4d761daec841b97f947d34394601737a7bba5e4" +[[package]] +name = "hyper" +version = "0.14.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ffb1cfd654a8219eaef89881fdb3bb3b1cdc5fa75ded05d6933b2b382e395468" +dependencies = [ + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "httparse", + "httpdate", + "itoa", + "pin-project-lite", + "socket2 0.4.9", + "tokio", + "tower-service", + "tracing", + "want", +] + [[package]] name = "idna" version = "0.5.0" @@ -672,6 +720,16 @@ dependencies = [ "unicode-normalization", ] +[[package]] +name = "indexmap" +version = "1.9.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bd070e393353796e801d209ad339e89596eb4c8d430d18ede6a1cced8fafbd99" +dependencies = [ + "autocfg", + "hashbrown 0.12.3", +] + [[package]] name = "indexmap" version = "2.0.0" @@ -679,7 +737,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d5477fe2230a79769d8dc68e0eabf5437907c0457a5614a9e8dddb67f65eb65d" dependencies = [ "equivalent", - "hashbrown", + "hashbrown 0.14.0", ] [[package]] @@ -694,11 +752,26 @@ version = "0.3.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "a53088c87cf71c9d4f3372a2cb9eea1e7b8a0b1bf8b7f7d23fe5b76dbb07e63b" +[[package]] +name = "ipnet" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "28b29a3cd74f0f4598934efe3aeba42bae0eb4680554128851ebbecb02af14e6" + [[package]] name = "itertools" -version = "0.12.1" +version = "0.10.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b0fd2260e829bddf4cb6ea802289de2f86d6a7a690192fbe91b3f46e0f2c8473" +dependencies = [ + "either", +] + +[[package]] +name = "itertools" +version = "0.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "ba291022dbbd398a455acf126c1e341954079855bc60dfdda641363bd6922569" +checksum = "b1c173a5686ce8bfa551b3563d0c2170bf24ca44da99c7ca4bfdab5418c3fe57" dependencies = [ "either", ] @@ -737,9 +810,9 @@ checksum = "e2abad23fbc42b3700f2f279844dc832adb2b2eb069b2df918f455c4e18cc646" [[package]] name = "leptos" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "56d079555ff18158a1ed28d2a8ac529b4cb5904490384064346eb2d321addde6" +checksum = "9d02b78d6e38acf8199426058a0d8c4030835d84a4ee16147df25be7fed707e0" dependencies = [ "cfg-if", "leptos_config", @@ -757,9 +830,9 @@ dependencies = [ [[package]] name = "leptos_config" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2d80b4ed5f0447996b9a28879002f995d3770687630f568be41307f362f84cb7" +checksum = "afcaa5db5b22b794b624e14ffe2aefae215b2d21c60a230ae2d06fe21ae5da64" dependencies = [ "config", "regex", @@ -770,9 +843,9 @@ dependencies = [ [[package]] name = "leptos_dom" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2a4b4da3cb6a4dde22e68717482a4b926fb5dd182c12461b27efa37764b29d9a" +checksum = "af459b63567e8e9c921ecbe7863732dc8dcb7874eaad6826b7d3778a53ec0ea6" dependencies = [ "async-recursion", "cfg-if", @@ -780,8 +853,8 @@ dependencies = [ "futures", "getrandom", "html-escape", - "indexmap", - "itertools", + "indexmap 2.0.0", + "itertools 0.10.5", "js-sys", "leptos_reactive", "once_cell", @@ -800,33 +873,33 @@ dependencies = [ [[package]] name = "leptos_hot_reload" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "fb051c7b3bce8368ee30fb57e7b14cdcd573019ea6cd1858b9c697a3519ea099" +checksum = "4ea60376eb80a24b3ab082612d62211e3ea0fc4dee132f7ff34d5fa5a5108cd2" dependencies = [ "anyhow", "camino", - "indexmap", + "indexmap 2.0.0", "parking_lot", "proc-macro2", "quote", "rstml", "serde", - "syn 2.0.52", + "syn 2.0.32", "walkdir", ] [[package]] name = "leptos_macro" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e82c33c8baa07a36c1f0d6149af821be885e6863779bcb24954bf865ad8402b4" +checksum = "a7e96f4c450f4b5e2ccb135c2b1328890f911ca4ee89da9ed6d582df929e6cb5" dependencies = [ "attribute-derive", "cfg-if", "convert_case", "html-escape", - "itertools", + "itertools 0.11.0", "leptos_hot_reload", "prettyplease", "proc-macro-error", @@ -834,19 +907,19 @@ dependencies = [ "quote", "rstml", "server_fn_macro", - "syn 2.0.52", + "syn 2.0.32", "tracing", "uuid", ] [[package]] name = "leptos_meta" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "12b9dac59a2f88f5235dbe17cfa81b738a6f47238a64e4f23b921f1a90a9bf11" +checksum = "983bbf829598d275b01e96bd9fca71e4739dd7b9fdf69cb8898b30ebfb124332" dependencies = [ "cfg-if", - "indexmap", + "indexmap 2.0.0", "leptos", "tracing", "wasm-bindgen", @@ -855,14 +928,14 @@ dependencies = [ [[package]] name = "leptos_reactive" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "93bdcebc9822cc22a72cc9528dd794e1396152c75749ee09959f8272a8c99657" +checksum = "22207568e096ac153ba8da68635e3136c1ec614ea9012736fa861c05bfb2eeff" dependencies = [ "base64", "cfg-if", "futures", - "indexmap", + "indexmap 2.0.0", "js-sys", "paste", "pin-project", @@ -881,20 +954,19 @@ dependencies = [ [[package]] name = "leptos_router" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9460a5dc184fa05d8eb635b687ad3220d02d2d23d6f49c3bf146aa71e427f423" +checksum = "c1a2ff8b8e8ae8b17efd8be2a407f7f83ed57c5243f70f2d03e6635f9ff61848" dependencies = [ "cfg-if", "gloo-net 0.2.6", - "itertools", + "itertools 0.11.0", "js-sys", "lazy_static", "leptos", "linear-map", "once_cell", "percent-encoding", - "send_wrapper", "serde", "serde_json", "serde_qs", @@ -907,9 +979,9 @@ dependencies = [ [[package]] name = "leptos_server" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "654b6ff6a24e79977641b5214452373b1e12fdf4c8a563fadf656c139694b4b9" +checksum = "272d018a5adf33d10ee57e6f0f83dccc305c68613cd207e8a653aeebd4cd5b4f" dependencies = [ "inventory", "lazy_static", @@ -962,7 +1034,7 @@ dependencies = [ "manyhow-macros", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -982,6 +1054,12 @@ version = "2.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "2dffe52ecf27772e601905b7522cb4ef790d2cc203488bbd0e2fe85fcb74566d" +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + [[package]] name = "minimal-lexical" version = "0.2.1" @@ -1123,7 +1201,7 @@ checksum = "4359fd9c9171ec6e8c62926d6faaf553a8dc3f64e1507e76da7911b4f6a04405" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1151,7 +1229,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "6c64d9ba0963cdcea2e1b2230fbae2bab30eb25a174be395c41e764bfb65dd62" dependencies = [ "proc-macro2", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1191,9 +1269,9 @@ dependencies = [ [[package]] name = "proc-macro2" -version = "1.0.78" +version = "1.0.66" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "e2422ad645d89c99f8f3e6b88a9fdeca7fabeac836b1002371c4367c8f984aae" +checksum = "18fb31db3f9bddb2ea821cde30a9f70117e3f119938b5ee630b7403aa6e2ead9" dependencies = [ "unicode-ident", ] @@ -1206,7 +1284,7 @@ checksum = "af066a9c399a26e020ada66a034357a868728e72cd426f3adcd35f80d88d88c8" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", "version_check", "yansi", ] @@ -1222,9 +1300,9 @@ dependencies = [ [[package]] name = "quote" -version = "1.0.35" +version = "1.0.33" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "291ec9ab5efd934aaf503a6466c5d5251535d108ee747472c3977cc5acc868ef" +checksum = "5267fca4496028628a95160fc423a33e8b2e6af8a5302579e322e4b520293cae" dependencies = [ "proc-macro2", ] @@ -1238,7 +1316,7 @@ dependencies = [ "derive-where", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1279,6 +1357,40 @@ version = "0.7.4" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "e5ea92a5b6195c6ef2a0295ea818b312502c6fc94dde986c5553242e18fd4ce2" +[[package]] +name = "reqwest" +version = "0.11.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cde824a14b7c14f85caff81225f411faacc04a2013f41670f41443742b1c1c55" +dependencies = [ + "base64", + "bytes", + "encoding_rs", + "futures-core", + "futures-util", + "h2", + "http", + "http-body", + "hyper", + "ipnet", + "js-sys", + "log", + "mime", + "once_cell", + "percent-encoding", + "pin-project-lite", + "serde", + "serde_json", + "serde_urlencoded", + "tokio", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "winreg", +] + [[package]] name = "rstml" version = "0.11.2" @@ -1288,7 +1400,7 @@ dependencies = [ "proc-macro2", "proc-macro2-diagnostics", "quote", - "syn 2.0.52", + "syn 2.0.32", "syn_derive", "thiserror", ] @@ -1332,29 +1444,20 @@ version = "1.0.1" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4c309e515543e67811222dbc9e3dd7e1056279b782e1dacffe4242b718734fb6" -[[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.197" +version = "1.0.186" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3fb1c873e1b9b056a4dc4c0c198b24c3ffa059243875552b2bd0933b1aee4ce2" +checksum = "9f5db24220c009de9bd45e69fb2938f4b6d2df856aa9304ce377b3180f83b7c1" dependencies = [ "serde_derive", ] [[package]] name = "serde-wasm-bindgen" -version = "0.6.5" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8302e169f0eddcc139c70f139d19d6467353af16f9fce27e8c30158036a1e16b" +checksum = "f3b143e2833c57ab9ad3ea280d21fd34e285a42837aeb0ee301f4f41890fa00e" dependencies = [ "js-sys", "serde", @@ -1363,13 +1466,13 @@ dependencies = [ [[package]] name = "serde_derive" -version = "1.0.197" +version = "1.0.186" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7eb0b34b42edc17f6b7cac84a52a1c5f0e1bb2227e997ca9011ea3dd34e8610b" +checksum = "5ad697f7e0b65af4983a4ce8f56ed5b357e8d3c36651bf6a7e13639c17b8e670" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1395,74 +1498,73 @@ dependencies = [ ] [[package]] -name = "serde_spanned" -version = "0.6.5" +name = "serde_test" +version = "1.0.176" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eb3622f419d1296904700073ea6cc23ad690adbd66f13ea683df73298736f0c1" +checksum = "5a2f49ace1498612d14f7e0b8245519584db8299541dfe31a06374a828d620ab" dependencies = [ "serde", ] [[package]] -name = "serde_test" -version = "1.0.176" +name = "serde_urlencoded" +version = "0.7.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5a2f49ace1498612d14f7e0b8245519584db8299541dfe31a06374a828d620ab" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" dependencies = [ + "form_urlencoded", + "itoa", + "ryu", "serde", ] [[package]] name = "server_fn" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2955da1dc5fcd970c182ebf1089af6c5f19051e1f286a21f7b96490a49b7a531" +checksum = "cfed18dfcc8d9004579c40482c3419c07f60ffb9c5b250542edca99f508b0ce9" dependencies = [ - "bytes", "ciborium", "const_format", - "dashmap", - "futures", - "gloo-net 0.5.0", - "http 1.1.0", + "gloo-net 0.2.6", "js-sys", + "lazy_static", "once_cell", - "send_wrapper", + "proc-macro2", + "quote", + "reqwest", "serde", "serde_json", "serde_qs", "server_fn_macro_default", + "syn 2.0.32", "thiserror", - "url", - "wasm-bindgen", - "wasm-bindgen-futures", - "wasm-streams", - "web-sys", "xxhash-rust", ] [[package]] name = "server_fn_macro" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "adfdd051ef905fdb3da20942b0c52d536158d7489a724e14cc2fd47323e7ca91" +checksum = "0b70ae8e22546ba85500391b36c08e3fba64871be8a26557a3663a8e08acb56f" dependencies = [ "const_format", - "convert_case", + "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.52", + "serde", + "syn 2.0.32", "xxhash-rust", ] [[package]] name = "server_fn_macro_default" -version = "0.6.9" +version = "0.5.4" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "060af1def72353a779fcc184c53e1965d3055a38b9e827f2259b2bff2d9c371e" +checksum = "7256ba61dfadb220598db418376e7bc2a34b96df36c4dc48f24ffe161810fc0b" dependencies = [ "server_fn_macro", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1508,6 +1610,16 @@ version = "1.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "62bb4feee49fdd9f707ef802e22365a35de4b7b299de4763d44bfea899442ff9" +[[package]] +name = "socket2" +version = "0.4.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "64a4a911eed85daf18834cfaa86a79b7d266ff93ff5ba14005426219480ed662" +dependencies = [ + "libc", + "winapi", +] + [[package]] name = "socket2" version = "0.5.3" @@ -1530,9 +1642,9 @@ dependencies = [ [[package]] name = "syn" -version = "2.0.52" +version = "2.0.32" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b699d15b36d1f02c3e7c69f8ffef53de37aefae075d8488d4ba1a7788d574a07" +checksum = "239814284fd6f1a4ffe4ca893952cdd93c224b6a1571c9a9eadd670295c0c9e2" dependencies = [ "proc-macro2", "quote", @@ -1548,7 +1660,7 @@ dependencies = [ "proc-macro-error", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1568,7 +1680,7 @@ checksum = "6bb623b56e39ab7dcd4b1b98bb6c8f8d907ed255b18de254088016b27a8ee19b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1639,7 +1751,7 @@ dependencies = [ "parking_lot", "pin-project-lite", "signal-hook-registry", - "socket2", + "socket2 0.5.3", "tokio-macros", "windows-sys", ] @@ -1652,7 +1764,7 @@ checksum = "630bdcf245f78637c13ec01ffae6187cca34625e8c63150d424b59e55af2675e" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1667,38 +1779,33 @@ dependencies = [ ] [[package]] -name = "toml" -version = "0.8.10" +name = "tokio-util" +version = "0.7.8" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9a9aad4a3066010876e8dcf5a8a06e70a558751117a145c6ce2b82c2e2054290" +checksum = "806fe8c2c87eccc8b3267cbae29ed3ab2d0bd37fca70ab622e46aaa9375ddb7d" dependencies = [ - "serde", - "serde_spanned", - "toml_datetime", - "toml_edit", + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", + "tracing", ] [[package]] -name = "toml_datetime" -version = "0.6.5" +name = "toml" +version = "0.5.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "3550f4e9685620ac18a50ed434eb3aec30db8ba93b0287467bca5826ea25baf1" +checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234" dependencies = [ "serde", ] [[package]] -name = "toml_edit" -version = "0.22.6" +name = "tower-service" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "2c1b5fd4128cc8d3e0cb74d4ed9a9cc7c7284becd4df68f5f940e1ad123606f6" -dependencies = [ - "indexmap", - "serde", - "serde_spanned", - "toml_datetime", - "winnow", -] +checksum = "b6bc1c9ce2b5135ac7f93c72918fc37feb872bdc6a5533a8b85eb4b86bfdae52" [[package]] name = "tracing" @@ -1719,7 +1826,7 @@ checksum = "34704c8d6ebcbc939824180af020566b01a7c01f80641264eba0999f6c2b6be7" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1770,6 +1877,12 @@ dependencies = [ "web-sys", ] +[[package]] +name = "try-lock" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3528ecfd12c466c6f163363caf2d02a71161dd5e1cc6ae7b34207ea2d42d81ed" + [[package]] name = "typed-builder" version = "0.18.0" @@ -1787,7 +1900,7 @@ checksum = "982ee4197351b5c9782847ef5ec1fdcaf50503fb19d68f9771adae314e72b492" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] @@ -1880,6 +1993,15 @@ dependencies = [ "winapi-util", ] +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + [[package]] name = "wasi" version = "0.11.0+wasi-snapshot-preview1" @@ -1907,7 +2029,7 @@ dependencies = [ "once_cell", "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", "wasm-bindgen-shared", ] @@ -1941,7 +2063,7 @@ checksum = "54681b18a46765f095758388f2d0cf16eb8d4169b639ab575a8f5693af210c7b" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", "wasm-bindgen-backend", "wasm-bindgen-shared", ] @@ -1952,19 +2074,6 @@ version = "0.2.87" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "ca6ad05a4870b2bf5fe995117d3728437bd27d7cd5f06f13c17443ef369775a1" -[[package]] -name = "wasm-streams" -version = "0.4.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "b65dc4c90b63b118468cf747d8bf3566c1913ef60be765b5730ead9e0a3ba129" -dependencies = [ - "futures-util", - "js-sys", - "wasm-bindgen", - "wasm-bindgen-futures", - "web-sys", -] - [[package]] name = "web-sys" version = "0.3.64" @@ -2073,12 +2182,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d419259aba16b663966e29e6d7c6ecfa0bb8425818bb96f6f1f3c3eb71a6e7b9" [[package]] -name = "winnow" -version = "0.6.5" +name = "winreg" +version = "0.10.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "dffa400e67ed5a4dd237983829e66475f0a4a26938c4b04c21baede6262215b8" +checksum = "80d0f4e272c85def139476380b12f9ac60926689dd2e01d4923222f40580869d" dependencies = [ - "memchr", + "winapi", ] [[package]] @@ -2110,7 +2219,7 @@ checksum = "9ce1b18ccd8e73a9321186f97e46f9f04b778851177567b1975109d26a08d2a6" dependencies = [ "proc-macro2", "quote", - "syn 2.0.52", + "syn 2.0.32", ] [[package]] diff --git a/third_party/rust/deps.bzl b/third_party/rust/deps.bzl index 2a724da..33dc65d 100644 --- a/third_party/rust/deps.bzl +++ b/third_party/rust/deps.bzl @@ -153,18 +153,18 @@ def rust_dependencies(): version = "1", ), "leptos": crate.spec( - version = "0.6.9", + version = "0.5.4", features = ["ssr"], ), "leptos_actix": crate.spec( - version = "0.6.9", + version = "0.5.4", ), "leptos_meta": crate.spec( - version = "0.6.9", + version = "0.5.4", features = ["ssr"], ), "leptos_router": crate.spec( - version = "0.6.9", + version = "0.5.4", features = ["ssr"], ), "log": crate.spec( @@ -315,15 +315,15 @@ def rust_dependencies(): version = "1.0.75", ), "leptos": crate.spec( - version = "0.6.9", + version = "0.5.4", features = ["hydrate"], ), "leptos_meta": crate.spec( - version = "0.6.9", + version = "0.5.4", features = ["hydrate"], ), "leptos_router": crate.spec( - version = "0.6.9", + version = "0.5.4", features = ["hydrate"], ), "gloo-file": crate.spec(