diff --git a/.gitignore b/.gitignore index 1c1104414..132cd5131 100644 --- a/.gitignore +++ b/.gitignore @@ -18,3 +18,15 @@ devAssets *.tfbackend !*.tfbackend.example crash.log + +/build +/target/ +/gen/schemas + +# Tauri +/src-tauri/target/ +/src-tauri/gen/ +dist-js + +# Worktrees +.worktrees \ No newline at end of file diff --git a/.prettierignore b/.prettierignore index dd3a20e64..76f445e5c 100644 --- a/.prettierignore +++ b/.prettierignore @@ -5,4 +5,7 @@ package-lock.json LICENSE README.md CHANGELOG.md -./changeset \ No newline at end of file +./changeset +src/app/generated +crates/ +src-tauri/ \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json index 29e56e92a..67cc799e6 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -7,5 +7,8 @@ }, "[json]": { "editor.defaultFormatter": "esbenp.prettier-vscode" + }, + "[rust]": { + "editor.defaultFormatter": "rust-lang.rust-analyzer" } } diff --git a/crates/sable-macros/Cargo.toml b/crates/sable-macros/Cargo.toml new file mode 100644 index 000000000..867c3bed3 --- /dev/null +++ b/crates/sable-macros/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "sable-macros" +version = "0.1.0" +edition = "2024" + +[lib] +proc-macro = true + +[dependencies] +proc-macro2 = "1" +quote = "1" +syn = { version = "2", features = ["full"] } diff --git a/crates/sable-macros/src/lib.rs b/crates/sable-macros/src/lib.rs new file mode 100644 index 000000000..7c0a94e53 --- /dev/null +++ b/crates/sable-macros/src/lib.rs @@ -0,0 +1,154 @@ +use proc_macro::TokenStream; +use proc_macro2::TokenStream as TokenStream2; +use quote::quote; +use syn::{ + parse::{Parse, ParseStream}, + parse_macro_input, Attribute, Path, Token, +}; + +struct CommandItem { + /// The tokens inside `#[cfg(...)]`, e.g. `desktop` or `target_os = "windows"`. + /// `None` means the command is always compiled in. + cfg_tokens: Option, + path: Path, +} + +struct CommandList(Vec); + +impl Parse for CommandList { + fn parse(input: ParseStream) -> syn::Result { + let mut items = vec![]; + while !input.is_empty() { + let attrs = Attribute::parse_outer(input)?; + let path: Path = input.parse()?; + + // Extract the first #[cfg(...)] attribute if present. + // Any other attributes are ignored (they wouldn't make sense here anyway). + let cfg_tokens = attrs.iter().find_map(|attr| { + if !attr.path().is_ident("cfg") { + return None; + } + attr.meta + .require_list() + .ok() + .map(|list| list.tokens.clone()) + }); + + items.push(CommandItem { cfg_tokens, path }); + + // Consume optional trailing comma + if input.peek(Token![,]) { + let _ = input.parse::(); + } + } + Ok(CommandList(items)) + } +} + +/// A drop-in replacement for `tauri_specta::collect_commands!` that supports +/// `#[cfg(...)]` attributes on individual commands. +/// +/// # Example +/// ```rust +/// collect_commands![ +/// #[cfg(desktop)] +/// desktop_tray::set_close_to_tray_enabled, +/// windows::snap_overlay::show_snap_overlay, +/// windows::snap_overlay::hide_snap_overlay, +/// ] +/// ``` +/// +/// # How it works +/// +/// For each unique cfg predicate P found in the list the macro generates two +/// complete `tauri_specta::internal::command(generate_handler![...], +/// collect_functions![...])` calls — one for `#[cfg(P)]` (including those +/// commands) and one for `#[cfg(not(P))]` (excluding them). The compiler +/// picks exactly one branch per target, so every command path only needs to +/// exist on the targets where its cfg condition is true. +/// +/// For N distinct predicates, 2^N branches are emitted. In practice only +/// `#[cfg(desktop)]` is used so this is always just two branches. +#[proc_macro] +pub fn collect_commands(input: TokenStream) -> TokenStream { + let CommandList(items) = parse_macro_input!(input as CommandList); + + // Collect the unique cfg predicates present in this invocation. + let mut predicates: Vec = vec![]; + for item in &items { + if let Some(cfg) = &item.cfg_tokens { + let key = cfg.to_string(); + if !predicates + .iter() + .any(|p: &TokenStream2| p.to_string() == key) + { + predicates.push(cfg.clone()); + } + } + } + + let n = predicates.len(); + let num_variants = 1usize << n; // 2^n — always at least 1 + + let mut branches: Vec = vec![]; + + for variant in 0..num_variants { + // For variant `v`, bit `i` being set means predicate[i] is "active" + // (true) for this branch. + + // Build `#[cfg(all(pred0_or_not, pred1_or_not, ...))]` + let conditions: Vec = predicates + .iter() + .enumerate() + .map(|(i, pred)| { + if variant & (1 << i) != 0 { + quote! { #pred } + } else { + quote! { not(#pred) } + } + }) + .collect(); + + let cfg_guard: TokenStream2 = if conditions.is_empty() { + // No predicates at all — unconditional (wrapping in all() is valid). + quote! {} + } else { + quote! { #[cfg(all(#(#conditions),*))] } + }; + + // Collect commands that are visible in this variant: + // - always-on commands (no cfg attribute) are always included + // - cfg-gated commands are included only when their predicate bit is set + let variant_paths: Vec<&Path> = items + .iter() + .filter(|item| match &item.cfg_tokens { + None => true, // always-on + Some(cfg) => { + let key = cfg.to_string(); + let idx = predicates + .iter() + .position(|p| p.to_string() == key) + .unwrap(); + variant & (1 << idx) != 0 + } + }) + .map(|item| &item.path) + .collect(); + + branches.push(quote! { + #cfg_guard + let __commands = ::tauri_specta::internal::command( + ::tauri::generate_handler![#(#variant_paths),*], + ::specta::function::collect_functions![#(#variant_paths),*], + ); + }); + } + + quote! { + { + #(#branches)* + __commands + } + } + .into() +} diff --git a/crates/tauri-plugin-splashscreen/.gitignore b/crates/tauri-plugin-splashscreen/.gitignore new file mode 100644 index 000000000..48f0cd55c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/.gitignore @@ -0,0 +1,18 @@ +/.vs +.DS_Store +.Thumbs.db +*.sublime* +.idea/ +debug.log +package-lock.json +.vscode/settings.json +yarn.lock + +/.tauri +/.gradle +/target +Cargo.lock +node_modules/ + +dist-js +dist diff --git a/crates/tauri-plugin-splashscreen/Cargo.lock b/crates/tauri-plugin-splashscreen/Cargo.lock new file mode 100644 index 000000000..0c51f38c1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/Cargo.lock @@ -0,0 +1,4715 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 3 + +[[package]] +name = "adler2" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "320119579fcad9c21884f5c4861d16174d0e06250625266f50fe6898340abefa" + +[[package]] +name = "aho-corasick" +version = "1.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddd31a130427c27518df266943a5308ed92d4b226cc639f5a8f1002816174301" +dependencies = [ + "memchr", +] + +[[package]] +name = "alloc-no-stdlib" +version = "2.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cc7bb162ec39d46ab1ca8c77bf72e890535becd1751bb45f64c597edb4c8c6b3" + +[[package]] +name = "alloc-stdlib" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94fb8275041c72129eb51b7d0322c29b8387a0386127718b096429201a5d6ece" +dependencies = [ + "alloc-no-stdlib", +] + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anyhow" +version = "1.0.102" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f202df86484c868dbad7eaa557ef785d5c66295e41b460ef922eca0723b842c" + +[[package]] +name = "atk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "241b621213072e993be4f6f3a9e4b45f65b7e6faad43001be957184b7bb1824b" +dependencies = [ + "atk-sys", + "glib", + "libc", +] + +[[package]] +name = "atk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c5e48b684b0ca77d2bbadeef17424c2ea3c897d44d566a1617e7e8f30614d086" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "autocfg" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c08606f8c3cbf4ce6ec8e28fb0014a2c086708fe954eaa885384a6165172e7e8" + +[[package]] +name = "base64" +version = "0.21.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d297deb1925b89f2ccc13d7635fa0714f12c87adce1c75356b39ca9b7178567" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "bitflags" +version = "1.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bef38d45163c2f1dde094a7dfd33ccf595c92905c8f8f4fdc18d06fb1037718a" + +[[package]] +name = "bitflags" +version = "2.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843867be96c8daad0d758b57df9392b6d8d271134fce549de6ce169ff98a92af" +dependencies = [ + "serde_core", +] + +[[package]] +name = "block-buffer" +version = "0.10.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3078c7629b62d3f0439517fa394996acacc5cbc91c5a20d8c658e77abd503a71" +dependencies = [ + "generic-array", +] + +[[package]] +name = "block2" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cdeb9d870516001442e364c5220d3574d2da8dc765554b4a617230d33fa58ef5" +dependencies = [ + "objc2", +] + +[[package]] +name = "brotli" +version = "8.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bd8b9603c7aa97359dbd97ecf258968c95f3adddd6db2f7e7a5bef101c84560" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", + "brotli-decompressor", +] + +[[package]] +name = "brotli-decompressor" +version = "5.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "874bb8112abecc98cbd6d81ea4fa7e94fb9449648c93cc89aa40c81c24d7de03" +dependencies = [ + "alloc-no-stdlib", + "alloc-stdlib", +] + +[[package]] +name = "bumpalo" +version = "3.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d20789868f4b01b2f2caec9f5c4e0213b41e3e5702a50157d699ae31ced2fcb" + +[[package]] +name = "bytemuck" +version = "1.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8efb64bd706a16a1bdde310ae86b351e4d21550d98d056f22f8a7f7a2183fec" + +[[package]] +name = "byteorder" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd0f2584146f6f2ef48085050886acf353beff7305ebd1ae69500e27c67f64b" + +[[package]] +name = "bytes" +version = "1.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e748733b7cbc798e1434b6ac524f0c1ff2ab456fe201501e6497c8417a4fc33" +dependencies = [ + "serde", +] + +[[package]] +name = "cairo-rs" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ca26ef0159422fb77631dc9d17b102f253b876fe1586b03b803e63a309b4ee2" +dependencies = [ + "bitflags 2.11.0", + "cairo-sys-rs", + "glib", + "libc", + "once_cell", + "thiserror 1.0.69", +] + +[[package]] +name = "cairo-sys-rs" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "685c9fa8e590b8b3d678873528d83411db17242a73fccaed827770ea0fedda51" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "camino" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e629a66d692cb9ff1a1c664e41771b3dcaf961985a9774c0eb0bd1b51cf60a48" +dependencies = [ + "serde_core", +] + +[[package]] +name = "cargo-platform" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e35af189006b9c0f00a064685c727031e3ed2d8020f7ba284d78cc2671bd36ea" +dependencies = [ + "serde", +] + +[[package]] +name = "cargo_metadata" +version = "0.19.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dd5eb614ed4c27c5d706420e4320fbe3216ab31fa1c33cd8246ac36dae4479ba" +dependencies = [ + "camino", + "cargo-platform", + "semver", + "serde", + "serde_json", + "thiserror 2.0.18", +] + +[[package]] +name = "cargo_toml" +version = "0.22.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "374b7c592d9c00c1f4972ea58390ac6b18cbb6ab79011f3bdc90a0b82ca06b77" +dependencies = [ + "serde", + "toml 0.9.12+spec-1.1.0", +] + +[[package]] +name = "cc" +version = "1.2.56" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aebf35691d1bfb0ac386a69bac2fde4dd276fb618cf8bf4f5318fe285e821bb2" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cesu8" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6d43a04d8753f35258c91f8ec639f792891f748a1edbd759cf1dcea3382ad83c" + +[[package]] +name = "cfb" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38f2da7a0a2c4ccf0065be06397cc26a81f4e528be095826eee9d4adbb8c60f" +dependencies = [ + "byteorder", + "fnv", + "uuid", +] + +[[package]] +name = "cfg-expr" +version = "0.15.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d067ad48b8650848b989a59a86c6c36a995d02d2bf778d45c3c5d57bc2718f02" +dependencies = [ + "smallvec", + "target-lexicon", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "chrono" +version = "0.4.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c673075a2e0e5f4a1dde27ce9dee1ea4558c7ffe648f576438a20ca1d2acc4b0" +dependencies = [ + "iana-time-zone", + "num-traits", + "serde", + "windows-link 0.2.1", +] + +[[package]] +name = "combine" +version = "4.6.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba5a308b75df32fe02788e748662718f03fde005016435c444eea572398219fd" +dependencies = [ + "bytes", + "memchr", +] + +[[package]] +name = "convert_case" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6245d59a3e82a7fc217c5828a6692dbc6dfb63a0c8c90495621f7b9d79704a0e" + +[[package]] +name = "cookie" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ddef33a339a91ea89fb53151bd0a4689cfce27055c291dfa69945475d22c747" +dependencies = [ + "time", + "version_check", +] + +[[package]] +name = "core-foundation" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2a6cd9ae233e7f62ba4e9353e81a88df7fc8a5987b8d445b4d90c879bd156f6" +dependencies = [ + "core-foundation-sys", + "libc", +] + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "core-graphics" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "064badf302c3194842cf2c5d61f56cc88e54a759313879cdf03abdd27d0c3b97" +dependencies = [ + "bitflags 2.11.0", + "core-foundation", + "core-graphics-types", + "foreign-types", + "libc", +] + +[[package]] +name = "core-graphics-types" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d44a101f213f6c4cdc1853d4b78aef6db6bdfa3468798cc1d9912f4735013eb" +dependencies = [ + "bitflags 2.11.0", + "core-foundation", + "libc", +] + +[[package]] +name = "cpufeatures" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "59ed5838eebb26a2bb2e58f6d5b5316989ae9d08bab10e0e6d103e656d1b0280" +dependencies = [ + "libc", +] + +[[package]] +name = "crc32fast" +version = "1.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9481c1c90cbf2ac953f07c8d4a58aa3945c425b7185c9154d67a65e4230da511" +dependencies = [ + "cfg-if", +] + +[[package]] +name = "crossbeam-channel" +version = "0.5.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82b8f8f868b36967f9606790d1903570de9ceaf870a7bf9fbbd3016d636a2cb2" +dependencies = [ + "crossbeam-utils", +] + +[[package]] +name = "crossbeam-utils" +version = "0.8.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0a5c400df2834b80a4c3327b3aad3a4c4cd4de0629063962b03235697506a28" + +[[package]] +name = "crypto-common" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "78c8292055d1c1df0cce5d180393dc8cce0abec0a7102adb6c7b1eef6016d60a" +dependencies = [ + "generic-array", + "typenum", +] + +[[package]] +name = "cssparser" +version = "0.29.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f93d03419cb5950ccfd3daf3ff1c7a36ace64609a1a8746d493df1ca0afde0fa" +dependencies = [ + "cssparser-macros", + "dtoa-short", + "itoa", + "matches", + "phf 0.10.1", + "proc-macro2", + "quote", + "smallvec", + "syn 1.0.109", +] + +[[package]] +name = "cssparser-macros" +version = "0.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13b588ba4ac1a99f7f2964d24b3d896ddc6bf847ee3855dbd4366f058cfcd331" +dependencies = [ + "quote", + "syn 2.0.117", +] + +[[package]] +name = "ctor" +version = "0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a2785755761f3ddc1492979ce1e48d2c00d09311c39e4466429188f3dd6501" +dependencies = [ + "quote", + "syn 2.0.117", +] + +[[package]] +name = "darling" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9cdf337090841a411e2a7f3deb9187445851f91b309c0c0a29e05f74a00a48c0" +dependencies = [ + "darling_core", + "darling_macro", +] + +[[package]] +name = "darling_core" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1247195ecd7e3c85f83c8d2a366e4210d588e802133e1e355180a9870b517ea4" +dependencies = [ + "fnv", + "ident_case", + "proc-macro2", + "quote", + "strsim", + "syn 2.0.117", +] + +[[package]] +name = "darling_macro" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d38308df82d1080de0afee5d069fa14b0326a88c14f15c5ccda35b4a6c414c81" +dependencies = [ + "darling_core", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "deranged" +version = "0.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cd812cc2bc1d69d4764bd80df88b4317eaef9e773c75226407d9bc0876b211c" +dependencies = [ + "powerfmt", + "serde_core", +] + +[[package]] +name = "derive_more" +version = "0.99.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6edb4b64a43d977b8e99788fe3a04d483834fba1215a7e02caa415b626497f7f" +dependencies = [ + "convert_case", + "proc-macro2", + "quote", + "rustc_version", + "syn 2.0.117", +] + +[[package]] +name = "digest" +version = "0.10.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ed9a281f7bc9b7576e61468ba615a66a5c8cfdff42420a70aa82701a3b1e292" +dependencies = [ + "block-buffer", + "crypto-common", +] + +[[package]] +name = "dirs" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3e8aa94d75141228480295a7d0e7feb620b1a5ad9f12bc40be62411e38cce4e" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e01a3366d27ee9890022452ee61b2b63a67e6f13f58900b651ff5665f0bb1fab" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.61.2", +] + +[[package]] +name = "dispatch2" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e0e367e4e7da84520dedcac1901e4da967309406d1e51017ae1abfb97adbd38" +dependencies = [ + "bitflags 2.11.0", + "block2", + "libc", + "objc2", +] + +[[package]] +name = "displaydoc" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "97369cbbc041bc366949bc74d34658d6cda5621039731c6310521892a3a20ae0" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "dlopen2" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e2c5bd4158e66d1e215c49b837e11d62f3267b30c92f1d171c4d3105e3dc4d4" +dependencies = [ + "dlopen2_derive", + "libc", + "once_cell", + "winapi", +] + +[[package]] +name = "dlopen2_derive" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fbbb781877580993a8707ec48672673ec7b81eeba04cfd2310bd28c08e47c8f" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "dpi" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d8b14ccef22fc6f5a8f4d7d768562a182c04ce9a3b3157b91390b52ddfdf1a76" +dependencies = [ + "serde", +] + +[[package]] +name = "dtoa" +version = "1.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c3cf4824e2d5f025c7b531afcb2325364084a16806f6d47fbc1f5fbd9960590" + +[[package]] +name = "dtoa-short" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cd1511a7b6a56299bd043a9c167a6d2bfb37bf84a6dfceaba651168adfb43c87" +dependencies = [ + "dtoa", +] + +[[package]] +name = "dunce" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92773504d58c093f6de2459af4af33faa518c13451eb8f2b5698ed3d36e7c813" + +[[package]] +name = "dyn-clone" +version = "1.0.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d0881ea181b1df73ff77ffaaf9c7544ecc11e82fba9b5f27b262a3c73a332555" + +[[package]] +name = "embed-resource" +version = "3.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55a075fc573c64510038d7ee9abc7990635863992f83ebc52c8b433b8411a02e" +dependencies = [ + "cc", + "memchr", + "rustc_version", + "toml 0.9.12+spec-1.1.0", + "vswhom", + "winreg", +] + +[[package]] +name = "embed_plist" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ef6b89e5b37196644d8796de5268852ff179b44e96276cf4290264843743bb7" + +[[package]] +name = "equivalent" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "877a4ace8713b0bcf2a4e7eec82529c029f1d0619886d18145fea96c3ffe5c0f" + +[[package]] +name = "erased-serde" +version = "0.4.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d2add8a07dd6a8d93ff627029c51de145e12686fbc36ecb298ac22e74cf02dec" +dependencies = [ + "serde", + "serde_core", + "typeid", +] + +[[package]] +name = "fdeflate" +version = "0.3.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e6853b52649d4ac5c0bd02320cddc5ba956bdb407c4b75a2c6b75bf51500f8c" +dependencies = [ + "simd-adler32", +] + +[[package]] +name = "field-offset" +version = "0.3.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38e2275cc4e4fc009b0669731a1e5ab7ebf11f469eaede2bab9309a5b4d6057f" +dependencies = [ + "memoffset", + "rustc_version", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "flate2" +version = "1.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "843fba2746e448b37e26a819579957415c8cef339bf08564fe8b7ddbd959573c" +dependencies = [ + "crc32fast", + "miniz_oxide", +] + +[[package]] +name = "fnv" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9eec918d3f24069decb9af1554cad7c880e2da24a9afd88aca000531ab82c1" + +[[package]] +name = "foldhash" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9c4f5dac5e15c24eb999c26181a6ca40b39fe946cbe4c263c7209467bc83af2" + +[[package]] +name = "foreign-types" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d737d9aa519fb7b749cbc3b962edcf310a8dd1f4b67c91c4f83975dbdd17d965" +dependencies = [ + "foreign-types-macros", + "foreign-types-shared", +] + +[[package]] +name = "foreign-types-macros" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a5c6c585bc94aaf2c7b51dd4c2ba22680844aba4c687be581871a6f518c5742" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "foreign-types-shared" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aa9a19cbb55df58761df49b23516a86d432839add4af60fc256da840f66ed35b" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df420e2e84819663797d1ec6544b13c5be84629e7bb00dc960d6917db2987843" +dependencies = [ + "mac", + "new_debug_unreachable", +] + +[[package]] +name = "futures-channel" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" +dependencies = [ + "futures-core", +] + +[[package]] +name = "futures-core" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" + +[[package]] +name = "futures-executor" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "baf29c38818342a3b26b5b923639e7b1f4a61fc5e76102d4b1981c6dc7a7579d" +dependencies = [ + "futures-core", + "futures-task", + "futures-util", +] + +[[package]] +name = "futures-io" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" + +[[package]] +name = "futures-macro" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e835b70203e41293343137df5c0664546da5745f82ec9b84d40be8336958447b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "futures-sink" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" + +[[package]] +name = "futures-task" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" + +[[package]] +name = "futures-util" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" +dependencies = [ + "futures-core", + "futures-io", + "futures-macro", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "slab", +] + +[[package]] +name = "fxhash" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c31b6d751ae2c7f11320402d34e41349dd1016f8d5d45e48c4312bc8625af50c" +dependencies = [ + "byteorder", +] + +[[package]] +name = "gdk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9f245958c627ac99d8e529166f9823fb3b838d1d41fd2b297af3075093c2691" +dependencies = [ + "cairo-rs", + "gdk-pixbuf", + "gdk-sys", + "gio", + "glib", + "libc", + "pango", +] + +[[package]] +name = "gdk-pixbuf" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50e1f5f1b0bfb830d6ccc8066d18db35c487b1b2b1e8589b5dfe9f07e8defaec" +dependencies = [ + "gdk-pixbuf-sys", + "gio", + "glib", + "libc", + "once_cell", +] + +[[package]] +name = "gdk-pixbuf-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f9839ea644ed9c97a34d129ad56d38a25e6756f99f3a88e15cd39c20629caf7" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gdk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c2d13f38594ac1e66619e188c6d5a1adb98d11b2fcf7894fc416ad76aa2f3f7" +dependencies = [ + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gdkwayland-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "140071d506d223f7572b9f09b5e155afbd77428cd5cc7af8f2694c41d98dfe69" +dependencies = [ + "gdk-sys", + "glib-sys", + "gobject-sys", + "libc", + "pkg-config", + "system-deps", +] + +[[package]] +name = "gdkx11" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3caa00e14351bebbc8183b3c36690327eb77c49abc2268dd4bd36b856db3fbfe" +dependencies = [ + "gdk", + "gdkx11-sys", + "gio", + "glib", + "libc", + "x11", +] + +[[package]] +name = "gdkx11-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e2e7445fe01ac26f11601db260dd8608fe172514eb63b3b5e261ea6b0f4428d" +dependencies = [ + "gdk-sys", + "glib-sys", + "libc", + "system-deps", + "x11", +] + +[[package]] +name = "generic-array" +version = "0.14.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85649ca51fd72272d7821adaf274ad91c288277713d9c18820d8499a7ff69e9a" +dependencies = [ + "typenum", + "version_check", +] + +[[package]] +name = "getrandom" +version = "0.1.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc3cb4d91f53b50155bdcfd23f6a4c39ae1969c2ae85982b135750cccaf5fce" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.9.0+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "libc", + "r-efi 5.3.0", + "wasip2", +] + +[[package]] +name = "getrandom" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0de51e6874e94e7bf76d726fc5d13ba782deca734ff60d5bb2fb2607c7406555" +dependencies = [ + "cfg-if", + "libc", + "r-efi 6.0.0", + "wasip2", + "wasip3", +] + +[[package]] +name = "gio" +version = "0.18.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4fc8f532f87b79cbc51a79748f16a6828fb784be93145a322fa14d06d354c73" +dependencies = [ + "futures-channel", + "futures-core", + "futures-io", + "futures-util", + "gio-sys", + "glib", + "libc", + "once_cell", + "pin-project-lite", + "smallvec", + "thiserror 1.0.69", +] + +[[package]] +name = "gio-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "37566df850baf5e4cb0dfb78af2e4b9898d817ed9263d1090a2df958c64737d2" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", + "winapi", +] + +[[package]] +name = "glib" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "233daaf6e83ae6a12a52055f568f9d7cf4671dabb78ff9560ab6da230ce00ee5" +dependencies = [ + "bitflags 2.11.0", + "futures-channel", + "futures-core", + "futures-executor", + "futures-task", + "futures-util", + "gio-sys", + "glib-macros", + "glib-sys", + "gobject-sys", + "libc", + "memchr", + "once_cell", + "smallvec", + "thiserror 1.0.69", +] + +[[package]] +name = "glib-macros" +version = "0.18.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bb0228f477c0900c880fd78c8759b95c7636dbd7842707f49e132378aa2acdc" +dependencies = [ + "heck 0.4.1", + "proc-macro-crate 2.0.2", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "glib-sys" +version = "0.18.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "063ce2eb6a8d0ea93d2bf8ba1957e78dbab6be1c2220dd3daca57d5a9d869898" +dependencies = [ + "libc", + "system-deps", +] + +[[package]] +name = "glob" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0cc23270f6e1808e30a928bdc84dea0b9b4136a8bc82338574f23baf47bbd280" + +[[package]] +name = "gobject-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0850127b514d1c4a4654ead6dedadb18198999985908e6ffe4436f53c785ce44" +dependencies = [ + "glib-sys", + "libc", + "system-deps", +] + +[[package]] +name = "gtk" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fd56fb197bfc42bd5d2751f4f017d44ff59fbb58140c6b49f9b3b2bdab08506a" +dependencies = [ + "atk", + "cairo-rs", + "field-offset", + "futures-channel", + "gdk", + "gdk-pixbuf", + "gio", + "glib", + "gtk-sys", + "gtk3-macros", + "libc", + "pango", + "pkg-config", +] + +[[package]] +name = "gtk-sys" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f29a1c21c59553eb7dd40e918be54dccd60c52b049b75119d5d96ce6b624414" +dependencies = [ + "atk-sys", + "cairo-sys-rs", + "gdk-pixbuf-sys", + "gdk-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "pango-sys", + "system-deps", +] + +[[package]] +name = "gtk3-macros" +version = "0.18.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ff3c5b21f14f0736fed6dcfc0bfb4225ebf5725f3c0209edeec181e4d73e9d" +dependencies = [ + "proc-macro-crate 1.3.1", + "proc-macro-error", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "hashbrown" +version = "0.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8a9ee70c43aaf417c914396645a0fa852624801b24ebb7ae78fe8272889ac888" + +[[package]] +name = "hashbrown" +version = "0.15.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9229cfe53dfd69f0609a49f65461bd93001ea1ef889cd5529dd176593f5338a1" +dependencies = [ + "foldhash", +] + +[[package]] +name = "hashbrown" +version = "0.16.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "841d1cc9bed7f9236f321df977030373f4a4163ae1a7dbfe1a51a2c1a51d9100" + +[[package]] +name = "heck" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8" + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "hex" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" + +[[package]] +name = "html5ever" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b7410cae13cbc75623c98ac4cbfd1f0bedddf3227afc24f370cf0f50a44a11c" +dependencies = [ + "log", + "mac", + "markup5ever", + "match_token", +] + +[[package]] +name = "http" +version = "1.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3ba2a386d7f85a81f119ad7498ebe444d2e22c2af0b86b069416ace48b3311a" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "hyper" +version = "1.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ab2d4f250c3d7b1c9fcdff1cece94ea4e2dfbec68614f7b87cb205f24ca9d11" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "http", + "http-body", + "httparse", + "itoa", + "pin-project-lite", + "pin-utils", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "tokio", + "tower-service", + "tracing", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core 0.62.2", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "ico" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e795dff5605e0f04bff85ca41b51a96b83e80b281e96231bcaaf1ac35103371" +dependencies = [ + "byteorder", + "png", +] + +[[package]] +name = "icu_collections" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4c6b649701667bbe825c3b7e6388cb521c23d88644678e83c0c4d0a621a34b43" +dependencies = [ + "displaydoc", + "potential_utf", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edba7861004dd3714265b4db54a3c390e880ab658fec5f7db895fae2046b5bb6" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5f6c8828b67bf8908d82127b2054ea1b4427ff0230ee9141c54251934ab1b599" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7aedcccd01fc5fe81e6b489c15b247b8b0690feb23304303a9e560f37efc560a" + +[[package]] +name = "icu_properties" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "020bfc02fe870ec3a66d93e677ccca0562506e5872c650f893269e08615d74ec" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "616c294cf8d725c6afcd8f55abc17c56464ef6211f9ed59cccffe534129c77af" + +[[package]] +name = "icu_provider" +version = "2.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85962cf0ce02e1e0a629cc34e7ca3e373ce20dda4c4d7294bbd0bf1fdb59e614" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "id-arena" +version = "2.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3d3067d79b975e8844ca9eb072e16b31c3c1c36928edf9c6789548c524d0d954" + +[[package]] +name = "ident_case" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3acae9609540aa318d1bc588455225fb2085b9ed0c4f6bd0d9d5bcd86f1a0344" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[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", + "serde", +] + +[[package]] +name = "indexmap" +version = "2.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7714e70437a7dc3ac8eb7e6f8df75fd8eb422675fc7678aff7364301092b1017" +dependencies = [ + "equivalent", + "hashbrown 0.16.1", + "serde", + "serde_core", +] + +[[package]] +name = "infer" +version = "0.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a588916bfdfd92e71cacef98a63d9b1f0d74d6599980d11894290e7ddefffcf7" +dependencies = [ + "cfb", +] + +[[package]] +name = "ipnet" +version = "2.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" + +[[package]] +name = "iri-string" +version = "0.7.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" +dependencies = [ + "memchr", + "serde", +] + +[[package]] +name = "itoa" +version = "1.0.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92ecc6618181def0457392ccd0ee51198e065e016d1d527a7ac1b6dc7c1f09d2" + +[[package]] +name = "javascriptcore-rs" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca5671e9ffce8ffba57afc24070e906da7fc4b1ba66f2cabebf61bf2ea257fcc" +dependencies = [ + "bitflags 1.3.2", + "glib", + "javascriptcore-rs-sys", +] + +[[package]] +name = "javascriptcore-rs-sys" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "af1be78d14ffa4b75b66df31840478fef72b51f8c2465d4ca7c194da9f7a5124" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "jni" +version = "0.21.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1a87aa2bb7d2af34197c04845522473242e1aa17c12f4935d5856491a7fb8c97" +dependencies = [ + "cesu8", + "cfg-if", + "combine", + "jni-sys", + "log", + "thiserror 1.0.69", + "walkdir", + "windows-sys 0.45.0", +] + +[[package]] +name = "jni-sys" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8eaf4bc02d17cbdd7ff4c7438cafcdf7fb9a4613313ad11b4f8fefe7d3fa0130" + +[[package]] +name = "js-sys" +version = "0.3.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b49715b7073f385ba4bc528e5747d02e66cb39c6146efb66b781f131f0fb399c" +dependencies = [ + "once_cell", + "wasm-bindgen", +] + +[[package]] +name = "json-patch" +version = "3.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "863726d7afb6bc2590eeff7135d923545e5e964f004c2ccf8716c25e70a86f08" +dependencies = [ + "jsonptr", + "serde", + "serde_json", + "thiserror 1.0.69", +] + +[[package]] +name = "jsonptr" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5dea2b27dd239b2556ed7a25ba842fe47fd602e7fc7433c2a8d6106d4d9edd70" +dependencies = [ + "serde", + "serde_json", +] + +[[package]] +name = "keyboard-types" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b750dcadc39a09dbadd74e118f6dd6598df77fa01df0cfcdc52c28dece74528a" +dependencies = [ + "bitflags 2.11.0", + "serde", + "unicode-segmentation", +] + +[[package]] +name = "kuchikiki" +version = "0.8.8-speedreader" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02cb977175687f33fa4afa0c95c112b987ea1443e5a51c8f8ff27dc618270cc2" +dependencies = [ + "cssparser", + "html5ever", + "indexmap 2.13.0", + "selectors", +] + +[[package]] +name = "leb128fmt" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09edd9e8b54e49e587e4f6295a7d29c3ea94d469cb40ab8ca70b288248a81db2" + +[[package]] +name = "libappindicator" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03589b9607c868cc7ae54c0b2a22c8dc03dd41692d48f2d7df73615c6a95dc0a" +dependencies = [ + "glib", + "gtk", + "gtk-sys", + "libappindicator-sys", + "log", +] + +[[package]] +name = "libappindicator-sys" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e9ec52138abedcc58dc17a7c6c0c00a2bdb4f3427c7f63fa97fd0d859155caf" +dependencies = [ + "gtk-sys", + "libloading", + "once_cell", +] + +[[package]] +name = "libc" +version = "0.2.182" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6800badb6cb2082ffd7b6a67e6125bb39f18782f793520caee8cb8846be06112" + +[[package]] +name = "libloading" +version = "0.7.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67380fd3b2fbe7527a606e18729d21c6f3951633d0500574c4dc22d2d638b9f" +dependencies = [ + "cfg-if", + "winapi", +] + +[[package]] +name = "libredox" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1744e39d1d6a9948f4f388969627434e31128196de472883b39f148769bfe30a" +dependencies = [ + "libc", +] + +[[package]] +name = "litemap" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6373607a59f0be73a39b6fe456b8192fcc3585f602af20751600e974dd455e77" + +[[package]] +name = "lock_api" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "224399e74b87b5f3557511d98dff8b14089b3dadafcab6bb93eab67d3aace965" +dependencies = [ + "scopeguard", +] + +[[package]] +name = "log" +version = "0.4.29" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" + +[[package]] +name = "mac" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c41e0c4fef86961ac6d6f8a82609f55f31b05e4fce149ac5710e439df7619ba4" + +[[package]] +name = "markup5ever" +version = "0.14.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a7213d12e1864c0f002f52c2923d4556935a43dec5e71355c2760e0f6e7a18" +dependencies = [ + "log", + "phf 0.11.3", + "phf_codegen 0.11.3", + "string_cache", + "string_cache_codegen", + "tendril", +] + +[[package]] +name = "match_token" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88a9689d8d44bf9964484516275f5cd4c9b59457a6940c1d5d0ecbb94510a36b" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "matches" +version = "0.1.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2532096657941c2fea9c289d370a250971c689d4f143798ff67113ec042024a5" + +[[package]] +name = "memchr" +version = "2.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8ca58f447f06ed17d5fc4043ce1b10dd205e060fb3ce5b979b8ed8e59ff3f79" + +[[package]] +name = "memoffset" +version = "0.9.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "488016bfae457b036d996092f6cb448677611ce4449e970ceaf42695203f218a" +dependencies = [ + "autocfg", +] + +[[package]] +name = "mime" +version = "0.3.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6877bb514081ee2a7ff5ef9de3281f14a4dd4bceac4c09388074a6b5df8a139a" + +[[package]] +name = "miniz_oxide" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fa76a2c86f704bdb222d66965fb3d63269ce38518b83cb0575fca855ebb6316" +dependencies = [ + "adler2", + "simd-adler32", +] + +[[package]] +name = "mio" +version = "1.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a69bcab0ad47271a0234d9422b131806bf3968021e5dc9328caf2d4cd58557fc" +dependencies = [ + "libc", + "wasi 0.11.1+wasi-snapshot-preview1", + "windows-sys 0.61.2", +] + +[[package]] +name = "muda" +version = "0.17.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "01c1738382f66ed56b3b9c8119e794a2e23148ac8ea214eda86622d4cb9d415a" +dependencies = [ + "crossbeam-channel", + "dpi", + "gtk", + "keyboard-types", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "once_cell", + "png", + "serde", + "thiserror 2.0.18", + "windows-sys 0.60.2", +] + +[[package]] +name = "ndk" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c3f42e7bbe13d351b6bead8286a43aac9534b82bd3cc43e47037f012ebfd62d4" +dependencies = [ + "bitflags 2.11.0", + "jni-sys", + "log", + "ndk-sys", + "num_enum", + "raw-window-handle", + "thiserror 1.0.69", +] + +[[package]] +name = "ndk-context" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27b02d87554356db9e9a873add8782d4ea6e3e58ea071a9adb9a2e8ddb884a8b" + +[[package]] +name = "ndk-sys" +version = "0.6.0+11769913" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ee6cda3051665f1fb8d9e08fc35c96d5a244fb1be711a03b71118828afc9a873" +dependencies = [ + "jni-sys", +] + +[[package]] +name = "new_debug_unreachable" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "650eef8c711430f1a879fdd01d4745a7deea475becfb90269c06775983bbf086" + +[[package]] +name = "nodrop" +version = "0.1.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72ef4a56884ca558e5ddb05a1d1e7e1bfd9a68d9ed024c21704cc98872dae1bb" + +[[package]] +name = "num-conv" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf97ec579c3c42f953ef76dbf8d55ac91fb219dde70e49aa4a6b7d74e9919050" + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "num_enum" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b1207a7e20ad57b847bbddc6776b968420d38292bbfe2089accff5e19e82454c" +dependencies = [ + "num_enum_derive", + "rustversion", +] + +[[package]] +name = "num_enum_derive" +version = "0.7.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff32365de1b6743cb203b710788263c44a03de03802daf96092f2da4fe6ba4d7" +dependencies = [ + "proc-macro-crate 3.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "objc2" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a12a8ed07aefc768292f076dc3ac8c48f3781c8f2d5851dd3d98950e8c5a89f" +dependencies = [ + "objc2-encode", + "objc2-exception-helper", +] + +[[package]] +name = "objc2-app-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d49e936b501e5c5bf01fda3a9452ff86dc3ea98ad5f283e1455153142d97518c" +dependencies = [ + "bitflags 2.11.0", + "block2", + "objc2", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "objc2-core-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a180dd8642fa45cdb7dd721cd4c11b1cadd4929ce112ebd8b9f5803cc79d536" +dependencies = [ + "bitflags 2.11.0", + "dispatch2", + "objc2", +] + +[[package]] +name = "objc2-core-graphics" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e022c9d066895efa1345f8e33e584b9f958da2fd4cd116792e15e07e4720a807" +dependencies = [ + "bitflags 2.11.0", + "dispatch2", + "objc2", + "objc2-core-foundation", + "objc2-io-surface", +] + +[[package]] +name = "objc2-encode" +version = "4.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ef25abbcd74fb2609453eb695bd2f860d389e457f67dc17cafc8b8cbc89d0c33" + +[[package]] +name = "objc2-exception-helper" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c7a1c5fbb72d7735b076bb47b578523aedc40f3c439bea6dfd595c089d79d98a" +dependencies = [ + "cc", +] + +[[package]] +name = "objc2-foundation" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e3e0adef53c21f888deb4fa59fc59f7eb17404926ee8a6f59f5df0fd7f9f3272" +dependencies = [ + "bitflags 2.11.0", + "block2", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-io-surface" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "180788110936d59bab6bd83b6060ffdfffb3b922ba1396b312ae795e1de9d81d" +dependencies = [ + "bitflags 2.11.0", + "objc2", + "objc2-core-foundation", +] + +[[package]] +name = "objc2-quartz-core" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96c1358452b371bf9f104e21ec536d37a650eb10f7ee379fff67d2e08d537f1f" +dependencies = [ + "bitflags 2.11.0", + "objc2", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "objc2-ui-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d87d638e33c06f577498cbcc50491496a3ed4246998a7fbba7ccb98b1e7eab22" +dependencies = [ + "bitflags 2.11.0", + "objc2", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "objc2-web-kit" +version = "0.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2e5aaab980c433cf470df9d7af96a7b46a9d892d521a2cbbb2f8a4c16751e7f" +dependencies = [ + "bitflags 2.11.0", + "block2", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", +] + +[[package]] +name = "once_cell" +version = "1.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "pango" +version = "0.18.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ca27ec1eb0457ab26f3036ea52229edbdb74dee1edd29063f5b9b010e7ebee4" +dependencies = [ + "gio", + "glib", + "libc", + "once_cell", + "pango-sys", +] + +[[package]] +name = "pango-sys" +version = "0.18.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "436737e391a843e5933d6d9aa102cb126d501e815b83601365a948a518555dc5" +dependencies = [ + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "parking_lot" +version = "0.12.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93857453250e3077bd71ff98b6a65ea6621a19bb0f559a85248955ac12c45a1a" +dependencies = [ + "lock_api", + "parking_lot_core", +] + +[[package]] +name = "parking_lot_core" +version = "0.9.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2621685985a2ebf1c516881c026032ac7deafcda1a2c9b7850dc81e3dfcb64c1" +dependencies = [ + "cfg-if", + "libc", + "redox_syscall", + "smallvec", + "windows-link 0.2.1", +] + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "phf" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3dfb61232e34fcb633f43d12c58f83c1df82962dcdfa565a4e866ffc17dafe12" +dependencies = [ + "phf_shared 0.8.0", +] + +[[package]] +name = "phf" +version = "0.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fabbf1ead8a5bcbc20f5f8b939ee3f5b0f6f281b6ad3468b84656b658b455259" +dependencies = [ + "phf_macros 0.10.0", + "phf_shared 0.10.0", + "proc-macro-hack", +] + +[[package]] +name = "phf" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1fd6780a80ae0c52cc120a26a1a42c1ae51b247a253e4e06113d23d2c2edd078" +dependencies = [ + "phf_macros 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_codegen" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cbffee61585b0411840d3ece935cce9cb6321f01c45477d30066498cd5e1a815" +dependencies = [ + "phf_generator 0.8.0", + "phf_shared 0.8.0", +] + +[[package]] +name = "phf_codegen" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aef8048c789fa5e851558d709946d6d79a8ff88c0440c587967f8e94bfb1216a" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", +] + +[[package]] +name = "phf_generator" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "17367f0cc86f2d25802b2c26ee58a7b23faeccf78a396094c13dced0d0182526" +dependencies = [ + "phf_shared 0.8.0", + "rand 0.7.3", +] + +[[package]] +name = "phf_generator" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5d5285893bb5eb82e6aaf5d59ee909a06a16737a8970984dd7746ba9283498d6" +dependencies = [ + "phf_shared 0.10.0", + "rand 0.8.5", +] + +[[package]] +name = "phf_generator" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3c80231409c20246a13fddb31776fb942c38553c51e871f8cbd687a4cfb5843d" +dependencies = [ + "phf_shared 0.11.3", + "rand 0.8.5", +] + +[[package]] +name = "phf_macros" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "58fdf3184dd560f160dd73922bea2d5cd6e8f064bf4b13110abd81b03697b4e0" +dependencies = [ + "phf_generator 0.10.0", + "phf_shared 0.10.0", + "proc-macro-hack", + "proc-macro2", + "quote", + "syn 1.0.109", +] + +[[package]] +name = "phf_macros" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f84ac04429c13a7ff43785d75ad27569f2951ce0ffd30a3321230db2fc727216" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "phf_shared" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c00cf8b9eafe68dde5e9eaa2cef8ee84a9336a47d566ec55ca16589633b65af7" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6796ad771acdc0123d2a88dc428b5e38ef24456743ddb1744ed628f9815c096" +dependencies = [ + "siphasher 0.3.11", +] + +[[package]] +name = "phf_shared" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67eabc2ef2a60eb7faa00097bd1ffdb5bd28e62bf39990626a582201b7a754e5" +dependencies = [ + "siphasher 1.0.2", +] + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "pin-utils" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8b870d8c151b6f2fb93e84a13146138f05d02ed11c7e7c54f8826aaaf7c9f184" + +[[package]] +name = "pkg-config" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7edddbd0b52d732b21ad9a5fab5c704c14cd949e5e9a1ec5929a24fded1b904c" + +[[package]] +name = "plist" +version = "1.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "740ebea15c5d1428f910cd1a5f52cebf8d25006245ed8ade92702f4943d91e07" +dependencies = [ + "base64 0.22.1", + "indexmap 2.13.0", + "quick-xml", + "serde", + "time", +] + +[[package]] +name = "png" +version = "0.17.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "82151a2fc869e011c153adc57cf2789ccb8d9906ce52c0b39a6b5697749d7526" +dependencies = [ + "bitflags 1.3.2", + "crc32fast", + "fdeflate", + "flate2", + "miniz_oxide", +] + +[[package]] +name = "potential_utf" +version = "0.1.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b73949432f5e2a09657003c25bca5e19a0e9c84f8058ca374f49e0ebe605af77" +dependencies = [ + "zerovec", +] + +[[package]] +name = "powerfmt" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "precomputed-hash" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "925383efa346730478fb4838dbe9137d2a47675ad789c546d150a6e1dd4ab31c" + +[[package]] +name = "prettyplease" +version = "0.2.37" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "479ca8adacdd7ce8f1fb39ce9ecccbfe93a3f1344b3d0d97f20bc0196208f62b" +dependencies = [ + "proc-macro2", + "syn 2.0.117", +] + +[[package]] +name = "proc-macro-crate" +version = "1.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7f4c021e1093a56626774e81216a4ce732a735e5bad4868a03f3ed65ca0c3919" +dependencies = [ + "once_cell", + "toml_edit 0.19.15", +] + +[[package]] +name = "proc-macro-crate" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b00f26d3400549137f92511a46ac1cd8ce37cb5598a96d382381458b992a5d24" +dependencies = [ + "toml_datetime 0.6.3", + "toml_edit 0.20.2", +] + +[[package]] +name = "proc-macro-crate" +version = "3.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e67ba7e9b2b56446f1d419b1d807906278ffa1a658a8a5d8a39dcb1f5a78614f" +dependencies = [ + "toml_edit 0.25.4+spec-1.1.0", +] + +[[package]] +name = "proc-macro-error" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da25490ff9892aab3fcf7c36f08cfb902dd3e71ca0f9f9517bea02a73a5ce38c" +dependencies = [ + "proc-macro-error-attr", + "proc-macro2", + "quote", + "syn 1.0.109", + "version_check", +] + +[[package]] +name = "proc-macro-error-attr" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1be40180e52ecc98ad80b184934baf3d0d29f979574e439af5a55274b35f869" +dependencies = [ + "proc-macro2", + "quote", + "version_check", +] + +[[package]] +name = "proc-macro-hack" +version = "0.5.20+deprecated" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc375e1527247fe1a97d8b7156678dfe7c1af2fc075c9a4db3690ecd2a148068" + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quick-xml" +version = "0.38.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b66c2058c55a409d601666cffe35f04333cf1013010882cec174a7467cd4e21c" +dependencies = [ + "memchr", +] + +[[package]] +name = "quote" +version = "1.0.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41f2619966050689382d2b44f664f4bc593e129785a36d6ee376ddf37259b924" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "r-efi" +version = "6.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8dcc9c7d52a811697d2151c701e0d08956f92b0e24136cf4cf27b57a6a0d9bf" + +[[package]] +name = "rand" +version = "0.7.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6a6b1679d49b24bbfe0c803429aa1874472f50d9b363131f0e89fc356b544d03" +dependencies = [ + "getrandom 0.1.16", + "libc", + "rand_chacha 0.2.2", + "rand_core 0.5.1", + "rand_hc", + "rand_pcg", +] + +[[package]] +name = "rand" +version = "0.8.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "34af8d1a0e25924bc5b7c43c079c942339d8f0a8b57c39049bef581b46327404" +dependencies = [ + "libc", + "rand_chacha 0.3.1", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_chacha" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4c8ed856279c9737206bf725bf36935d8666ead7aa69b52be55af369d193402" +dependencies = [ + "ppv-lite86", + "rand_core 0.5.1", +] + +[[package]] +name = "rand_chacha" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6c10a63a0fa32252be49d21e7709d4d4baf8d231c2dbce1eaa8141b9b127d88" +dependencies = [ + "ppv-lite86", + "rand_core 0.6.4", +] + +[[package]] +name = "rand_core" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90bde5296fc891b0cef12a6d03ddccc162ce7b2aff54160af9338f8d40df6d19" +dependencies = [ + "getrandom 0.1.16", +] + +[[package]] +name = "rand_core" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ec0be4795e2f6a28069bec0b5ff3e2ac9bafc99e6a9a7dc3547996c5c816922c" +dependencies = [ + "getrandom 0.2.17", +] + +[[package]] +name = "rand_hc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ca3129af7b92a17112d59ad498c6f81eaf463253766b90396d39ea7a39d6613c" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] +name = "rand_pcg" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "16abd0c1b639e9eb4d7c50c0b8100b0d0f849be2349829c740fe8e6eb4816429" +dependencies = [ + "rand_core 0.5.1", +] + +[[package]] +name = "raw-window-handle" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "20675572f6f24e9e76ef639bc5552774ed45f1c30e2951e1e99c59888861c539" + +[[package]] +name = "redox_syscall" +version = "0.5.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed2bf2547551a7053d6fdfafda3f938979645c44812fbfcda098faae3f1a362d" +dependencies = [ + "bitflags 2.11.0", +] + +[[package]] +name = "redox_users" +version = "0.5.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4e608c6638b9c18977b00b475ac1f28d14e84b27d8d42f70e0bf1e3dec127ac" +dependencies = [ + "getrandom 0.2.17", + "libredox", + "thiserror 2.0.18", +] + +[[package]] +name = "ref-cast" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f354300ae66f76f1c85c5f84693f0ce81d747e2c3f21a45fef496d89c960bf7d" +dependencies = [ + "ref-cast-impl", +] + +[[package]] +name = "ref-cast-impl" +version = "1.0.25" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7186006dcb21920990093f30e3dea63b7d6e977bf1256be20c3563a5db070da" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "regex" +version = "1.12.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e10754a14b9137dd7b1e3e5b0493cc9171fdd105e0ab477f51b72e7f3ac0e276" +dependencies = [ + "aho-corasick", + "memchr", + "regex-automata", + "regex-syntax", +] + +[[package]] +name = "regex-automata" +version = "0.4.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e1dd4122fc1595e8162618945476892eefca7b88c52820e74af6262213cae8f" +dependencies = [ + "aho-corasick", + "memchr", + "regex-syntax", +] + +[[package]] +name = "regex-syntax" +version = "0.8.10" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc897dd8d9e8bd1ed8cdad82b5966c3e0ecae09fb1907d58efaa013543185d0a" + +[[package]] +name = "reqwest" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab3f43e3283ab1488b624b44b0e988d0acea0b3214e694730a055cb6b2efa801" +dependencies = [ + "base64 0.22.1", + "bytes", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-util", + "js-sys", + "log", + "percent-encoding", + "pin-project-lite", + "serde", + "serde_json", + "sync_wrapper", + "tokio", + "tokio-util", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "wasm-streams", + "web-sys", +] + +[[package]] +name = "rustc_version" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfcb3a22ef46e85b45de6ee7e79d063319ebb6594faafcf1c225ea92ab6e9b92" +dependencies = [ + "semver", +] + +[[package]] +name = "rustversion" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + +[[package]] +name = "same-file" +version = "1.0.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "93fc1dc3aaa9bfed95e02e6eadabb4baf7e3078b0bd1b4d7b6b0b68378900502" +dependencies = [ + "winapi-util", +] + +[[package]] +name = "schemars" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3fbf2ae1b8bc8e02df939598064d22402220cd5bbcca1c76f7d6a310974d5615" +dependencies = [ + "dyn-clone", + "indexmap 1.9.3", + "schemars_derive", + "serde", + "serde_json", + "url", + "uuid", +] + +[[package]] +name = "schemars" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cd191f9397d57d581cddd31014772520aa448f65ef991055d7f61582c65165f" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a2b42f36aa1cd011945615b92222f6bf73c599a102a300334cd7f8dbeec726cc" +dependencies = [ + "dyn-clone", + "ref-cast", + "serde", + "serde_json", +] + +[[package]] +name = "schemars_derive" +version = "0.8.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32e265784ad618884abaea0600a9adf15393368d840e0222d101a072f3f7534d" +dependencies = [ + "proc-macro2", + "quote", + "serde_derive_internals", + "syn 2.0.117", +] + +[[package]] +name = "scopeguard" +version = "1.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "94143f37725109f92c262ed2cf5e59bce7498c01bcc1502d7b9afe439a4e9f49" + +[[package]] +name = "selectors" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c37578180969d00692904465fb7f6b3d50b9a2b952b87c23d0e2e5cb5013416" +dependencies = [ + "bitflags 1.3.2", + "cssparser", + "derive_more", + "fxhash", + "log", + "phf 0.8.0", + "phf_codegen 0.8.0", + "precomputed-hash", + "servo_arc", + "smallvec", +] + +[[package]] +name = "semver" +version = "1.0.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d767eb0aabc880b29956c35734170f26ed551a859dbd361d140cdbeca61ab1e2" +dependencies = [ + "serde", + "serde_core", +] + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde-untagged" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f9faf48a4a2d2693be24c6289dbe26552776eb7737074e6722891fadbe6c5058" +dependencies = [ + "erased-serde", + "serde", + "serde_core", + "typeid", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "serde_derive_internals" +version = "0.29.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18d26a20a969b9e3fdf2fc2d9f21eda6c40e2de84c9408bb5d3b05d499aae711" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "serde_json" +version = "1.0.149" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83fc039473c5595ace860d8c4fafa220ff474b3fc6bfdb4293327f1a37e94d86" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_repr" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "175ee3e80ae9982737ca543e96133087cbd9a485eecc3bc4de9c1a37b47ea59c" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "serde_spanned" +version = "0.6.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf41e0cfaf7226dca15e8197172c295a782857fcb97fad1808a166870dee75a3" +dependencies = [ + "serde", +] + +[[package]] +name = "serde_spanned" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8bbf91e5a4d6315eee45e704372590b30e260ee83af6639d64557f51b067776" +dependencies = [ + "serde_core", +] + +[[package]] +name = "serde_with" +version = "3.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "381b283ce7bc6b476d903296fb59d0d36633652b633b27f64db4fb46dcbfc3b9" +dependencies = [ + "base64 0.22.1", + "chrono", + "hex", + "indexmap 1.9.3", + "indexmap 2.13.0", + "schemars 0.9.0", + "schemars 1.2.1", + "serde_core", + "serde_json", + "serde_with_macros", + "time", +] + +[[package]] +name = "serde_with_macros" +version = "3.17.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6d4e30573c8cb306ed6ab1dca8423eec9a463ea0e155f45399455e0368b27e0" +dependencies = [ + "darling", + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "serialize-to-javascript" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04f3666a07a197cdb77cdf306c32be9b7f598d7060d50cfd4d5aa04bfd92f6c5" +dependencies = [ + "serde", + "serde_json", + "serialize-to-javascript-impl", +] + +[[package]] +name = "serialize-to-javascript-impl" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "772ee033c0916d670af7860b6e1ef7d658a4629a6d0b4c8c3e67f09b3765b75d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "servo_arc" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d52aa42f8fdf0fed91e5ce7f23d8138441002fa31dca008acf47e6fd4721f741" +dependencies = [ + "nodrop", + "stable_deref_trait", +] + +[[package]] +name = "sha2" +version = "0.10.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a7507d819769d01a365ab707794a4084392c824f54a7a6a7862f8c3d0892b283" +dependencies = [ + "cfg-if", + "cpufeatures", + "digest", +] + +[[package]] +name = "shlex" +version = "1.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0fda2ff0d084019ba4d7c6f371c95d8fd75ce3524c3cb8fb653a3023f6323e64" + +[[package]] +name = "simd-adler32" +version = "0.3.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e320a6c5ad31d271ad523dcf3ad13e2767ad8b1cb8f047f75a8aeaf8da139da2" + +[[package]] +name = "siphasher" +version = "0.3.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38b58827f4464d87d377d175e90bf58eb00fd8716ff0a62f80356b5e61555d0d" + +[[package]] +name = "siphasher" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b2aa850e253778c88a04c3d7323b043aeda9d3e30d5971937c1855769763678e" + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "smallvec" +version = "1.15.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" + +[[package]] +name = "socket2" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3a766e1110788c36f4fa1c2b71b387a7815aa65f88ce0229841826633d93723e" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "softbuffer" +version = "0.4.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "aac18da81ebbf05109ab275b157c22a653bb3c12cf884450179942f81bcbf6c3" +dependencies = [ + "bytemuck", + "js-sys", + "ndk", + "objc2", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation", + "objc2-quartz-core", + "raw-window-handle", + "redox_syscall", + "tracing", + "wasm-bindgen", + "web-sys", + "windows-sys 0.61.2", +] + +[[package]] +name = "soup3" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "471f924a40f31251afc77450e781cb26d55c0b650842efafc9c6cbd2f7cc4f9f" +dependencies = [ + "futures-channel", + "gio", + "glib", + "libc", + "soup3-sys", +] + +[[package]] +name = "soup3-sys" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7ebe8950a680a12f24f15ebe1bf70db7af98ad242d9db43596ad3108aab86c27" +dependencies = [ + "gio-sys", + "glib-sys", + "gobject-sys", + "libc", + "system-deps", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "string_cache" +version = "0.8.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf776ba3fa74f83bf4b63c3dcbbf82173db2632ed8452cb2d891d33f459de70f" +dependencies = [ + "new_debug_unreachable", + "parking_lot", + "phf_shared 0.11.3", + "precomputed-hash", + "serde", +] + +[[package]] +name = "string_cache_codegen" +version = "0.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c711928715f1fe0fe509c53b43e993a9a557babc2d0a3567d0a3006f1ac931a0" +dependencies = [ + "phf_generator 0.11.3", + "phf_shared 0.11.3", + "proc-macro2", + "quote", +] + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "swift-rs" +version = "1.0.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4057c98e2e852d51fdcfca832aac7b571f6b351ad159f9eda5db1655f8d0c4d7" +dependencies = [ + "base64 0.21.7", + "serde", + "serde_json", +] + +[[package]] +name = "syn" +version = "1.0.109" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b64191b275b66ffe2469e8af2c1cfe3bafa67b529ead792a6d0160888b4237" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "syn" +version = "2.0.117" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e665b8803e7b1d2a727f4023456bbbbe74da67099c585258af0ad9c5013b9b99" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +dependencies = [ + "futures-core", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "system-deps" +version = "6.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a3e535eb8dded36d55ec13eddacd30dec501792ff23a0b1682c38601b8cf2349" +dependencies = [ + "cfg-expr", + "heck 0.5.0", + "pkg-config", + "toml 0.8.2", + "version-compare", +] + +[[package]] +name = "tao" +version = "0.34.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6e06d52c379e63da659a483a958110bbde891695a0ecb53e48cc7786d5eda7bb" +dependencies = [ + "bitflags 2.11.0", + "block2", + "core-foundation", + "core-graphics", + "crossbeam-channel", + "dispatch2", + "dlopen2", + "dpi", + "gdkwayland-sys", + "gdkx11-sys", + "gtk", + "jni", + "libc", + "log", + "ndk", + "ndk-context", + "ndk-sys", + "objc2", + "objc2-app-kit", + "objc2-foundation", + "once_cell", + "parking_lot", + "raw-window-handle", + "tao-macros", + "unicode-segmentation", + "url", + "windows", + "windows-core 0.61.2", + "windows-version", + "x11-dl", +] + +[[package]] +name = "tao-macros" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f4e16beb8b2ac17db28eab8bca40e62dbfbb34c0fcdc6d9826b11b7b5d047dfd" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "target-lexicon" +version = "0.12.16" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1" + +[[package]] +name = "tauri" +version = "2.10.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da77cc00fb9028caf5b5d4650f75e31f1ef3693459dfca7f7e506d1ecef0ba2d" +dependencies = [ + "anyhow", + "bytes", + "cookie", + "dirs", + "dunce", + "embed_plist", + "getrandom 0.3.4", + "glob", + "gtk", + "heck 0.5.0", + "http", + "jni", + "libc", + "log", + "mime", + "muda", + "objc2", + "objc2-app-kit", + "objc2-foundation", + "objc2-ui-kit", + "objc2-web-kit", + "percent-encoding", + "plist", + "raw-window-handle", + "reqwest", + "serde", + "serde_json", + "serde_repr", + "serialize-to-javascript", + "swift-rs", + "tauri-build", + "tauri-macros", + "tauri-runtime", + "tauri-runtime-wry", + "tauri-utils", + "thiserror 2.0.18", + "tokio", + "tray-icon", + "url", + "webkit2gtk", + "webview2-com", + "window-vibrancy", + "windows", +] + +[[package]] +name = "tauri-build" +version = "2.5.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4bbc990d1dbf57a8e1c7fa2327f2a614d8b757805603c1b9ba5c81bade09fd4d" +dependencies = [ + "anyhow", + "cargo_toml", + "dirs", + "glob", + "heck 0.5.0", + "json-patch", + "schemars 0.8.22", + "semver", + "serde", + "serde_json", + "tauri-utils", + "tauri-winres", + "toml 0.9.12+spec-1.1.0", + "walkdir", +] + +[[package]] +name = "tauri-codegen" +version = "2.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4a24476afd977c5d5d169f72425868613d82747916dd29e0a357c84c4bd6d29" +dependencies = [ + "base64 0.22.1", + "brotli", + "ico", + "json-patch", + "plist", + "png", + "proc-macro2", + "quote", + "semver", + "serde", + "serde_json", + "sha2", + "syn 2.0.117", + "tauri-utils", + "thiserror 2.0.18", + "time", + "url", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-macros" +version = "2.5.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d39b349a98dadaffebb73f0a40dcd1f23c999211e5a2e744403db384d0c33de7" +dependencies = [ + "heck 0.5.0", + "proc-macro2", + "quote", + "syn 2.0.117", + "tauri-codegen", + "tauri-utils", +] + +[[package]] +name = "tauri-plugin" +version = "2.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ddde7d51c907b940fb573006cdda9a642d6a7c8153657e88f8a5c3c9290cd4aa" +dependencies = [ + "anyhow", + "glob", + "plist", + "schemars 0.8.22", + "serde", + "serde_json", + "tauri-utils", + "toml 0.9.12+spec-1.1.0", + "walkdir", +] + +[[package]] +name = "tauri-plugin-splashscreen" +version = "0.1.0" +dependencies = [ + "serde", + "tauri", + "tauri-plugin", + "thiserror 2.0.18", +] + +[[package]] +name = "tauri-runtime" +version = "2.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2826d79a3297ed08cd6ea7f412644ef58e32969504bc4fbd8d7dbeabc4445ea2" +dependencies = [ + "cookie", + "dpi", + "gtk", + "http", + "jni", + "objc2", + "objc2-ui-kit", + "objc2-web-kit", + "raw-window-handle", + "serde", + "serde_json", + "tauri-utils", + "thiserror 2.0.18", + "url", + "webkit2gtk", + "webview2-com", + "windows", +] + +[[package]] +name = "tauri-runtime-wry" +version = "2.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e11ea2e6f801d275fdd890d6c9603736012742a1c33b96d0db788c9cdebf7f9e" +dependencies = [ + "gtk", + "http", + "jni", + "log", + "objc2", + "objc2-app-kit", + "once_cell", + "percent-encoding", + "raw-window-handle", + "softbuffer", + "tao", + "tauri-runtime", + "tauri-utils", + "url", + "webkit2gtk", + "webview2-com", + "windows", + "wry", +] + +[[package]] +name = "tauri-utils" +version = "2.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "219a1f983a2af3653f75b5747f76733b0da7ff03069c7a41901a5eb3ace4557d" +dependencies = [ + "anyhow", + "brotli", + "cargo_metadata", + "ctor", + "dunce", + "glob", + "html5ever", + "http", + "infer", + "json-patch", + "kuchikiki", + "log", + "memchr", + "phf 0.11.3", + "proc-macro2", + "quote", + "regex", + "schemars 0.8.22", + "semver", + "serde", + "serde-untagged", + "serde_json", + "serde_with", + "swift-rs", + "thiserror 2.0.18", + "toml 0.9.12+spec-1.1.0", + "url", + "urlpattern", + "uuid", + "walkdir", +] + +[[package]] +name = "tauri-winres" +version = "0.3.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1087b111fe2b005e42dbdc1990fc18593234238d47453b0c99b7de1c9ab2c1e0" +dependencies = [ + "dunce", + "embed-resource", + "toml 0.9.12+spec-1.1.0", +] + +[[package]] +name = "tendril" +version = "0.4.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d24a120c5fc464a3458240ee02c299ebcb9d67b5249c8848b09d639dca8d7bb0" +dependencies = [ + "futf", + "mac", + "utf-8", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl 2.0.18", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "time" +version = "0.3.47" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "743bd48c283afc0388f9b8827b976905fb217ad9e647fae3a379a9283c4def2c" +dependencies = [ + "deranged", + "itoa", + "num-conv", + "powerfmt", + "serde_core", + "time-core", + "time-macros", +] + +[[package]] +name = "time-core" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7694e1cfe791f8d31026952abf09c69ca6f6fa4e1a1229e18988f06a04a12dca" + +[[package]] +name = "time-macros" +version = "0.2.27" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2e70e4c5a0e0a8a4823ad65dfe1a6930e4f4d756dcd9dd7939022b5e8c501215" +dependencies = [ + "num-conv", + "time-core", +] + +[[package]] +name = "tinystr" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "42d3e9c45c09de15d06dd8acf5f4e0e399e85927b7f00711024eb7ae10fa4869" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tokio" +version = "1.50.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "27ad5e34374e03cfffefc301becb44e9dc3c17584f414349ebe29ed26661822d" +dependencies = [ + "bytes", + "libc", + "mio", + "pin-project-lite", + "socket2", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-util" +version = "0.7.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9ae9cec805b01e8fc3fd2fe289f89149a9b66dd16786abd8b19cfa7b48cb0098" +dependencies = [ + "bytes", + "futures-core", + "futures-sink", + "pin-project-lite", + "tokio", +] + +[[package]] +name = "toml" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "185d8ab0dfbb35cf1399a6344d8484209c088f75f8f68230da55d48d95d43e3d" +dependencies = [ + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.3", + "toml_edit 0.20.2", +] + +[[package]] +name = "toml" +version = "0.9.12+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cf92845e79fc2e2def6a5d828f0801e29a2f8acc037becc5ab08595c7d5e9863" +dependencies = [ + "indexmap 2.13.0", + "serde_core", + "serde_spanned 1.0.4", + "toml_datetime 0.7.5+spec-1.1.0", + "toml_parser", + "toml_writer", + "winnow 0.7.15", +] + +[[package]] +name = "toml_datetime" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7cda73e2f1397b1262d6dfdcef8aafae14d1de7748d66822d3bfeeb6d03e5e4b" +dependencies = [ + "serde", +] + +[[package]] +name = "toml_datetime" +version = "0.7.5+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92e1cfed4a3038bc5a127e35a2d360f145e1f4b971b551a2ba5fd7aedf7e1347" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_datetime" +version = "1.0.0+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32c2555c699578a4f59f0cc68e5116c8d7cabbd45e1409b989d4be085b53f13e" +dependencies = [ + "serde_core", +] + +[[package]] +name = "toml_edit" +version = "0.19.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b5bb770da30e5cbfde35a2d7b9b8a2c4b8ef89548a7a6aeab5c9a576e3e7421" +dependencies = [ + "indexmap 2.13.0", + "toml_datetime 0.6.3", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.20.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "396e4d48bbb2b7554c944bde63101b5ae446cff6ec4a24227428f15eb72ef338" +dependencies = [ + "indexmap 2.13.0", + "serde", + "serde_spanned 0.6.9", + "toml_datetime 0.6.3", + "winnow 0.5.40", +] + +[[package]] +name = "toml_edit" +version = "0.25.4+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7193cbd0ce53dc966037f54351dbbcf0d5a642c7f0038c382ef9e677ce8c13f2" +dependencies = [ + "indexmap 2.13.0", + "toml_datetime 1.0.0+spec-1.1.0", + "toml_parser", + "winnow 0.7.15", +] + +[[package]] +name = "toml_parser" +version = "1.0.9+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "702d4415e08923e7e1ef96cd5727c0dfed80b4d2fa25db9647fe5eb6f7c5a4c4" +dependencies = [ + "winnow 0.7.15", +] + +[[package]] +name = "toml_writer" +version = "1.0.6+spec-1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ab16f14aed21ee8bfd8ec22513f7287cd4a91aa92e44edfe2c17ddd004e92607" + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" +dependencies = [ + "bitflags 2.11.0", + "bytes", + "futures-util", + "http", + "http-body", + "iri-string", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "pin-project-lite", + "tracing-core", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "tray-icon" +version = "0.21.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a5e85aa143ceb072062fc4d6356c1b520a51d636e7bc8e77ec94be3608e5e80c" +dependencies = [ + "crossbeam-channel", + "dirs", + "libappindicator", + "muda", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-core-graphics", + "objc2-foundation", + "once_cell", + "png", + "serde", + "thiserror 2.0.18", + "windows-sys 0.60.2", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "typeid" +version = "1.0.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bc7d623258602320d5c55d1bc22793b57daff0ec7efc270ea7d55ce1d5f5471c" + +[[package]] +name = "typenum" +version = "1.19.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "562d481066bde0658276a35467c4af00bdc6ee726305698a55b86e61d7ad82bb" + +[[package]] +name = "unic-char-property" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a8c57a407d9b6fa02b4795eb81c5b6652060a15a7903ea981f3d723e6c0be221" +dependencies = [ + "unic-char-range", +] + +[[package]] +name = "unic-char-range" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0398022d5f700414f6b899e10b8348231abf9173fa93144cbc1a43b9793c1fbc" + +[[package]] +name = "unic-common" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "80d7ff825a6a654ee85a63e80f92f054f904f21e7d12da4e22f9834a4aaa35bc" + +[[package]] +name = "unic-ucd-ident" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e230a37c0381caa9219d67cf063aa3a375ffed5bf541a452db16e744bdab6987" +dependencies = [ + "unic-char-property", + "unic-char-range", + "unic-ucd-version", +] + +[[package]] +name = "unic-ucd-version" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96bd2f2237fe450fcd0a1d2f5f4e91711124f7857ba2e964247776ebeeb7b0c4" +dependencies = [ + "unic-common", +] + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "unicode-segmentation" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" + +[[package]] +name = "unicode-xid" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc1c04c71510c7f702b52b7c350734c9ff1295c464a03335b00bb84fc54f853" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", + "serde_derive", +] + +[[package]] +name = "urlpattern" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "70acd30e3aa1450bc2eece896ce2ad0d178e9c079493819301573dae3c37ba6d" +dependencies = [ + "regex", + "serde", + "unic-ucd-ident", + "url", +] + +[[package]] +name = "utf-8" +version = "0.7.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09cc8ee72d2a9becf2f2febe0205bbed8fc6615b7cb429ad062dc7b7ddd036a9" + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "uuid" +version = "1.22.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a68d3c8f01c0cfa54a75291d83601161799e4a89a39e0929f4b0354d88757a37" +dependencies = [ + "getrandom 0.4.2", + "js-sys", + "serde_core", + "wasm-bindgen", +] + +[[package]] +name = "version-compare" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03c2856837ef78f57382f06b2b8563a2f512f7185d732608fd9176cb3b8edf0e" + +[[package]] +name = "version_check" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b928f33d975fc6ad9f86c8f283853ad26bdd5b10b7f1542aa2fa15e2289105a" + +[[package]] +name = "vswhom" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "be979b7f07507105799e854203b470ff7c78a1639e330a58f183b5fea574608b" +dependencies = [ + "libc", + "vswhom-sys", +] + +[[package]] +name = "vswhom-sys" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fb067e4cbd1ff067d1df46c9194b5de0e98efd2810bbc95c5d5e5f25a3231150" +dependencies = [ + "cc", + "libc", +] + +[[package]] +name = "walkdir" +version = "2.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "29790946404f91d9c5d06f9874efddea1dc06c5efe94541a7d6863108e3a5e4b" +dependencies = [ + "same-file", + "winapi-util", +] + +[[package]] +name = "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.9.0+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cccddf32554fecc6acb585f82a32a72e28b48f8c4c1883ddfeeeaa96f7d8e519" + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.2+wasi-0.2.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9517f9239f02c069db75e65f174b3da828fe5f5b945c4dd26bd25d89c03ebcf5" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasip3" +version = "0.4.0+wasi-0.3.0-rc-2026-01-06" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5428f8bf88ea5ddc08faddef2ac4a67e390b88186c703ce6dbd955e1c145aca5" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasm-bindgen" +version = "0.2.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6532f9a5c1ece3798cb1c2cfdba640b9b3ba884f5db45973a6f442510a87d38e" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.64" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e9c5522b3a28661442748e09d40924dfb9ca614b21c00d3fd135720e48b67db8" +dependencies = [ + "cfg-if", + "futures-util", + "js-sys", + "once_cell", + "wasm-bindgen", + "web-sys", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18a2d50fcf105fb33bb15f00e7a77b772945a2ee45dcf454961fd843e74c18e6" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "03ce4caeaac547cdf713d280eda22a730824dd11e6b8c3ca9e42247b25c631e3" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn 2.0.117", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.114" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75a326b8c223ee17883a4251907455a2431acc2791c98c26279376490c378c16" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "wasm-encoder" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "990065f2fe63003fe337b932cfb5e3b80e0b4d0f5ff650e6985b1048f62c8319" +dependencies = [ + "leb128fmt", + "wasmparser", +] + +[[package]] +name = "wasm-metadata" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb0e353e6a2fbdc176932bbaab493762eb1255a7900fe0fea1a2f96c296cc909" +dependencies = [ + "anyhow", + "indexmap 2.13.0", + "wasm-encoder", + "wasmparser", +] + +[[package]] +name = "wasm-streams" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d1ec4f6517c9e11ae630e200b2b65d193279042e28edd4a2cda233e46670bbb" +dependencies = [ + "futures-util", + "js-sys", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", +] + +[[package]] +name = "wasmparser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b807c72e1bac69382b3a6fb3dbe8ea4c0ed87ff5629b8685ae6b9a611028fe" +dependencies = [ + "bitflags 2.11.0", + "hashbrown 0.15.5", + "indexmap 2.13.0", + "semver", +] + +[[package]] +name = "web-sys" +version = "0.3.91" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "854ba17bb104abfb26ba36da9729addc7ce7f06f5c0f90f3c391f8461cca21f9" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webkit2gtk" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a1027150013530fb2eaf806408df88461ae4815a45c541c8975e61d6f2fc4793" +dependencies = [ + "bitflags 1.3.2", + "cairo-rs", + "gdk", + "gdk-sys", + "gio", + "gio-sys", + "glib", + "glib-sys", + "gobject-sys", + "gtk", + "gtk-sys", + "javascriptcore-rs", + "libc", + "once_cell", + "soup3", + "webkit2gtk-sys", +] + +[[package]] +name = "webkit2gtk-sys" +version = "2.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "916a5f65c2ef0dfe12fff695960a2ec3d4565359fdbb2e9943c974e06c734ea5" +dependencies = [ + "bitflags 1.3.2", + "cairo-sys-rs", + "gdk-sys", + "gio-sys", + "glib-sys", + "gobject-sys", + "gtk-sys", + "javascriptcore-rs-sys", + "libc", + "pkg-config", + "soup3-sys", + "system-deps", +] + +[[package]] +name = "webview2-com" +version = "0.38.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7130243a7a5b33c54a444e54842e6a9e133de08b5ad7b5861cd8ed9a6a5bc96a" +dependencies = [ + "webview2-com-macros", + "webview2-com-sys", + "windows", + "windows-core 0.61.2", + "windows-implement", + "windows-interface", +] + +[[package]] +name = "webview2-com-macros" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "67a921c1b6914c367b2b823cd4cde6f96beec77d30a939c8199bb377cf9b9b54" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "webview2-com-sys" +version = "0.38.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "381336cfffd772377d291702245447a5251a2ffa5bad679c99e61bc48bacbf9c" +dependencies = [ + "thiserror 2.0.18", + "windows", + "windows-core 0.61.2", +] + +[[package]] +name = "winapi" +version = "0.3.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c839a674fcd7a98952e593242ea400abe93992746761e38641405d28b00f419" +dependencies = [ + "winapi-i686-pc-windows-gnu", + "winapi-x86_64-pc-windows-gnu", +] + +[[package]] +name = "winapi-i686-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ac3b87c63620426dd9b991e5ce0329eff545bccbbb34f3be09ff6fb6ab51b7b6" + +[[package]] +name = "winapi-util" +version = "0.1.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c2a7b1c03c876122aa43f3020e6c3c3ee5c05081c9a00739faf7503aeba10d22" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "winapi-x86_64-pc-windows-gnu" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "712e227841d057c1ee1cd2fb22fa7e5a5461ae8e48fa2ca79ec42cfc1931183f" + +[[package]] +name = "window-vibrancy" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d9bec5a31f3f9362f2258fd0e9c9dd61a9ca432e7306cc78c444258f0dce9a9c" +dependencies = [ + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "raw-window-handle", + "windows-sys 0.59.0", + "windows-version", +] + +[[package]] +name = "windows" +version = "0.61.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9babd3a767a4c1aef6900409f85f5d53ce2544ccdfaa86dad48c91782c6d6893" +dependencies = [ + "windows-collections", + "windows-core 0.61.2", + "windows-future", + "windows-link 0.1.3", + "windows-numerics", +] + +[[package]] +name = "windows-collections" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3beeceb5e5cfd9eb1d76b381630e82c4241ccd0d27f1a39ed41b2760b255c5e8" +dependencies = [ + "windows-core 0.61.2", +] + +[[package]] +name = "windows-core" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c0fdd3ddb90610c7638aa2b3a3ab2904fb9e5cdbecc643ddb3647212781c4ae3" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link 0.1.3", + "windows-result 0.3.4", + "windows-strings 0.4.2", +] + +[[package]] +name = "windows-core" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link 0.2.1", + "windows-result 0.4.1", + "windows-strings 0.5.1", +] + +[[package]] +name = "windows-future" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fc6a41e98427b19fe4b73c550f060b59fa592d7d686537eebf9385621bfbad8e" +dependencies = [ + "windows-core 0.61.2", + "windows-link 0.1.3", + "windows-threading", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "windows-interface" +version = "0.59.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "windows-link" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5e6ad25900d524eaabdbbb96d20b4311e1e7ae1699af4fb28c17ae66c80d798a" + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-numerics" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9150af68066c4c5c07ddc0ce30421554771e528bde427614c61038bc2c92c2b1" +dependencies = [ + "windows-core 0.61.2", + "windows-link 0.1.3", +] + +[[package]] +name = "windows-result" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56f42bd332cc6c8eac5af113fc0c1fd6a8fd2aa08a0119358686e5160d0586c6" +dependencies = [ + "windows-link 0.1.3", +] + +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-strings" +version = "0.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56e6c93f3a0c3b36176cb1327a4958a0353d5d166c2a35cb268ace15e91d3b57" +dependencies = [ + "windows-link 0.1.3", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-sys" +version = "0.45.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "75283be5efb2831d37ea142365f009c02ec203cd29a3ebecbc093d52315b66d0" +dependencies = [ + "windows-targets 0.42.2", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows-targets" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e5180c00cd44c9b1c88adb3693291f1cd93605ded80c250a75d472756b4d071" +dependencies = [ + "windows_aarch64_gnullvm 0.42.2", + "windows_aarch64_msvc 0.42.2", + "windows_i686_gnu 0.42.2", + "windows_i686_msvc 0.42.2", + "windows_x86_64_gnu 0.42.2", + "windows_x86_64_gnullvm 0.42.2", + "windows_x86_64_msvc 0.42.2", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link 0.2.1", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", +] + +[[package]] +name = "windows-threading" +version = "0.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b66463ad2e0ea3bbf808b7f1d371311c80e115c0b71d60efc142cafbcfb057a6" +dependencies = [ + "windows-link 0.1.3", +] + +[[package]] +name = "windows-version" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e4060a1da109b9d0326b7262c8e12c84df67cc0dbc9e33cf49e01ccc2eb63631" +dependencies = [ + "windows-link 0.2.1", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "597a5118570b68bc08d8d59125332c54f1ba9d9adeedeef5b99b02ba2b0698f8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e08e8864a60f06ef0d0ff4ba04124db8b0fb3be5776a5cd47641e942e58c4d43" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + +[[package]] +name = "windows_i686_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c61d927d8da41da96a81f029489353e68739737d3beca43145c8afec9a31a84f" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + +[[package]] +name = "windows_i686_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44d840b6ec649f480a41c8d80f9c65108b92d89345dd94027bfe06ac444d1060" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8de912b8b8feb55c064867cf047dda097f92d51efad5b491dfb98f6bbb70cb36" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "26d41b46a36d453748aedef1486d5c7a85db22e56aff34643984ea85514e94a3" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.42.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9aec5da331524158c6d1a4ac0ab1541149c0b9505fde06423b02f5ef0106b9f0" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + +[[package]] +name = "winnow" +version = "0.5.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f593a95398737aeed53e489c785df13f3618e41dbcd6718c6addbf1395aa6876" +dependencies = [ + "memchr", +] + +[[package]] +name = "winnow" +version = "0.7.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "df79d97927682d2fd8adb29682d1140b343be4ac0f08fd68b7765d9c059d3945" +dependencies = [ + "memchr", +] + +[[package]] +name = "winreg" +version = "0.55.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb5a765337c50e9ec252c2069be9bf91c7df47afb103b642ba3a53bf8101be97" +dependencies = [ + "cfg-if", + "windows-sys 0.59.0", +] + +[[package]] +name = "wit-bindgen" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d7249219f66ced02969388cf2bb044a09756a083d0fab1e566056b04d9fbcaa5" +dependencies = [ + "wit-bindgen-rust-macro", +] + +[[package]] +name = "wit-bindgen-core" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ea61de684c3ea68cb082b7a88508a8b27fcc8b797d738bfc99a82facf1d752dc" +dependencies = [ + "anyhow", + "heck 0.5.0", + "wit-parser", +] + +[[package]] +name = "wit-bindgen-rust" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b7c566e0f4b284dd6561c786d9cb0142da491f46a9fbed79ea69cdad5db17f21" +dependencies = [ + "anyhow", + "heck 0.5.0", + "indexmap 2.13.0", + "prettyplease", + "syn 2.0.117", + "wasm-metadata", + "wit-bindgen-core", + "wit-component", +] + +[[package]] +name = "wit-bindgen-rust-macro" +version = "0.51.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c0f9bfd77e6a48eccf51359e3ae77140a7f50b1e2ebfe62422d8afdaffab17a" +dependencies = [ + "anyhow", + "prettyplease", + "proc-macro2", + "quote", + "syn 2.0.117", + "wit-bindgen-core", + "wit-bindgen-rust", +] + +[[package]] +name = "wit-component" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9d66ea20e9553b30172b5e831994e35fbde2d165325bec84fc43dbf6f4eb9cb2" +dependencies = [ + "anyhow", + "bitflags 2.11.0", + "indexmap 2.13.0", + "log", + "serde", + "serde_derive", + "serde_json", + "wasm-encoder", + "wasm-metadata", + "wasmparser", + "wit-parser", +] + +[[package]] +name = "wit-parser" +version = "0.244.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ecc8ac4bc1dc3381b7f59c34f00b67e18f910c2c0f50015669dde7def656a736" +dependencies = [ + "anyhow", + "id-arena", + "indexmap 2.13.0", + "log", + "semver", + "serde", + "serde_derive", + "serde_json", + "unicode-xid", + "wasmparser", +] + +[[package]] +name = "writeable" +version = "0.6.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9edde0db4769d2dc68579893f2306b26c6ecfbe0ef499b013d731b7b9247e0b9" + +[[package]] +name = "wry" +version = "0.54.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bb26159b420aa77684589a744ae9a9461a95395b848764ad12290a14d960a11a" +dependencies = [ + "base64 0.22.1", + "block2", + "cookie", + "crossbeam-channel", + "dirs", + "dpi", + "dunce", + "gdkx11", + "gtk", + "html5ever", + "http", + "javascriptcore-rs", + "jni", + "kuchikiki", + "libc", + "ndk", + "objc2", + "objc2-app-kit", + "objc2-core-foundation", + "objc2-foundation", + "objc2-ui-kit", + "objc2-web-kit", + "once_cell", + "percent-encoding", + "raw-window-handle", + "sha2", + "soup3", + "tao-macros", + "thiserror 2.0.18", + "url", + "webkit2gtk", + "webkit2gtk-sys", + "webview2-com", + "windows", + "windows-core 0.61.2", + "windows-version", + "x11-dl", +] + +[[package]] +name = "x11" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "502da5464ccd04011667b11c435cb992822c2c0dbde1770c988480d312a0db2e" +dependencies = [ + "libc", + "pkg-config", +] + +[[package]] +name = "x11-dl" +version = "2.21.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "38735924fedd5314a6e548792904ed8c6de6636285cb9fec04d5b1db85c1516f" +dependencies = [ + "libc", + "once_cell", + "pkg-config", +] + +[[package]] +name = "yoke" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72d6e5c6afb84d73944e5cedb052c4680d5657337201555f9f2a16b7406d4954" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b659052874eb698efe5b9e8cf382204678a0086ebf46982b79d6ca3182927e5d" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", + "synstructure", +] + +[[package]] +name = "zerocopy" +version = "0.8.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a789c6e490b576db9f7e6b6d661bcc9799f7c0ac8352f56ea20193b2681532e5" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.40" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f65c489a7071a749c849713807783f70672b28094011623e200cb86dcb835953" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "zerofrom" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50cc42e0333e05660c3587f3bf9d0478688e15d870fab3346451ce7f8c9fbea5" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d71e5d6e06ab090c67b5e44993ec16b72dcbaabc526db883a360057678b48502" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", + "synstructure", +] + +[[package]] +name = "zerotrie" +version = "0.2.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a59c17a5562d507e4b54960e8569ebee33bee890c70aa3fe7b97e85a9fd7851" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6c28719294829477f525be0186d13efa9a3c602f7ec202ca9e353d310fb9a002" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eadce39539ca5cb3985590102671f2567e659fca9666581ad3411d59207951f3" +dependencies = [ + "proc-macro2", + "quote", + "syn 2.0.117", +] + +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" diff --git a/crates/tauri-plugin-splashscreen/Cargo.toml b/crates/tauri-plugin-splashscreen/Cargo.toml new file mode 100644 index 000000000..688859dae --- /dev/null +++ b/crates/tauri-plugin-splashscreen/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "tauri-plugin-splashscreen" +version = "0.1.0" +authors = [ "You" ] +description = "" +edition = "2021" +rust-version = "1.77.2" +exclude = ["/examples", "/dist-js", "/guest-js", "/node_modules"] +links = "tauri-plugin-splashscreen" + +[dependencies] +tauri = { version = "2.10.3" } +serde = "1.0" +thiserror = "2" + +[build-dependencies] +tauri-plugin = { version = "2.5.4", features = ["build"] } diff --git a/crates/tauri-plugin-splashscreen/README.md b/crates/tauri-plugin-splashscreen/README.md new file mode 100644 index 000000000..1173cdba2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/README.md @@ -0,0 +1 @@ +# Tauri Plugin splashscreen diff --git a/crates/tauri-plugin-splashscreen/android/.gitignore b/crates/tauri-plugin-splashscreen/android/.gitignore new file mode 100644 index 000000000..a964bbce7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.gitignore @@ -0,0 +1,3 @@ +/build +/.tauri +/.gradle \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/.gitignore b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/.gitignore new file mode 100644 index 000000000..42afabfd2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/build.gradle.kts b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/build.gradle.kts new file mode 100644 index 000000000..f997910c9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/build.gradle.kts @@ -0,0 +1,47 @@ +plugins { + id("com.android.library") + id("org.jetbrains.kotlin.android") +} + +android { + namespace = "app.tauri" + compileSdk = 36 + + defaultConfig { + minSdk = 21 + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + consumerProguardFiles("proguard-rules.pro") + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles( + getDefaultProguardFile("proguard-android-optimize.txt"), + "proguard-rules.pro" + ) + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 + } + kotlinOptions { + jvmTarget = "1.8" + } + buildFeatures { + buildConfig = true + } +} + +dependencies { + + implementation("androidx.core:core-ktx:1.7.0") + implementation("androidx.appcompat:appcompat:1.6.0") + implementation("com.google.android.material:material:1.7.0") + implementation("com.fasterxml.jackson.core:jackson-databind:2.15.3") + testImplementation("junit:junit:4.13.2") + androidTestImplementation("androidx.test.ext:junit:1.1.5") + androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1") +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/proguard-rules.pro b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/proguard-rules.pro new file mode 100644 index 000000000..e21b5beb4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/proguard-rules.pro @@ -0,0 +1,41 @@ +-keep class app.tauri.** { + @app.tauri.JniMethod public ; + native ; +} + +-keep class app.tauri.plugin.JSArray { + public (...); +} + +-keepclassmembers class org.json.JSONArray { + public put(...); +} + +-keep class app.tauri.plugin.JSObject { + public (...); + public put(...); +} + +-keep @app.tauri.annotation.TauriPlugin public class * { + @app.tauri.annotation.Command public ; + @app.tauri.annotation.PermissionCallback ; + @app.tauri.annotation.ActivityCallback ; + @app.tauri.annotation.Permission ; + public (...); +} + +-keep @app.tauri.annotation.InvokeArg public class * { + *; +} + +-keep @com.fasterxml.jackson.databind.annotation.JsonDeserialize public class * { + *; +} + +-keep @com.fasterxml.jackson.databind.annotation.JsonSerialize public class * { + *; +} + +-keep class * extends com.fasterxml.jackson.databind.JsonDeserializer { *; } + +-keep class * extends com.fasterxml.jackson.databind.JsonSerializer { *; } diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/androidTest/java/app/tauri/ExampleInstrumentedTest.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/androidTest/java/app/tauri/ExampleInstrumentedTest.kt new file mode 100644 index 000000000..77ce904cf --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/androidTest/java/app/tauri/ExampleInstrumentedTest.kt @@ -0,0 +1,28 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("app.tauri.test", appContext.packageName) + } +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/AndroidManifest.xml b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/AndroidManifest.xml new file mode 100644 index 000000000..9a40236b9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/AndroidManifest.xml @@ -0,0 +1,3 @@ + + + diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/AppPlugin.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/AppPlugin.kt new file mode 100644 index 000000000..0c2dc71f7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/AppPlugin.kt @@ -0,0 +1,54 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri + +import android.app.Activity +import android.webkit.WebView +import androidx.activity.OnBackPressedCallback +import androidx.appcompat.app.AppCompatActivity +import app.tauri.annotation.Command +import app.tauri.annotation.TauriPlugin +import app.tauri.plugin.Plugin +import app.tauri.plugin.Invoke +import app.tauri.plugin.JSObject + +@TauriPlugin +class AppPlugin(private val activity: Activity): Plugin(activity) { + private val BACK_BUTTON_EVENT = "back-button" + + private var webView: WebView? = null + + override fun load(webView: WebView) { + this.webView = webView + } + + init { + val callback = object : OnBackPressedCallback(true) { + override fun handleOnBackPressed() { + if (!hasListener(BACK_BUTTON_EVENT)) { + if (this@AppPlugin.webView?.canGoBack() == true) { + this@AppPlugin.webView!!.goBack() + } else { + this.isEnabled = false + this@AppPlugin.activity.onBackPressed() + this.isEnabled = true + } + } else { + val data = JSObject().apply { + put("canGoBack", this@AppPlugin.webView?.canGoBack() ?: false) + } + trigger(BACK_BUTTON_EVENT, data) + } + } + } + (activity as AppCompatActivity).onBackPressedDispatcher.addCallback(activity, callback) + } + + @Command + fun exit(invoke: Invoke) { + invoke.resolve() + activity.finish() + } +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/FsUtils.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/FsUtils.kt new file mode 100644 index 000000000..235775cb1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/FsUtils.kt @@ -0,0 +1,208 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri + +import android.content.ContentUris +import android.content.Context +import android.content.res.AssetManager +import android.database.Cursor +import android.net.Uri +import android.os.Environment +import android.provider.DocumentsContract +import android.provider.MediaStore +import android.provider.OpenableColumns +import java.io.File +import java.io.FileOutputStream +import kotlin.math.min + +internal class FsUtils { + companion object { + fun readAsset(assetManager: AssetManager, fileName: String): String { + assetManager.open(fileName).bufferedReader().use { + return it.readText() + } + } + + fun getFileUrlForUri(context: Context, uri: Uri): String? { + // DocumentProvider + if (DocumentsContract.isDocumentUri(context, uri)) { + // ExternalStorageProvider + if (isExternalStorageDocument(uri)) { + val docId: String = DocumentsContract.getDocumentId(uri) + val split = docId.split(":".toRegex()).dropLastWhile { it.isEmpty() } + .toTypedArray() + val type = split[0] + if ("primary".equals(type, ignoreCase = true)) { + return legacyPrimaryPath(split[1]) + } else { + val splitIndex = docId.indexOf(':', 1) + val tag = docId.substring(0, splitIndex) + val path = docId.substring(splitIndex + 1) + val nonPrimaryVolume = getPathToNonPrimaryVolume(context, tag) + if (nonPrimaryVolume != null) { + val result = "$nonPrimaryVolume/$path" + val file = File(result) + return if (file.exists() && file.canRead()) { + result + } else null + } + } + } else if (isDownloadsDocument(uri)) { + val id: String = DocumentsContract.getDocumentId(uri) + val contentUri: Uri = ContentUris.withAppendedId( + Uri.parse("content://downloads/public_downloads"), + java.lang.Long.valueOf(id) + ) + return getDataColumn(context, contentUri, null, null) + } else if (isMediaDocument(uri)) { + val docId: String = DocumentsContract.getDocumentId(uri) + val split = docId.split(":".toRegex()).dropLastWhile { it.isEmpty() } + .toTypedArray() + val type = split[0] + var contentUri: Uri? = null + when (type) { + "image" -> { + contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI + } + "video" -> { + contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI + } + "audio" -> { + contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI + } + } + val selection = "_id=?" + val selectionArgs = arrayOf(split[1]) + if (contentUri != null) { + return getDataColumn(context, contentUri, selection, selectionArgs) + } + } + } else if ("content".equals(uri.scheme, ignoreCase = true)) { + // Return the remote address + return if (isGooglePhotosUri(uri)) uri.lastPathSegment else getDataColumn( + context, + uri, + null, + null + ) + } else if ("file".equals(uri.scheme, ignoreCase = true)) { + return uri.path + } + return null + } + + /** + * Get the value of the data column for this Uri. This is useful for + * MediaStore Uris, and other file-based ContentProviders. + * + * @param context The context. + * @param uri The Uri to query. + * @param selection (Optional) Filter used in the query. + * @param selectionArgs (Optional) Selection arguments used in the query. + * @return The value of the _data column, which is typically a file path. + */ + private fun getDataColumn( + context: Context, + uri: Uri, + selection: String?, + selectionArgs: Array? + ): String? { + var path: String? = null + var cursor: Cursor? = null + val column = "_data" + val projection = arrayOf(column) + try { + cursor = context.contentResolver.query(uri, projection, selection, selectionArgs, null) + if (cursor != null && cursor.moveToFirst()) { + val index = cursor.getColumnIndexOrThrow(column) + path = cursor.getString(index) + } + } catch (ex: IllegalArgumentException) { + return getCopyFilePath(uri, context) + } finally { + cursor?.close() + } + return path ?: getCopyFilePath(uri, context) + } + + private fun getCopyFilePath(uri: Uri, context: Context): String? { + val cursor = context.contentResolver.query(uri, null, null, null, null)!! + val nameIndex = cursor.getColumnIndex(OpenableColumns.DISPLAY_NAME) + cursor.moveToFirst() + val name = cursor.getString(nameIndex) + val file = File(context.filesDir, name) + try { + val inputStream = context.contentResolver.openInputStream(uri) + val outputStream = FileOutputStream(file) + var read: Int + val maxBufferSize = 1024 * 1024 + val bufferSize = min(inputStream!!.available(), maxBufferSize) + val buffers = ByteArray(bufferSize) + while (inputStream.read(buffers).also { read = it } != -1) { + outputStream.write(buffers, 0, read) + } + inputStream.close() + outputStream.close() + } catch (e: Exception) { + return null + } finally { + cursor.close() + } + return file.path + } + + private fun legacyPrimaryPath(pathPart: String): String { + return Environment.getExternalStorageDirectory().toString() + "/" + pathPart + } + + /** + * @param uri The Uri to check. + * @return Whether the Uri authority is ExternalStorageProvider. + */ + private fun isExternalStorageDocument(uri: Uri): Boolean { + return "com.android.externalstorage.documents" == uri.authority + } + + /** + * @param uri The Uri to check. + * @return Whether the Uri authority is DownloadsProvider. + */ + private fun isDownloadsDocument(uri: Uri): Boolean { + return "com.android.providers.downloads.documents" == uri.authority + } + + /** + * @param uri The Uri to check. + * @return Whether the Uri authority is MediaProvider. + */ + private fun isMediaDocument(uri: Uri): Boolean { + return "com.android.providers.media.documents" == uri.authority + } + + /** + * @param uri The Uri to check. + * @return Whether the Uri authority is Google Photos. + */ + private fun isGooglePhotosUri(uri: Uri): Boolean { + return "com.google.android.apps.photos.content" == uri.authority + } + + private fun getPathToNonPrimaryVolume(context: Context, tag: String): String? { + val volumes = context.externalCacheDirs + if (volumes != null) { + for (volume in volumes) { + if (volume != null) { + val path = volume.absolutePath + val index = path.indexOf(tag) + if (index != -1) { + return path.substring(0, index) + tag + } + } + } + } + return null + } + } +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/JniMethod.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/JniMethod.kt new file mode 100644 index 000000000..41301d407 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/JniMethod.kt @@ -0,0 +1,8 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri + +@Retention(AnnotationRetention.RUNTIME) +internal annotation class JniMethod diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/Logger.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/Logger.kt new file mode 100644 index 000000000..c0473788b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/Logger.kt @@ -0,0 +1,85 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri + +// taken from https://github.com/ionic-team/capacitor/blob/6658bca41e78239347e458175b14ca8bd5c1d6e8/android/capacitor/src/main/java/com/getcapacitor/Logger.java + +import android.text.TextUtils; +import android.util.Log; + +class Logger { + companion object { + private const val LOG_TAG_CORE = "Tauri" + + fun tags(vararg subtags: String): String { + return if (subtags.isNotEmpty()) { + LOG_TAG_CORE + "/" + TextUtils.join("/", subtags) + } else LOG_TAG_CORE + } + + fun verbose(message: String) { + verbose(LOG_TAG_CORE, message) + } + + fun verbose(tag: String, message: String) { + if (!shouldLog()) { + return + } + Log.v(tag, message) + } + + fun debug(message: String) { + debug(LOG_TAG_CORE, message) + } + + fun debug(tag: String, message: String) { + if (!shouldLog()) { + return + } + Log.d(tag, message) + } + + fun info(message: String) { + info(LOG_TAG_CORE, message) + } + + fun info(tag: String, message: String) { + if (!shouldLog()) { + return + } + Log.i(tag, message) + } + + fun warn(message: String) { + warn(LOG_TAG_CORE, message) + } + + fun warn(tag: String, message: String) { + if (!shouldLog()) { + return + } + Log.w(tag, message) + } + + fun error(message: String) { + error(LOG_TAG_CORE, message, null) + } + + fun error(message: String, e: Throwable?) { + error(LOG_TAG_CORE, message, e) + } + + fun error(tag: String, message: String, e: Throwable?) { + if (!shouldLog()) { + return + } + Log.e(tag, message, e) + } + + private fun shouldLog(): Boolean { + return BuildConfig.DEBUG + } + } +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/PathPlugin.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/PathPlugin.kt new file mode 100644 index 000000000..1ce1c2f06 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/PathPlugin.kt @@ -0,0 +1,132 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri + +import android.app.Activity +import android.database.Cursor +import android.net.Uri +import android.os.Build +import android.os.Environment +import android.provider.OpenableColumns +import app.tauri.annotation.Command +import app.tauri.annotation.InvokeArg +import app.tauri.annotation.TauriPlugin +import app.tauri.plugin.Plugin +import app.tauri.plugin.Invoke +import app.tauri.plugin.JSObject + +const val TAURI_ASSETS_DIRECTORY_URI = "asset://localhost/" + +@InvokeArg +class GetFileNameFromUriArgs { + lateinit var uri: String +} + +@TauriPlugin +class PathPlugin(private val activity: Activity): Plugin(activity) { + private fun resolvePath(invoke: Invoke, path: String?) { + val obj = JSObject() + obj.put("path", path) + invoke.resolve(obj) + } + + @Command + fun getFileNameFromUri(invoke: Invoke) { + val args = invoke.parseArgs(GetFileNameFromUriArgs::class.java) + val name = getRealNameFromURI(activity, Uri.parse(args.uri)) + val res = JSObject() + res.put("name", name) + invoke.resolve(res) + } + + @Command + fun getAudioDir(invoke: Invoke) { + resolvePath(invoke, activity.getExternalFilesDir(Environment.DIRECTORY_MUSIC)?.absolutePath) + } + + @Command + fun getExternalCacheDir(invoke: Invoke) { + resolvePath(invoke, activity.externalCacheDir?.absolutePath) + } + + @Command + fun getConfigDir(invoke: Invoke) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { + resolvePath(invoke, activity.dataDir.absolutePath) + } else { + resolvePath(invoke, activity.applicationInfo.dataDir) + } + } + + @Command + fun getDataDir(invoke: Invoke) { + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) { + resolvePath(invoke, activity.dataDir.absolutePath) + } else { + resolvePath(invoke, activity.applicationInfo.dataDir) + } + } + + @Command + fun getDocumentDir(invoke: Invoke) { + resolvePath(invoke, activity.getExternalFilesDir(Environment.DIRECTORY_DOCUMENTS)?.absolutePath) + } + + @Command + fun getDownloadDir(invoke: Invoke) { + resolvePath(invoke, activity.getExternalFilesDir(Environment.DIRECTORY_DOWNLOADS)?.absolutePath) + } + + @Command + fun getPictureDir(invoke: Invoke) { + resolvePath(invoke, activity.getExternalFilesDir(Environment.DIRECTORY_PICTURES)?.absolutePath) + } + + @Command + fun getPublicDir(invoke: Invoke) { + resolvePath(invoke, activity.getExternalFilesDir(Environment.DIRECTORY_DCIM)?.absolutePath) + } + + @Command + fun getVideoDir(invoke: Invoke) { + resolvePath(invoke, activity.externalCacheDir?.absolutePath) + } + + @Command + fun getResourcesDir(invoke: Invoke) { + resolvePath(invoke, TAURI_ASSETS_DIRECTORY_URI) + } + + @Command + fun getCacheDir(invoke: Invoke) { + resolvePath(invoke, activity.cacheDir.absolutePath) + } + + @Command + fun getHomeDir(invoke: Invoke) { + resolvePath(invoke, Environment.getExternalStorageDirectory().absolutePath) + } +} + +fun getRealNameFromURI(activity: Activity, contentUri: Uri): String? { + var cursor: Cursor? = null + try { + val projection = arrayOf(OpenableColumns.DISPLAY_NAME) + cursor = activity.contentResolver.query(contentUri, projection, null, null, null) + + cursor?.let { + val columnIndex = it.getColumnIndex(OpenableColumns.DISPLAY_NAME) + if (it.moveToFirst()) { + return it.getString(columnIndex) + } + } + } catch (e: Exception) { + Logger.error("failed to get real name from URI $e") + } finally { + cursor?.close() + } + + return null // Return null if no file name could be resolved +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/PermissionHelper.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/PermissionHelper.kt new file mode 100644 index 000000000..37468d20d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/PermissionHelper.kt @@ -0,0 +1,113 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri + +// taken from https://github.com/ionic-team/capacitor/blob/6658bca41e78239347e458175b14ca8bd5c1d6e8/android/capacitor/src/main/java/com/getcapacitor/PermissionHelper.java + +import android.content.Context; +import android.content.pm.PackageManager; +import android.os.Build; +import androidx.core.app.ActivityCompat; +import java.util.ArrayList; + +object PermissionHelper { + /** + * Checks if a list of given permissions are all granted by the user + * + * @param permissions Permissions to check. + * @return True if all permissions are granted, false if at least one is not. + */ + fun hasPermissions(context: Context?, permissions: Array): Boolean { + for (perm in permissions) { + if (ActivityCompat.checkSelfPermission( + context!!, + perm + ) != PackageManager.PERMISSION_GRANTED + ) { + return false + } + } + return true + } + + /** + * Check whether the given permission has been defined in the AndroidManifest.xml + * + * @param permission A permission to check. + * @return True if the permission has been defined in the Manifest, false if not. + */ + fun hasDefinedPermission(context: Context, permission: String): Boolean { + var hasPermission = false + val requestedPermissions = getManifestPermissions(context) + if (requestedPermissions != null && requestedPermissions.isNotEmpty()) { + val requestedPermissionsList = listOf(*requestedPermissions) + val requestedPermissionsArrayList = ArrayList(requestedPermissionsList) + if (requestedPermissionsArrayList.contains(permission)) { + hasPermission = true + } + } + return hasPermission + } + + /** + * Check whether all of the given permissions have been defined in the AndroidManifest.xml + * @param context the app context + * @param permissions a list of permissions + * @return true only if all permissions are defined in the AndroidManifest.xml + */ + fun hasDefinedPermissions(context: Context, permissions: Array): Boolean { + for (permission in permissions) { + if (!hasDefinedPermission(context, permission)) { + return false + } + } + return true + } + + /** + * Get the permissions defined in AndroidManifest.xml + * + * @return The permissions defined in AndroidManifest.xml + */ + private fun getManifestPermissions(context: Context): Array? { + var requestedPermissions: Array? = null + try { + val pm = context.packageManager + val packageInfo = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) { + pm.getPackageInfo(context.packageName, PackageManager.PackageInfoFlags.of(PackageManager.GET_PERMISSIONS.toLong())) + } else { + @Suppress("DEPRECATION") + pm.getPackageInfo(context.packageName, PackageManager.GET_PERMISSIONS) + } + if (packageInfo != null) { + requestedPermissions = packageInfo.requestedPermissions + } + } catch (_: Exception) { + } + return requestedPermissions + } + + /** + * Given a list of permissions, return a new list with the ones not present in AndroidManifest.xml + * + * @param neededPermissions The permissions needed. + * @return The permissions not present in AndroidManifest.xml + */ + fun getUndefinedPermissions(context: Context, neededPermissions: Array): Array { + val undefinedPermissions = ArrayList() + val requestedPermissions = getManifestPermissions(context) + if (!requestedPermissions.isNullOrEmpty()) { + val requestedPermissionsList = listOf(*requestedPermissions) + val requestedPermissionsArrayList = ArrayList(requestedPermissionsList) + for (permission in neededPermissions) { + if (!requestedPermissionsArrayList.contains(permission)) { + undefinedPermissions.add(permission) + } + } + return undefinedPermissions.toTypedArray() + } + return neededPermissions + } +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/PermissionState.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/PermissionState.kt new file mode 100644 index 000000000..33092ed55 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/PermissionState.kt @@ -0,0 +1,21 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri + +import java.util.* + +enum class PermissionState(private val state: String) { + GRANTED("granted"), DENIED("denied"), PROMPT("prompt"), PROMPT_WITH_RATIONALE("prompt-with-rationale"); + + override fun toString(): String { + return state + } + + companion object { + fun byState(state: String): PermissionState { + return valueOf(state.uppercase(Locale.ROOT).replace('-', '_')) + } + } +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/ActivityCallback.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/ActivityCallback.kt new file mode 100644 index 000000000..d68093994 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/ActivityCallback.kt @@ -0,0 +1,9 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.annotation + +@Retention(AnnotationRetention.RUNTIME) +@Target(AnnotationTarget.FUNCTION) +annotation class ActivityCallback diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/InvokeArg.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/InvokeArg.kt new file mode 100644 index 000000000..08a2f7524 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/InvokeArg.kt @@ -0,0 +1,9 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.annotation + +@Retention(AnnotationRetention.RUNTIME) +@Target(AnnotationTarget.CLASS) +annotation class InvokeArg diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/Permission.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/Permission.kt new file mode 100644 index 000000000..bd5ab5ddf --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/Permission.kt @@ -0,0 +1,19 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.annotation + +@Retention(AnnotationRetention.RUNTIME) +annotation class Permission( + /** + * An array of Android permission strings. + * Eg: {Manifest.permission.ACCESS_COARSE_LOCATION} + * or {"android.permission.ACCESS_COARSE_LOCATION"} + */ + val strings: Array = [], + /** + * An optional name to use instead of the Android permission string. + */ + val alias: String = "" +) diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/PermissionCallback.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/PermissionCallback.kt new file mode 100644 index 000000000..5fdeddf9d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/PermissionCallback.kt @@ -0,0 +1,9 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.annotation + +@Retention(AnnotationRetention.RUNTIME) +@Target(AnnotationTarget.FUNCTION) +annotation class PermissionCallback diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/PluginMethod.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/PluginMethod.kt new file mode 100644 index 000000000..7a73045e4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/PluginMethod.kt @@ -0,0 +1,8 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.annotation + +@Retention(AnnotationRetention.RUNTIME) +annotation class Command diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/TauriPlugin.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/TauriPlugin.kt new file mode 100644 index 000000000..4e8bc786f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/annotation/TauriPlugin.kt @@ -0,0 +1,19 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.annotation + +import app.tauri.annotation.Permission + +/** + * Base annotation for all Plugins + */ +@Retention(AnnotationRetention.RUNTIME) +annotation class TauriPlugin( + /** + * Permissions this plugin needs, in order to make permission requests + * easy if the plugin only needs basic permission prompting + */ + val permissions: Array = [] +) diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/Channel.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/Channel.kt new file mode 100644 index 000000000..581b074a4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/Channel.kt @@ -0,0 +1,33 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.plugin + +import com.fasterxml.jackson.core.JsonParser +import com.fasterxml.jackson.databind.DeserializationContext +import com.fasterxml.jackson.databind.JsonDeserializer +import com.fasterxml.jackson.databind.ObjectMapper + +const val CHANNEL_PREFIX = "__CHANNEL__:" + +internal class ChannelDeserializer(val sendChannelData: (channelId: Long, data: String) -> Unit, private val objectMapper: ObjectMapper): JsonDeserializer() { + override fun deserialize( + jsonParser: JsonParser?, + deserializationContext: DeserializationContext + ): Channel { + val channelDef = deserializationContext.readValue(jsonParser, String::class.java) + val callback = channelDef.substring(CHANNEL_PREFIX.length).toLongOrNull() ?: throw Error("unexpected channel value $channelDef") + return Channel(callback, { res -> sendChannelData(callback, res) }, objectMapper) + } +} + +class Channel(val id: Long, private val handler: (data: String) -> Unit, private val objectMapper: ObjectMapper) { + fun send(data: JSObject) { + handler(PluginResult(data).toString()) + } + + fun sendObject(data: Any) { + handler(objectMapper.writeValueAsString(data)) + } +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/InvalidPluginMethodException.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/InvalidPluginMethodException.kt new file mode 100644 index 000000000..4325313fc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/InvalidPluginMethodException.kt @@ -0,0 +1,11 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.plugin + +internal class InvalidCommandException : Exception { + constructor(s: String?) : super(s) {} + constructor(t: Throwable?) : super(t) {} + constructor(s: String?, t: Throwable?) : super(s, t) {} +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/Invoke.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/Invoke.kt new file mode 100644 index 000000000..1f9d08007 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/Invoke.kt @@ -0,0 +1,93 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.plugin + +import app.tauri.Logger +import com.fasterxml.jackson.core.type.TypeReference +import com.fasterxml.jackson.databind.ObjectMapper + +class Invoke( + val id: Long, + val command: String, + val callback: Long, + val error: Long, + private val sendResponse: (callback: Long, data: String) -> Unit, + private val argsJson: String, + private val jsonMapper: ObjectMapper +) { + fun getRawArgs(): String { + return argsJson + } + + fun getArgs(): JSObject { + return JSObject(argsJson) + } + + fun parseArgs(cls: Class): T { + return jsonMapper.readValue(argsJson, cls) + } + + fun parseArgs(ref: TypeReference): T { + return jsonMapper.readValue(argsJson, ref) + } + + fun resolve(data: JSObject?) { + sendResponse(callback, PluginResult(data).toString()) + } + + fun resolveObject(data: Any) { + sendResponse(callback, jsonMapper.writeValueAsString(data)) + } + + fun resolve() { + sendResponse(callback, "null") + } + + fun reject(msg: String?, code: String?, ex: Exception?, data: JSObject?) { + val errorResult = PluginResult() + + if (ex != null) { + Logger.error(Logger.tags("Plugin"), msg!!, ex) + } + + errorResult.put("message", msg) + if (code != null) { + errorResult.put("code", code) + } + if (data != null) { + errorResult.put("data", data) + } + + sendResponse(error, errorResult.toString()) + } + + fun reject(msg: String?, ex: Exception?, data: JSObject?) { + reject(msg, null, ex, data) + } + + fun reject(msg: String?, code: String?, data: JSObject?) { + reject(msg, code, null, data) + } + + fun reject(msg: String?, code: String?, ex: Exception?) { + reject(msg, code, ex, null) + } + + fun reject(msg: String?, data: JSObject?) { + reject(msg, null, null, data) + } + + fun reject(msg: String?, ex: Exception?) { + reject(msg, null, ex, null) + } + + fun reject(msg: String?, code: String?) { + reject(msg, code, null, null) + } + + fun reject(msg: String?) { + reject(msg, null, null, null) + } +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/JSArray.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/JSArray.kt new file mode 100644 index 000000000..84bdf4017 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/JSArray.kt @@ -0,0 +1,45 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.plugin + +import org.json.JSONArray +import org.json.JSONException + +class JSArray : JSONArray { + constructor() : super() {} + constructor(json: String?) : super(json) {} + constructor(copyFrom: Collection<*>?) : super(copyFrom) {} + constructor(array: Any?) : super(array) {} + + @Suppress("UNCHECKED_CAST", "ASSIGNED_BUT_NEVER_ACCESSED_VARIABLE") + @Throws(JSONException::class) + fun toList(): List { + val items: MutableList = ArrayList() + var o: Any? = null + for (i in 0 until this.length()) { + this.get(i).also { o = it } + try { + items.add(this.get(i) as E) + } catch (ex: Exception) { + throw JSONException("Not all items are instances of the given type") + } + } + return items + } + + companion object { + /** + * Create a new JSArray without throwing a error + */ + fun from(array: Any?): JSArray? { + try { + return JSArray(array) + } catch (ex: JSONException) { + // + } + return null + } + } +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/JSObject.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/JSObject.kt new file mode 100644 index 000000000..2d4056108 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/JSObject.kt @@ -0,0 +1,152 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.plugin + +import org.json.JSONException +import org.json.JSONObject + +class JSObject : JSONObject { + constructor() : super() + constructor(json: String) : super(json) + constructor(obj: JSONObject, names: Array) : super(obj, names) + + override fun getString(key: String): String { + return getString(key, "")!! + } + + fun getString(key: String, defaultValue: String?): String? { + try { + if (!super.isNull(key)) { + return super.getString(key) + } + } catch (_: JSONException) { + } + return defaultValue + } + + fun getInteger(key: String): Int? { + return getIntegerInternal(key, null) + } + + fun getInteger(key: String, defaultValue: Int): Int { + return getIntegerInternal(key, defaultValue)!! + } + + private fun getIntegerInternal(key: String, defaultValue: Int?): Int? { + try { + return super.getInt(key) + } catch (_: JSONException) { + } + return defaultValue + } + + override fun getBoolean(key: String): Boolean { + return getBooleanInternal(key, false)!! + } + + fun getBoolean(key: String, defaultValue: Boolean?): Boolean { + return getBooleanInternal(key, defaultValue)!! + } + + private fun getBooleanInternal(key: String, defaultValue: Boolean?): Boolean? { + try { + return super.getBoolean(key) + } catch (_: JSONException) { + } + return defaultValue + } + + fun getJSObject(name: String): JSObject? { + try { + return getJSObjectInternal(name, null) + } catch (_: JSONException) { + } + return null + } + + fun getJSObject(name: String, defaultValue: JSObject): JSObject { + return getJSObjectInternal(name, defaultValue)!! + } + + private fun getJSObjectInternal(name: String, defaultValue: JSObject?): JSObject? { + try { + val obj = get(name) + if (obj is JSONObject) { + val keysIter = obj.keys() + val keys: MutableList = ArrayList() + while (keysIter.hasNext()) { + keys.add(keysIter.next()) + } + return JSObject(obj, keys.toTypedArray()) + } + } catch (_: JSONException) { + } + return defaultValue + } + + override fun put(key: String, value: Boolean): JSObject { + try { + super.put(key, value) + } catch (_: JSONException) { + } + return this + } + + override fun put(key: String, value: Int): JSObject { + try { + super.put(key, value) + } catch (_: JSONException) { + } + return this + } + + override fun put(key: String, value: Long): JSObject { + try { + super.put(key, value) + } catch (_: JSONException) { + } + return this + } + + override fun put(key: String, value: Double): JSObject { + try { + super.put(key, value) + } catch (_: JSONException) { + } + return this + } + + override fun put(key: String, value: Any?): JSObject { + try { + super.put(key, value) + } catch (_: JSONException) { + } + return this + } + + fun put(key: String, value: String?): JSObject { + try { + super.put(key, value) + } catch (_: JSONException) { + } + return this + } + + companion object { + /** + * Convert a pathetic JSONObject into a JSObject + * @param obj + */ + @Throws(JSONException::class) + fun fromJSONObject(obj: JSONObject): JSObject { + val keysIter = obj.keys() + val keys: MutableList = ArrayList() + while (keysIter.hasNext()) { + keys.add(keysIter.next()) + } + return JSObject(obj, keys.toTypedArray()) + } + } +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/Plugin.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/Plugin.kt new file mode 100644 index 000000000..d33fa8a4d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/Plugin.kt @@ -0,0 +1,490 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.plugin + +import android.app.Activity +import android.content.res.Configuration +import android.content.Intent +import android.content.pm.PackageManager +import android.net.Uri +import android.webkit.WebView +import androidx.activity.result.IntentSenderRequest +import androidx.core.app.ActivityCompat +import app.tauri.FsUtils +import app.tauri.Logger +import app.tauri.PermissionHelper +import app.tauri.PermissionState +import app.tauri.annotation.ActivityCallback +import app.tauri.annotation.Command +import app.tauri.annotation.InvokeArg +import app.tauri.annotation.PermissionCallback +import app.tauri.annotation.TauriPlugin +import com.fasterxml.jackson.databind.ObjectMapper +import java.util.* +import java.util.concurrent.CopyOnWriteArrayList + +@InvokeArg +internal class RegisterListenerArgs { + lateinit var event: String + lateinit var handler: Channel +} + +@InvokeArg +internal class RemoveListenerArgs { + lateinit var event: String + var channelId: Long = 0 +} + +@InvokeArg internal class RequestPermissionsArgs { + var permissions: List? = null +} + +abstract class Plugin(private val activity: Activity) { + var handle: PluginHandle? = null + private val listeners: MutableMap> = mutableMapOf() + + open fun load(webView: WebView) {} + + fun jsonMapper(): ObjectMapper { + return handle!!.jsonMapper + } + + fun getConfig(cls: Class): T { + return jsonMapper().readValue(handle!!.config, cls) + } + + /** + * Handle a new intent being received by the application + */ + open fun onNewIntent(intent: Intent) {} + + + /** + * This event is called just before another activity comes into the foreground. + */ + open fun onPause() {} + + /** + * This event is called when the user returns to the activity. It is also called on cold starts. + */ + open fun onResume() {} + + /** + * This event is called after onStop() when the current activity is being re-displayed to the user (the user has navigated back to it). + * It will be followed by onStart() and then onResume(). + */ + open fun onRestart() {} + + /** + * This event is called when the app is no longer visible to the user. + * You will next receive either onRestart(), onDestroy(), or nothing, depending on later user activity. + */ + open fun onStop() {} + + /** + * This event is called before the activity is destroyed. + */ + open fun onDestroy() {} + + /** + * This event is called when a configuration change occurs but the app does not recreate the activity. + */ + open fun onConfigurationChanged(newConfig: Configuration) {} + + /** + * Start activity for result with the provided Intent and resolve calling the provided callback method name. + * + * If there is no registered activity callback for the method name passed in, the call will + * be rejected. Make sure a valid activity result callback method is registered using the + * [ActivityCallback] annotation. + * + * @param invoke the invoke object + * @param intent the intent used to start an activity + * @param callbackName the name of the callback to run when the launched activity is finished + */ + fun startActivityForResult(invoke: Invoke, intent: Intent, callbackName: String) { + handle!!.startActivityForResult(invoke, intent, callbackName) + } + + /** + * Like startActivityForResult() but taking an IntentSender to describe the activity to be started. + * + * If there is no registered activity callback for the method name passed in, the call will + * be rejected. Make sure a valid activity result callback method is registered using the + * [ActivityCallback] annotation. + * + * @param invoke the invoke object + * @param intentSender the intent used to start an activity + * @param callbackName the name of the callback to run when the launched activity is finished + */ + fun startIntentSenderForResult(invoke: Invoke, intentSender: IntentSenderRequest, callbackName: String) { + handle!!.startIntentSenderForResult(invoke, intentSender, callbackName) + } + + /** + * Get the plugin log tags. + * @param subTags + */ + protected fun getLogTag(vararg subTags: String): String { + return Logger.tags(*subTags) + } + + /** + * Gets a log tag with the plugin's class name as subTag. + */ + protected fun getLogTag(): String { + return Logger.tags(this.javaClass.simpleName) + } + + /** + * Convert an URI to an URL that can be loaded by the webview. + */ + fun assetUrl(u: Uri): String { + var path = FsUtils.getFileUrlForUri(activity, u) + if (path?.startsWith("file://") == true) { + path = path.replace("file://", "") + } + return "asset://localhost$path" + } + + fun trigger(event: String, payload: JSObject) { + val eventListeners = listeners[event] + if (!eventListeners.isNullOrEmpty()) { + val listeners = CopyOnWriteArrayList(eventListeners) + for (channel in listeners) { + channel.send(payload) + } + } + } + + fun triggerObject(event: String, payload: Any) { + val eventListeners = listeners[event] + if (!eventListeners.isNullOrEmpty()) { + val listeners = CopyOnWriteArrayList(eventListeners) + for (channel in listeners) { + channel.sendObject(payload) + } + } + } + + fun hasListener(event: String): Boolean { + return !listeners[event].isNullOrEmpty() + } + + @Command + open fun registerListener(invoke: Invoke) { + val args = invoke.parseArgs(RegisterListenerArgs::class.java) + + val eventListeners = listeners[args.event] + if (eventListeners.isNullOrEmpty()) { + listeners[args.event] = mutableListOf(args.handler) + } else { + eventListeners.add(args.handler) + } + + invoke.resolve() + } + + @Command + open fun removeListener(invoke: Invoke) { + val args = invoke.parseArgs(RemoveListenerArgs::class.java) + + val eventListeners = listeners[args.event] + if (!eventListeners.isNullOrEmpty()) { + val c = eventListeners.find { c -> c.id == args.channelId } + if (c != null) { + eventListeners.remove(c) + } + } + + invoke.resolve() + } + + /** + * Exported plugin method for checking the granted status for each permission + * declared on the plugin. This plugin call responds with a mapping of permissions to + * the associated granted status. + */ + @Command + @PermissionCallback + open fun checkPermissions(invoke: Invoke) { + val permissionsResult: Map = getPermissionStates() + if (permissionsResult.isEmpty()) { + // if no permissions are defined on the plugin, resolve undefined + invoke.resolve() + } else { + val permissionsResultJSON = JSObject() + for ((key, value) in permissionsResult) { + permissionsResultJSON.put(key, value) + } + invoke.resolve(permissionsResultJSON) + } + } + + /** + * Exported plugin method to request all permissions for this plugin. + * To manually request permissions within a plugin use: + * [.requestAllPermissions], or + * [.requestPermissionForAlias], or + * [.requestPermissionForAliases] + * + * @param invoke + */ + @Command + open fun requestPermissions(invoke: Invoke) { + val annotation = handle?.annotation + if (annotation != null) { + // handle permission requests for plugins defined with @TauriPlugin + var permAliases: Array? = null + val autoGrantPerms: MutableSet = HashSet() + + val args = invoke.parseArgs(RequestPermissionsArgs::class.java) + + args.permissions?.let { + val aliasSet: MutableSet = HashSet() + + for (perm in annotation.permissions) { + if (it.contains(perm.alias)) { + aliasSet.add(perm.alias) + } + } + if (aliasSet.isEmpty()) { + invoke.reject("No valid permission alias was requested of this plugin.") + return + } else { + permAliases = aliasSet.toTypedArray() + } + } ?: run { + val aliasSet: MutableSet = HashSet() + + for (perm in annotation.permissions) { + // If a permission is defined with no permission strings, separate it for auto-granting. + // Otherwise, the alias is added to the list to be requested. + if (perm.strings.isEmpty() || perm.strings.size == 1 && perm.strings[0] + .isEmpty() + ) { + if (perm.alias.isNotEmpty()) { + autoGrantPerms.add(perm.alias) + } + } else { + aliasSet.add(perm.alias) + } + } + permAliases = aliasSet.toTypedArray() + } + + permAliases?.let { + // request permissions using provided aliases or all defined on the plugin + requestPermissionForAliases(it, invoke, "checkPermissions") + } ?: run { + if (autoGrantPerms.isNotEmpty()) { + // if the plugin only has auto-grant permissions, return all as GRANTED + val permissionsResults = JSObject() + for (perm in autoGrantPerms) { + permissionsResults.put(perm, PermissionState.GRANTED.toString()) + } + invoke.resolve(permissionsResults) + } else { + // no permissions are defined on the plugin, resolve undefined + invoke.resolve() + } + } + } + } + + /** + * Checks if the given permission alias is correctly declared in AndroidManifest.xml + * @param alias a permission alias defined on the plugin + * @return true only if all permissions associated with the given alias are declared in the manifest + */ + fun isPermissionDeclared(alias: String): Boolean { + val annotation = handle?.annotation + if (annotation != null) { + for (perm in annotation.permissions) { + if (alias.equals(perm.alias, ignoreCase = true)) { + var result = true + for (permString in perm.strings) { + result = result && PermissionHelper.hasDefinedPermission(activity, permString) + } + return result + } + } + } + Logger.error( + String.format( + "isPermissionDeclared: No alias defined for %s " + "or missing @TauriPlugin annotation.", + alias + ) + ) + return false + } + + private fun permissionActivityResult( + invoke: Invoke, + permissionStrings: Array, + callbackName: String + ) { + handle!!.requestPermissions(invoke, permissionStrings, callbackName) + } + + /** + * Request all of the specified permissions in the TauriPlugin annotation (if any) + * + * If there is no registered permission callback for the Invoke passed in, the call will + * be rejected. Make sure a valid permission callback method is registered using the + * [PermissionCallback] annotation. + * + * @param invoke + * @param callbackName the name of the callback to run when the permission request is complete + */ + protected fun requestAllPermissions( + invoke: Invoke, + callbackName: String + ) { + val annotation = handle!!.annotation + if (annotation != null) { + val perms: HashSet = HashSet() + for (perm in annotation.permissions) { + perms.addAll(perm.strings) + } + permissionActivityResult(invoke, perms.toArray(arrayOfNulls(0)), callbackName) + } + } + + /** + * Request permissions using an alias defined on the plugin. + * + * If there is no registered permission callback for the Invoke passed in, the call will + * be rejected. Make sure a valid permission callback method is registered using the + * [PermissionCallback] annotation. + * + * @param alias an alias defined on the plugin + * @param invoke the invoke involved in originating the request + * @param callbackName the name of the callback to run when the permission request is complete + */ + protected fun requestPermissionForAlias( + alias: String, + invoke: Invoke, + callbackName: String + ) { + requestPermissionForAliases(arrayOf(alias), invoke, callbackName) + } + + /** + * Request permissions using aliases defined on the plugin. + * + * If there is no registered permission callback for the Invoke passed in, the call will + * be rejected. Make sure a valid permission callback method is registered using the + * [PermissionCallback] annotation. + * + * @param aliases a set of aliases defined on the plugin + * @param invoke the invoke involved in originating the request + * @param callbackName the name of the callback to run when the permission request is complete + */ + fun requestPermissionForAliases( + aliases: Array, + invoke: Invoke, + callbackName: String + ) { + if (aliases.isEmpty()) { + Logger.error("No permission alias was provided") + return + } + val permissions = getPermissionStringsForAliases(aliases) + if (permissions.isNotEmpty()) { + permissionActivityResult(invoke, permissions, callbackName) + } + } + + /** + * Gets the Android permission strings defined on the [TauriPlugin] annotation with + * the provided aliases. + * + * @param aliases aliases for permissions defined on the plugin + * @return Android permission strings associated with the provided aliases, if exists + */ + private fun getPermissionStringsForAliases(aliases: Array): Array { + val annotation = handle?.annotation + val perms: HashSet = HashSet() + if (annotation != null) { + for (perm in annotation.permissions) { + if (aliases.contains(perm.alias)) { + perms.addAll(perm.strings) + } + } + } + return perms.toArray(arrayOfNulls(0)) + } + + /** + * Get the permission state for the provided permission alias. + * + * @param alias the permission alias to get + * @return the state of the provided permission alias or null + */ + fun getPermissionState(alias: String): PermissionState? { + return getPermissionStates()[alias] + } + + /** + * Helper to check all permissions defined on a plugin and see the state of each. + * + * @return A mapping of permission aliases to the associated granted status. + */ + open fun getPermissionStates(): Map { + val permissionsResults: MutableMap = HashMap() + val annotation = handle?.annotation + if (annotation != null) { + for (perm in annotation.permissions) { + // If a permission is defined with no permission constants, return GRANTED for it. + // Otherwise, get its true state. + if (perm.strings.isEmpty() || perm.strings.size == 1 && perm.strings[0] + .isEmpty() + ) { + val key = perm.alias + if (key.isNotEmpty()) { + val existingResult = permissionsResults[key] + + // auto set permission state to GRANTED if the alias is empty. + if (existingResult == null) { + permissionsResults[key] = PermissionState.GRANTED + } + } + } else { + for (permString in perm.strings) { + val key = perm.alias.ifEmpty { permString } + var permissionStatus: PermissionState + if (ActivityCompat.checkSelfPermission( + activity, + permString + ) == PackageManager.PERMISSION_GRANTED + ) { + permissionStatus = PermissionState.GRANTED + } else { + permissionStatus = PermissionState.PROMPT + + // Check if there is a cached permission state for the "Never ask again" state + val prefs = + activity.getSharedPreferences("PluginPermStates", Activity.MODE_PRIVATE) + val state = prefs.getString(permString, null) + if (state != null) { + permissionStatus = PermissionState.byState(state) + } + } + val existingResult = permissionsResults[key] + + // multiple permissions with the same alias must all be true, otherwise all false. + if (existingResult == null || existingResult === PermissionState.GRANTED) { + permissionsResults[key] = permissionStatus + } + } + } + } + } + + return permissionsResults + } + +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/PluginHandle.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/PluginHandle.kt new file mode 100644 index 000000000..8296c815b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/PluginHandle.kt @@ -0,0 +1,168 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.plugin + +import android.app.Activity +import android.content.Intent +import android.content.SharedPreferences +import android.webkit.WebView +import androidx.activity.result.IntentSenderRequest +import androidx.core.app.ActivityCompat +import app.tauri.PermissionHelper +import app.tauri.PermissionState +import app.tauri.annotation.ActivityCallback +import app.tauri.annotation.Command +import app.tauri.annotation.PermissionCallback +import app.tauri.annotation.TauriPlugin +import com.fasterxml.jackson.databind.ObjectMapper +import java.lang.reflect.Method + +class PluginHandle(private val manager: PluginManager, val name: String, val instance: Plugin, val config: String, val jsonMapper: ObjectMapper) { + private val commands: HashMap = HashMap() + private val permissionCallbackMethods: HashMap = HashMap() + private val startActivityCallbackMethods: HashMap = HashMap() + var annotation: TauriPlugin? + var loaded = false + + init { + indexMethods() + instance.handle = this + annotation = instance.javaClass.getAnnotation(TauriPlugin::class.java) + } + + fun load(webView: WebView) { + instance.load(webView) + loaded = true + } + + fun startActivityForResult(invoke: Invoke, intent: Intent, callbackName: String) { + manager.startActivityForResult(intent) { result -> + val method = startActivityCallbackMethods[callbackName] + if (method != null) { + method.isAccessible = true + method(instance, invoke, result) + } + } + } + + fun startIntentSenderForResult(invoke: Invoke, intentSender: IntentSenderRequest, callbackName: String) { + manager.startIntentSenderForResult(intentSender) { result -> + val method = startActivityCallbackMethods[callbackName] + if (method != null) { + method.isAccessible = true + method(instance, invoke, result) + } + } + } + + fun requestPermissions( + invoke: Invoke, + permissions: Array, + callbackName: String + ) { + manager.requestPermissions(permissions) { result -> + if (validatePermissions(invoke, result)) { + val method = permissionCallbackMethods[callbackName] + if (method != null) { + method.isAccessible = true + method(instance, invoke) + } + } + } + } + + /** + * Saves permission states and rejects if permissions were not correctly defined in + * the AndroidManifest.xml file. + * + * @param permissions + * @return true if permissions were saved and defined correctly, false if not + */ + private fun validatePermissions( + invoke: Invoke, + permissions: Map + ): Boolean { + val activity = manager.activity + val prefs = + activity.getSharedPreferences("PluginPermStates", Activity.MODE_PRIVATE) + for ((permString, isGranted) in permissions) { + if (isGranted) { + // Permission granted. If previously denied, remove cached state + val state = prefs.getString(permString, null) + if (state != null) { + val editor: SharedPreferences.Editor = prefs.edit() + editor.remove(permString) + editor.apply() + } + } else { + val editor: SharedPreferences.Editor = prefs.edit() + if (ActivityCompat.shouldShowRequestPermissionRationale( + activity, + permString + ) + ) { + // Permission denied, can prompt again with rationale + editor.putString(permString, PermissionState.PROMPT_WITH_RATIONALE.toString()) + } else { + // Permission denied permanently, store this state for future reference + editor.putString(permString, PermissionState.DENIED.toString()) + } + editor.apply() + } + } + val permStrings = permissions.keys.toTypedArray() + if (!PermissionHelper.hasDefinedPermissions(activity, permStrings)) { + val builder = StringBuilder() + builder.append("Missing the following permissions in AndroidManifest.xml:\n") + val missing = PermissionHelper.getUndefinedPermissions(activity, permStrings) + for (perm in missing) { + builder.append( + """ + $perm + + """.trimIndent() + ) + } + invoke.reject(builder.toString()) + return false + } + return true + } + + @Throws( + InvalidCommandException::class, + IllegalAccessException::class + ) + fun invoke(invoke: Invoke) { + val methodMeta = commands[invoke.command] + ?: throw InvalidCommandException("No command " + invoke.command + " found for plugin " + instance.javaClass.name) + methodMeta.method.invoke(instance, invoke) + } + + private fun indexMethods() { + val methods = mutableListOf() + var pluginCursor: Class<*> = instance.javaClass + while (pluginCursor.name != Any::class.java.name) { + methods.addAll(listOf(*pluginCursor.declaredMethods)) + pluginCursor = pluginCursor.superclass + } + + for (method in methods) { + if (method.isAnnotationPresent(Command::class.java)) { + val command = method.getAnnotation(Command::class.java) ?: continue + val methodMeta = CommandData(method, command) + commands[method.name] = methodMeta + } + + if (method.isAnnotationPresent(ActivityCallback::class.java)) { + startActivityCallbackMethods[method.name] = method + } + + if (method.isAnnotationPresent(PermissionCallback::class.java)) { + permissionCallbackMethods[method.name] = method + } + } + } +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/PluginManager.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/PluginManager.kt new file mode 100644 index 000000000..362896b70 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/PluginManager.kt @@ -0,0 +1,221 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.plugin + +import android.app.PendingIntent +import android.content.res.Configuration +import android.content.Context +import android.content.Intent +import android.webkit.WebView +import androidx.activity.result.ActivityResult +import androidx.activity.result.ActivityResultLauncher +import androidx.activity.result.IntentSenderRequest +import androidx.activity.result.contract.ActivityResultContracts +import androidx.appcompat.app.AppCompatActivity +import app.tauri.annotation.InvokeArg +import app.tauri.FsUtils +import app.tauri.JniMethod +import app.tauri.Logger +import com.fasterxml.jackson.annotation.JsonAutoDetect +import com.fasterxml.jackson.annotation.PropertyAccessor +import com.fasterxml.jackson.databind.DeserializationFeature +import com.fasterxml.jackson.databind.JsonNode +import com.fasterxml.jackson.databind.ObjectMapper +import com.fasterxml.jackson.databind.module.SimpleModule +import java.lang.reflect.InvocationTargetException + +class PluginManager(val activity: AppCompatActivity) { + fun interface RequestPermissionsCallback { + fun onResult(permissions: Map) + } + + fun interface ActivityResultCallback { + fun onResult(result: ActivityResult) + } + + private val plugins: HashMap = HashMap() + private val startActivityForResultLauncher: ActivityResultLauncher + private val startIntentSenderForResultLauncher: ActivityResultLauncher + private val requestPermissionsLauncher: ActivityResultLauncher> + private var requestPermissionsCallback: RequestPermissionsCallback? = null + private var startActivityForResultCallback: ActivityResultCallback? = null + private var startIntentSenderForResultCallback: ActivityResultCallback? = null + private var jsonMapper: ObjectMapper + + init { + startActivityForResultLauncher = + activity.registerForActivityResult(ActivityResultContracts.StartActivityForResult() + ) { result -> + if (startActivityForResultCallback != null) { + startActivityForResultCallback!!.onResult(result) + } + } + + startIntentSenderForResultLauncher = + activity.registerForActivityResult(ActivityResultContracts.StartIntentSenderForResult() + ) { result -> + if (startIntentSenderForResultCallback != null) { + startIntentSenderForResultCallback!!.onResult(result) + } + } + + requestPermissionsLauncher = + activity.registerForActivityResult(ActivityResultContracts.RequestMultiplePermissions() + ) { result -> + if (requestPermissionsCallback != null) { + requestPermissionsCallback!!.onResult(result) + } + } + + jsonMapper = ObjectMapper() + .disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES) + .enable(DeserializationFeature.FAIL_ON_NULL_FOR_PRIMITIVES) + .setVisibility(PropertyAccessor.FIELD, JsonAutoDetect.Visibility.ANY) + + val channelDeserializer = ChannelDeserializer({ channelId, payload -> + sendChannelData(channelId, payload) + }, jsonMapper) + jsonMapper + .registerModule(SimpleModule().addDeserializer(Channel::class.java, channelDeserializer)) + } + + fun onNewIntent(intent: Intent) { + for (plugin in plugins.values) { + plugin.instance.onNewIntent(intent) + } + } + + fun onPause() { + for (plugin in plugins.values) { + plugin.instance.onPause() + } + } + + fun onResume() { + for (plugin in plugins.values) { + plugin.instance.onResume() + } + } + + fun onRestart() { + for (plugin in plugins.values) { + plugin.instance.onRestart() + } + } + + fun onStop() { + for (plugin in plugins.values) { + plugin.instance.onStop() + } + } + + fun onDestroy() { + for (plugin in plugins.values) { + plugin.instance.onDestroy() + } + } + + fun onConfigurationChanged(newConfig: Configuration) { + for (plugin in plugins.values) { + plugin.instance.onConfigurationChanged(newConfig) + } + } + + fun startActivityForResult(intent: Intent, callback: ActivityResultCallback) { + startActivityForResultCallback = callback + startActivityForResultLauncher.launch(intent) + } + + fun startIntentSenderForResult(intent: IntentSenderRequest, callback: ActivityResultCallback) { + startIntentSenderForResultCallback = callback + startIntentSenderForResultLauncher.launch(intent) + } + + fun requestPermissions( + permissionStrings: Array, + callback: RequestPermissionsCallback + ) { + requestPermissionsCallback = callback + requestPermissionsLauncher.launch(permissionStrings) + } + + @JniMethod + fun onWebViewCreated(webView: WebView) { + for ((_, plugin) in plugins) { + if (!plugin.loaded) { + plugin.load(webView) + } + } + } + + @JniMethod + fun load(webView: WebView?, name: String, plugin: Plugin, config: String) { + val handle = PluginHandle(this, name, plugin, config, jsonMapper) + plugins[name] = handle + if (webView != null) { + plugin.load(webView) + } + } + + @JniMethod + fun runCommand(id: Int, pluginId: String, command: String, data: String) { + val successId = 0L + val errorId = 1L + val invoke = Invoke(id.toLong(), command, successId, errorId, { fn, result -> + var success: String? = null + var error: String? = null + if (fn == successId) { + success = result + } else { + error = result + } + handlePluginResponse(id, success, error) + }, data, jsonMapper) + + dispatchPluginMessage(invoke, pluginId) + } + + private fun dispatchPluginMessage(invoke: Invoke, pluginId: String) { + Logger.verbose( + Logger.tags("Plugin"), + "Tauri plugin: pluginId: $pluginId, command: ${invoke.command}" + ) + + try { + val plugin = plugins[pluginId] + if (plugin == null) { + invoke.reject("Plugin $pluginId not initialized") + } else { + plugins[pluginId]?.invoke(invoke) + } + } catch (e: Exception) { + var exception: Throwable = e + if (exception.message?.isEmpty() != false) { + if (e is InvocationTargetException) { + exception = e.targetException + } + } + invoke.reject(if (exception.message?.isEmpty() != false) { exception.toString() } else { exception.message }) + } + } + + companion object { + fun loadConfig(context: Context, plugin: String, cls: Class): T { + val tauriConfigJson = FsUtils.readAsset(context.assets, "tauri.conf.json") + val mapper = ObjectMapper() + .configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false) + val config = mapper.readValue(tauriConfigJson, Config::class.java) + return mapper.readValue(config.plugins[plugin].toString(), cls) + } + } + + private external fun handlePluginResponse(id: Int, success: String?, error: String?) + private external fun sendChannelData(id: Long, data: String) +} + +@InvokeArg +internal class Config { + lateinit var plugins: Map +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/PluginMethodData.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/PluginMethodData.kt new file mode 100644 index 000000000..acb09477e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/PluginMethodData.kt @@ -0,0 +1,16 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.plugin + +import app.tauri.annotation.Command +import java.lang.reflect.Method + +class CommandData( + val method: Method, methodDecorator: Command +) { + + // The name of the method + val name: String = method.name +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/PluginResult.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/PluginResult.kt new file mode 100644 index 000000000..601cd48ec --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/main/java/app/tauri/plugin/PluginResult.kt @@ -0,0 +1,67 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri.plugin + +import android.annotation.SuppressLint +import app.tauri.Logger +import java.text.DateFormat +import java.text.SimpleDateFormat +import java.util.* + +class PluginResult @JvmOverloads constructor(json: JSObject? = JSObject()) { + private val json: JSObject + + init { + this.json = json ?: JSObject() + } + + fun put(name: String, value: Boolean): PluginResult { + return jsonPut(name, value) + } + + fun put(name: String, value: Double): PluginResult { + return jsonPut(name, value) + } + + fun put(name: String, value: Int): PluginResult { + return jsonPut(name, value) + } + + fun put(name: String, value: Long): PluginResult { + return jsonPut(name, value) + } + + /** + * Format a date as an ISO string + */ + @SuppressLint("SimpleDateFormat") + fun put(name: String, value: Date): PluginResult { + val tz: TimeZone = TimeZone.getTimeZone("UTC") + val df: DateFormat = SimpleDateFormat("yyyy-MM-dd'T'HH:mm'Z'") + df.timeZone = tz + return jsonPut(name, df.format(value)) + } + + fun put(name: String, value: Any?): PluginResult { + return jsonPut(name, value) + } + + fun put(name: String, value: PluginResult): PluginResult { + return jsonPut(name, value.json) + } + + private fun jsonPut(name: String, value: Any?): PluginResult { + try { + json.put(name, value) + } catch (ex: Exception) { + Logger.error(Logger.tags("Plugin"), "", ex) + } + return this + } + + override fun toString(): String { + return json.toString() + } +} diff --git a/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/test/java/app/tauri/ExampleUnitTest.kt b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/test/java/app/tauri/ExampleUnitTest.kt new file mode 100644 index 000000000..16022f41a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/.tauri/tauri-api/src/test/java/app/tauri/ExampleUnitTest.kt @@ -0,0 +1,21 @@ +// Copyright 2019-2024 Tauri Programme within The Commons Conservancy +// SPDX-License-Identifier: Apache-2.0 +// SPDX-License-Identifier: MIT + +package app.tauri + +import org.junit.Test + +import org.junit.Assert.* + +/** + * Example local unit test, which will execute on the development machine (host). + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +class ExampleUnitTest { + @Test + fun addition_isCorrect() { + assertEquals(4, 2 + 2) + } +} diff --git a/crates/tauri-plugin-splashscreen/android/build.gradle.kts b/crates/tauri-plugin-splashscreen/android/build.gradle.kts new file mode 100644 index 000000000..cb9446f46 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build.gradle.kts @@ -0,0 +1,45 @@ +plugins { + id("com.android.library") + id("org.jetbrains.kotlin.android") +} + +android { + namespace = "moe.sable.app.plugin.splashscreen" + compileSdk = 36 + + defaultConfig { + minSdk = 21 + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + consumerProguardFiles("consumer-rules.pro") + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles( + getDefaultProguardFile("proguard-android-optimize.txt"), + "proguard-rules.pro" + ) + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_1_8 + targetCompatibility = JavaVersion.VERSION_1_8 + } + kotlinOptions { + jvmTarget = "1.8" + } +} + +dependencies { + + implementation("androidx.core:core-ktx:1.9.0") + implementation("androidx.core:core-splashscreen:1.2.0") + implementation("androidx.appcompat:appcompat:1.6.0") + implementation("com.google.android.material:material:1.7.0") + testImplementation("junit:junit:4.13.2") + androidTestImplementation("androidx.test.ext:junit:1.1.5") + androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1") + implementation(project(":tauri-android")) +} diff --git a/crates/tauri-plugin-splashscreen/android/build/.transforms/b04c54caab5bbd8378c3db9f6e9eb7b7/results.bin b/crates/tauri-plugin-splashscreen/android/build/.transforms/b04c54caab5bbd8378c3db9f6e9eb7b7/results.bin new file mode 100644 index 000000000..355645064 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/.transforms/b04c54caab5bbd8378c3db9f6e9eb7b7/results.bin @@ -0,0 +1 @@ +o/bundleLibRuntimeToDirDebug diff --git a/crates/tauri-plugin-splashscreen/android/build/.transforms/b04c54caab5bbd8378c3db9f6e9eb7b7/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin b/crates/tauri-plugin-splashscreen/android/build/.transforms/b04c54caab5bbd8378c3db9f6e9eb7b7/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin new file mode 100644 index 000000000..601f245f5 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/.transforms/b04c54caab5bbd8378c3db9f6e9eb7b7/transformed/bundleLibRuntimeToDirDebug/desugar_graph.bin differ diff --git a/crates/tauri-plugin-splashscreen/android/build/.transforms/b04c54caab5bbd8378c3db9f6e9eb7b7/transformed/bundleLibRuntimeToDirDebug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$Companion.dex b/crates/tauri-plugin-splashscreen/android/build/.transforms/b04c54caab5bbd8378c3db9f6e9eb7b7/transformed/bundleLibRuntimeToDirDebug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$Companion.dex new file mode 100644 index 000000000..ece83487c Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/.transforms/b04c54caab5bbd8378c3db9f6e9eb7b7/transformed/bundleLibRuntimeToDirDebug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$Companion.dex differ diff --git a/crates/tauri-plugin-splashscreen/android/build/.transforms/b04c54caab5bbd8378c3db9f6e9eb7b7/transformed/bundleLibRuntimeToDirDebug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.dex b/crates/tauri-plugin-splashscreen/android/build/.transforms/b04c54caab5bbd8378c3db9f6e9eb7b7/transformed/bundleLibRuntimeToDirDebug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.dex new file mode 100644 index 000000000..6be81630f Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/.transforms/b04c54caab5bbd8378c3db9f6e9eb7b7/transformed/bundleLibRuntimeToDirDebug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.dex differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml b/crates/tauri-plugin-splashscreen/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml new file mode 100644 index 000000000..43d95e2f9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json b/crates/tauri-plugin-splashscreen/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json new file mode 100644 index 000000000..9d97a5d29 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/aapt_friendly_merged_manifests/debug/processDebugManifest/aapt/output-metadata.json @@ -0,0 +1,18 @@ +{ + "version": 3, + "artifactType": { + "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", + "kind": "Directory" + }, + "applicationId": "moe.sable.app.plugin.splashscreen", + "variantName": "debug", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "outputFile": "AndroidManifest.xml" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml b/crates/tauri-plugin-splashscreen/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml new file mode 100644 index 000000000..43d95e2f9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + + + \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output-metadata.json b/crates/tauri-plugin-splashscreen/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output-metadata.json new file mode 100644 index 000000000..65dc1d9df --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/aapt_friendly_merged_manifests/release/processReleaseManifest/aapt/output-metadata.json @@ -0,0 +1,18 @@ +{ + "version": 3, + "artifactType": { + "type": "AAPT_FRIENDLY_MERGED_MANIFESTS", + "kind": "Directory" + }, + "applicationId": "moe.sable.app.plugin.splashscreen", + "variantName": "release", + "elements": [ + { + "type": "SINGLE", + "filters": [], + "attributes": [], + "outputFile": "AndroidManifest.xml" + } + ], + "elementType": "File" +} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/aar_main_jar/release/syncReleaseLibJars/classes.jar b/crates/tauri-plugin-splashscreen/android/build/intermediates/aar_main_jar/release/syncReleaseLibJars/classes.jar new file mode 100644 index 000000000..bd083b128 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/intermediates/aar_main_jar/release/syncReleaseLibJars/classes.jar differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties b/crates/tauri-plugin-splashscreen/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties new file mode 100644 index 000000000..1211b1ef0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/aar_metadata/debug/writeDebugAarMetadata/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/aar_metadata/release/writeReleaseAarMetadata/aar-metadata.properties b/crates/tauri-plugin-splashscreen/android/build/intermediates/aar_metadata/release/writeReleaseAarMetadata/aar-metadata.properties new file mode 100644 index 000000000..1211b1ef0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/aar_metadata/release/writeReleaseAarMetadata/aar-metadata.properties @@ -0,0 +1,6 @@ +aarFormatVersion=1.0 +aarMetadataVersion=1.0 +minCompileSdk=1 +minCompileSdkExtension=0 +minAndroidGradlePluginVersion=1.0.0 +coreLibraryDesugaringEnabled=false diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json b/crates/tauri-plugin-splashscreen/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json new file mode 100644 index 000000000..9e26dfeeb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/annotation_processor_list/debug/javaPreCompileDebug/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/annotation_processor_list/release/javaPreCompileRelease/annotationProcessors.json b/crates/tauri-plugin-splashscreen/android/build/intermediates/annotation_processor_list/release/javaPreCompileRelease/annotationProcessors.json new file mode 100644 index 000000000..9e26dfeeb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/annotation_processor_list/release/javaPreCompileRelease/annotationProcessors.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/annotations_typedef_file/release/extractReleaseAnnotations/typedefs.txt b/crates/tauri-plugin-splashscreen/android/build/intermediates/annotations_typedef_file/release/extractReleaseAnnotations/typedefs.txt new file mode 100644 index 000000000..e69de29bb diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar b/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar new file mode 100644 index 000000000..6f8f56a44 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_library_classes_jar/debug/bundleLibCompileToJarDebug/classes.jar differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_library_classes_jar/release/bundleLibCompileToJarRelease/classes.jar b/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_library_classes_jar/release/bundleLibCompileToJarRelease/classes.jar new file mode 100644 index 000000000..70a34c5ff Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_library_classes_jar/release/bundleLibCompileToJarRelease/classes.jar differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar b/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar new file mode 100644 index 000000000..9122dd60b Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_r_class_jar/debug/generateDebugRFile/R.jar differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_r_class_jar/release/generateReleaseRFile/R.jar b/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_r_class_jar/release/generateReleaseRFile/R.jar new file mode 100644 index 000000000..714c666ab Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_r_class_jar/release/generateReleaseRFile/R.jar differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt b/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt new file mode 100644 index 000000000..694a62c83 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_symbol_list/debug/generateDebugRFile/R.txt @@ -0,0 +1,4 @@ +int color splashscreen_background 0x0 +int drawable loading_icon 0x0 +int style Theme_App 0x0 +int style Theme_App_Starting 0x0 diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_symbol_list/release/generateReleaseRFile/R.txt b/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_symbol_list/release/generateReleaseRFile/R.txt new file mode 100644 index 000000000..f0a5465f4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/compile_symbol_list/release/generateReleaseRFile/R.txt @@ -0,0 +1,2 @@ +int color splashscreen_background 0x0 +int drawable loading_icon 0x0 diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_loading_icon.xml.flat b/crates/tauri-plugin-splashscreen/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_loading_icon.xml.flat new file mode 100644 index 000000000..f60ef2986 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/intermediates/compiled_local_resources/debug/compileDebugLibraryResources/out/drawable_loading_icon.xml.flat differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/drawable_loading_icon.xml.flat b/crates/tauri-plugin-splashscreen/android/build/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/drawable_loading_icon.xml.flat new file mode 100644 index 000000000..d6a6c39c2 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/intermediates/compiled_local_resources/release/compileReleaseLibraryResources/out/drawable_loading_icon.xml.flat differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.11.0 b/crates/tauri-plugin-splashscreen/android/build/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.11.0 new file mode 100644 index 000000000..5a3e3a56a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/default_proguard_files/global/proguard-android-optimize.txt-8.11.0 @@ -0,0 +1,89 @@ +# This is a configuration file for ProGuard. +# http://proguard.sourceforge.net/index.html#manual/usage.html +# +# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with +# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and +# will be ignored by new version of the Android plugin for Gradle. + +# Optimizations: If you don't want to optimize, use the proguard-android.txt configuration file +# instead of this one, which turns off the optimization flags. +-allowaccessmodification + +# Preserve some attributes that may be required for reflection. +-keepattributes AnnotationDefault, + EnclosingMethod, + InnerClasses, + RuntimeVisibleAnnotations, + RuntimeVisibleParameterAnnotations, + RuntimeVisibleTypeAnnotations, + Signature + +-keep public class com.google.vending.licensing.ILicensingService +-keep public class com.android.vending.licensing.ILicensingService +-keep public class com.google.android.vending.licensing.ILicensingService +-dontnote com.android.vending.licensing.ILicensingService +-dontnote com.google.vending.licensing.ILicensingService +-dontnote com.google.android.vending.licensing.ILicensingService + +# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native +-keepclasseswithmembernames,includedescriptorclasses class * { + native ; +} + +# Keep setters in Views so that animations can still work. +-keepclassmembers public class * extends android.view.View { + void set*(***); + *** get*(); +} + +# We want to keep methods in Activity that could be used in the XML attribute onClick. +-keepclassmembers class * extends android.app.Activity { + public void *(android.view.View); +} + +# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} + +-keepclassmembers class * implements android.os.Parcelable { + public static final ** CREATOR; +} + +# Preserve annotated Javascript interface methods. +-keepclassmembers class * { + @android.webkit.JavascriptInterface ; +} + +# The support libraries contains references to newer platform versions. +# Don't warn about those in case this app is linking against an older +# platform version. We know about them, and they are safe. +-dontnote android.support.** +-dontnote androidx.** +-dontwarn android.support.** +-dontwarn androidx.** + +# Understand the @Keep support annotation. +-keep class android.support.annotation.Keep + +-keep @android.support.annotation.Keep class * {*;} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep ; +} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep ; +} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep (...); +} + +# These classes are duplicated between android.jar and org.apache.http.legacy.jar. +-dontnote org.apache.http.** +-dontnote android.net.http.** + +# These classes are duplicated between android.jar and core-lambda-stubs.jar. +-dontnote java.lang.invoke.** diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/default_proguard_files/global/proguard-android.txt-8.11.0 b/crates/tauri-plugin-splashscreen/android/build/intermediates/default_proguard_files/global/proguard-android.txt-8.11.0 new file mode 100644 index 000000000..6f7e4ef60 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/default_proguard_files/global/proguard-android.txt-8.11.0 @@ -0,0 +1,95 @@ +# This is a configuration file for ProGuard. +# http://proguard.sourceforge.net/index.html#manual/usage.html +# +# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with +# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and +# will be ignored by new version of the Android plugin for Gradle. + +# Optimization is turned off by default. Dex does not like code run +# through the ProGuard optimize steps (and performs some +# of these optimizations on its own). +# Note that if you want to enable optimization, you cannot just +# include optimization flags in your own project configuration file; +# instead you will need to point to the +# "proguard-android-optimize.txt" file instead of this one from your +# project.properties file. +-dontoptimize + +# Preserve some attributes that may be required for reflection. +-keepattributes AnnotationDefault, + EnclosingMethod, + InnerClasses, + RuntimeVisibleAnnotations, + RuntimeVisibleParameterAnnotations, + RuntimeVisibleTypeAnnotations, + Signature + +-keep public class com.google.vending.licensing.ILicensingService +-keep public class com.android.vending.licensing.ILicensingService +-keep public class com.google.android.vending.licensing.ILicensingService +-dontnote com.android.vending.licensing.ILicensingService +-dontnote com.google.vending.licensing.ILicensingService +-dontnote com.google.android.vending.licensing.ILicensingService + +# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native +-keepclasseswithmembernames,includedescriptorclasses class * { + native ; +} + +# Keep setters in Views so that animations can still work. +-keepclassmembers public class * extends android.view.View { + void set*(***); + *** get*(); +} + +# We want to keep methods in Activity that could be used in the XML attribute onClick. +-keepclassmembers class * extends android.app.Activity { + public void *(android.view.View); +} + +# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} + +-keepclassmembers class * implements android.os.Parcelable { + public static final ** CREATOR; +} + +# Preserve annotated Javascript interface methods. +-keepclassmembers class * { + @android.webkit.JavascriptInterface ; +} + +# The support libraries contains references to newer platform versions. +# Don't warn about those in case this app is linking against an older +# platform version. We know about them, and they are safe. +-dontnote android.support.** +-dontnote androidx.** +-dontwarn android.support.** +-dontwarn androidx.** + +# Understand the @Keep support annotation. +-keep class android.support.annotation.Keep + +-keep @android.support.annotation.Keep class * {*;} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep ; +} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep ; +} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep (...); +} + +# These classes are duplicated between android.jar and org.apache.http.legacy.jar. +-dontnote org.apache.http.** +-dontnote android.net.http.** + +# These classes are duplicated between android.jar and core-lambda-stubs.jar. +-dontnote java.lang.invoke.** diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/default_proguard_files/global/proguard-defaults.txt-8.11.0 b/crates/tauri-plugin-splashscreen/android/build/intermediates/default_proguard_files/global/proguard-defaults.txt-8.11.0 new file mode 100644 index 000000000..7bbb2285a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/default_proguard_files/global/proguard-defaults.txt-8.11.0 @@ -0,0 +1,89 @@ +# This is a configuration file for ProGuard. +# http://proguard.sourceforge.net/index.html#manual/usage.html +# +# Starting with version 2.2 of the Android plugin for Gradle, this file is distributed together with +# the plugin and unpacked at build-time. The files in $ANDROID_HOME are no longer maintained and +# will be ignored by new version of the Android plugin for Gradle. + +# Optimizations can be turned on and off in the 'postProcessing' DSL block. +# The configuration below is applied if optimizations are enabled. +-allowaccessmodification + +# Preserve some attributes that may be required for reflection. +-keepattributes AnnotationDefault, + EnclosingMethod, + InnerClasses, + RuntimeVisibleAnnotations, + RuntimeVisibleParameterAnnotations, + RuntimeVisibleTypeAnnotations, + Signature + +-keep public class com.google.vending.licensing.ILicensingService +-keep public class com.android.vending.licensing.ILicensingService +-keep public class com.google.android.vending.licensing.ILicensingService +-dontnote com.android.vending.licensing.ILicensingService +-dontnote com.google.vending.licensing.ILicensingService +-dontnote com.google.android.vending.licensing.ILicensingService + +# For native methods, see https://www.guardsquare.com/manual/configuration/examples#native +-keepclasseswithmembernames,includedescriptorclasses class * { + native ; +} + +# Keep setters in Views so that animations can still work. +-keepclassmembers public class * extends android.view.View { + void set*(***); + *** get*(); +} + +# We want to keep methods in Activity that could be used in the XML attribute onClick. +-keepclassmembers class * extends android.app.Activity { + public void *(android.view.View); +} + +# For enumeration classes, see https://www.guardsquare.com/manual/configuration/examples#enumerations +-keepclassmembers enum * { + public static **[] values(); + public static ** valueOf(java.lang.String); +} + +-keepclassmembers class * implements android.os.Parcelable { + public static final ** CREATOR; +} + +# Preserve annotated Javascript interface methods. +-keepclassmembers class * { + @android.webkit.JavascriptInterface ; +} + +# The support libraries contains references to newer platform versions. +# Don't warn about those in case this app is linking against an older +# platform version. We know about them, and they are safe. +-dontnote android.support.** +-dontnote androidx.** +-dontwarn android.support.** +-dontwarn androidx.** + +# Understand the @Keep support annotation. +-keep class android.support.annotation.Keep + +-keep @android.support.annotation.Keep class * {*;} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep ; +} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep ; +} + +-keepclasseswithmembers class * { + @android.support.annotation.Keep (...); +} + +# These classes are duplicated between android.jar and org.apache.http.legacy.jar. +-dontnote org.apache.http.** +-dontnote android.net.http.** + +# These classes are duplicated between android.jar and core-lambda-stubs.jar. +-dontnote java.lang.invoke.** diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/full_jar/release/createFullJarRelease/full.jar b/crates/tauri-plugin-splashscreen/android/build/intermediates/full_jar/release/createFullJarRelease/full.jar new file mode 100644 index 000000000..221cfc704 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/intermediates/full_jar/release/createFullJarRelease/full.jar differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties b/crates/tauri-plugin-splashscreen/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties new file mode 100644 index 000000000..4eefd5c57 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/incremental/debug/packageDebugResources/compile-file-map.properties @@ -0,0 +1,2 @@ +#Sat Mar 07 21:48:44 CET 2026 +moe.sable.app.plugin.splashscreen.tauri-plugin-splashscreen-main-6\:/drawable/loading_icon.xml=C\:\\Users\\haz\\dev\\sable\\crates\\tauri-plugin-splashscreen\\android\\build\\intermediates\\packaged_res\\debug\\packageDebugResources\\drawable\\loading_icon.xml diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml b/crates/tauri-plugin-splashscreen/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml new file mode 100644 index 000000000..ae6f601a9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/incremental/debug/packageDebugResources/merged.dir/values/values.xml @@ -0,0 +1,11 @@ + + + #000000 + + \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml b/crates/tauri-plugin-splashscreen/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml new file mode 100644 index 000000000..7aae80d47 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/incremental/debug/packageDebugResources/merger.xml @@ -0,0 +1,7 @@ + +#000000 + \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/packaged_res/release/packageReleaseResources/drawable/loading_icon.xml b/crates/tauri-plugin-splashscreen/android/build/intermediates/packaged_res/release/packageReleaseResources/drawable/loading_icon.xml new file mode 100644 index 000000000..b7450dd6a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/packaged_res/release/packageReleaseResources/drawable/loading_icon.xml @@ -0,0 +1,16 @@ + + + + + \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/packaged_res/release/packageReleaseResources/values/values.xml b/crates/tauri-plugin-splashscreen/android/build/intermediates/packaged_res/release/packageReleaseResources/values/values.xml new file mode 100644 index 000000000..0f1ee0c15 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/packaged_res/release/packageReleaseResources/values/values.xml @@ -0,0 +1,4 @@ + + + #FFFFFF + \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/tauri-plugin-splashscreen_debug.kotlin_module b/crates/tauri-plugin-splashscreen/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/tauri-plugin-splashscreen_debug.kotlin_module new file mode 100644 index 000000000..1e9f2ca4d Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/META-INF/tauri-plugin-splashscreen_debug.kotlin_module differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$Companion.class b/crates/tauri-plugin-splashscreen/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$Companion.class new file mode 100644 index 000000000..4d30370c7 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$Companion.class differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.class b/crates/tauri-plugin-splashscreen/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.class new file mode 100644 index 000000000..1035d0111 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/intermediates/runtime_library_classes_dir/debug/bundleLibRuntimeToDirDebug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.class differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/runtime_library_classes_jar/release/bundleLibRuntimeToJarRelease/classes.jar b/crates/tauri-plugin-splashscreen/android/build/intermediates/runtime_library_classes_jar/release/bundleLibRuntimeToJarRelease/classes.jar new file mode 100644 index 000000000..1c3b3c292 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/intermediates/runtime_library_classes_jar/release/bundleLibRuntimeToJarRelease/classes.jar differ diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt b/crates/tauri-plugin-splashscreen/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt new file mode 100644 index 000000000..6a89cbed6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/symbol_list_with_package_name/debug/generateDebugRFile/package-aware-r.txt @@ -0,0 +1,5 @@ +moe.sable.app.plugin.splashscreen +color splashscreen_background +drawable loading_icon +style Theme_App +style Theme_App_Starting diff --git a/crates/tauri-plugin-splashscreen/android/build/intermediates/symbol_list_with_package_name/release/generateReleaseRFile/package-aware-r.txt b/crates/tauri-plugin-splashscreen/android/build/intermediates/symbol_list_with_package_name/release/generateReleaseRFile/package-aware-r.txt new file mode 100644 index 000000000..1767cde31 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/intermediates/symbol_list_with_package_name/release/generateReleaseRFile/package-aware-r.txt @@ -0,0 +1,3 @@ +moe.sable.app.plugin.splashscreen +color splashscreen_background +drawable loading_icon diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 000000000..937c14ab0 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 000000000..28b54d58f Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 000000000..e5009a4ed Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 000000000..2a17e6e5b Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 000000000..c057b036d Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 000000000..887b56e65 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab new file mode 100644 index 000000000..1b7ba77de Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream new file mode 100644 index 000000000..15aa318ad Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len new file mode 100644 index 000000000..047ea2d5c Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len new file mode 100644 index 000000000..01bdaa1da Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at new file mode 100644 index 000000000..de0b0a4a4 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i new file mode 100644 index 000000000..63a567b19 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 000000000..29103424a Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 000000000..15aa318ad Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 000000000..047ea2d5c Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 000000000..01bdaa1da Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 000000000..89efdf089 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 000000000..63a567b19 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 000000000..b4505403a Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 000000000..031c47eb9 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len new file mode 100644 index 000000000..09272b866 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len new file mode 100644 index 000000000..a9f80ae02 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at new file mode 100644 index 000000000..3b42e6701 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i new file mode 100644 index 000000000..c6c0751dd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab new file mode 100644 index 000000000..5a8365f4c Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream new file mode 100644 index 000000000..b8af8a0fd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len new file mode 100644 index 000000000..6b14139c2 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len new file mode 100644 index 000000000..a9f80ae02 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at new file mode 100644 index 000000000..1e2f056b0 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i new file mode 100644 index 000000000..8b8331de8 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab new file mode 100644 index 000000000..cea020262 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream new file mode 100644 index 000000000..28b54d58f Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len new file mode 100644 index 000000000..e5009a4ed Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len new file mode 100644 index 000000000..2a17e6e5b Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at new file mode 100644 index 000000000..7a5dd84a9 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i new file mode 100644 index 000000000..887b56e65 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab new file mode 100644 index 000000000..eab574b6f Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream new file mode 100644 index 000000000..059ec07ea Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len new file mode 100644 index 000000000..e534549ea Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len new file mode 100644 index 000000000..2a17e6e5b Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at new file mode 100644 index 000000000..4997ca0ad Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i new file mode 100644 index 000000000..fadc061d3 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab new file mode 100644 index 000000000..6394d0e14 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream new file mode 100644 index 000000000..994dd7efa Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len new file mode 100644 index 000000000..508fc6771 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len new file mode 100644 index 000000000..2a17e6e5b Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at new file mode 100644 index 000000000..9158adc1e Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i new file mode 100644 index 000000000..3c227e948 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab new file mode 100644 index 000000000..26d3b0940 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/counters.tab @@ -0,0 +1,2 @@ +4 +0 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab new file mode 100644 index 000000000..563e1e245 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream new file mode 100644 index 000000000..28b54d58f Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len new file mode 100644 index 000000000..e5009a4ed Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len new file mode 100644 index 000000000..2a17e6e5b Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at new file mode 100644 index 000000000..3e23c2afb Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i new file mode 100644 index 000000000..887b56e65 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab new file mode 100644 index 000000000..92f731862 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream new file mode 100644 index 000000000..6e7a92642 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len new file mode 100644 index 000000000..eb529631c Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len new file mode 100644 index 000000000..93a595bd1 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at new file mode 100644 index 000000000..712e08018 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i new file mode 100644 index 000000000..6936967ca Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab new file mode 100644 index 000000000..357075fdc Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream new file mode 100644 index 000000000..30477455d Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len new file mode 100644 index 000000000..1b4e35073 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len new file mode 100644 index 000000000..2f6e94ab8 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at new file mode 100644 index 000000000..014f7c676 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i new file mode 100644 index 000000000..63e563fe2 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin new file mode 100644 index 000000000..94b653d45 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/cacheable/last-build.bin differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin new file mode 100644 index 000000000..6ac94f9ec Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin new file mode 100644 index 000000000..9ad56f13e Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileDebugKotlin/local-state/build-history.bin differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab new file mode 100644 index 000000000..e130de06d Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream new file mode 100644 index 000000000..28b54d58f Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len new file mode 100644 index 000000000..e5009a4ed Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len new file mode 100644 index 000000000..2a17e6e5b Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at new file mode 100644 index 000000000..e5e382cf0 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i new file mode 100644 index 000000000..887b56e65 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/inputs/source-to-output.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab new file mode 100644 index 000000000..826fdc431 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream new file mode 100644 index 000000000..15aa318ad Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len new file mode 100644 index 000000000..047ea2d5c Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len new file mode 100644 index 000000000..01bdaa1da Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at new file mode 100644 index 000000000..d89ba7ade Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i new file mode 100644 index 000000000..63a567b19 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-attributes.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab new file mode 100644 index 000000000..120e067a1 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream new file mode 100644 index 000000000..15aa318ad Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len new file mode 100644 index 000000000..047ea2d5c Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len new file mode 100644 index 000000000..01bdaa1da Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at new file mode 100644 index 000000000..e3f6cb7f7 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i new file mode 100644 index 000000000..63a567b19 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/class-fq-name-to-source.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab new file mode 100644 index 000000000..6b1744546 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream new file mode 100644 index 000000000..031c47eb9 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len new file mode 100644 index 000000000..09272b866 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len new file mode 100644 index 000000000..a9f80ae02 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at new file mode 100644 index 000000000..dfcbd0537 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i new file mode 100644 index 000000000..c6c0751dd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/internal-name-to-source.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab new file mode 100644 index 000000000..1037bdd0c Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream new file mode 100644 index 000000000..b8af8a0fd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len new file mode 100644 index 000000000..6b14139c2 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len new file mode 100644 index 000000000..a9f80ae02 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at new file mode 100644 index 000000000..7aa791b4b Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i new file mode 100644 index 000000000..8b8331de8 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/proto.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab new file mode 100644 index 000000000..4a1b1f2e7 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream new file mode 100644 index 000000000..28b54d58f Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len new file mode 100644 index 000000000..e5009a4ed Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len new file mode 100644 index 000000000..2a17e6e5b Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at new file mode 100644 index 000000000..bd10b644f Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i new file mode 100644 index 000000000..887b56e65 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/source-to-classes.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab new file mode 100644 index 000000000..ae7308a72 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream new file mode 100644 index 000000000..059ec07ea Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len new file mode 100644 index 000000000..e534549ea Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len new file mode 100644 index 000000000..2a17e6e5b Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at new file mode 100644 index 000000000..c736cf1f4 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i new file mode 100644 index 000000000..fadc061d3 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/subtypes.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab new file mode 100644 index 000000000..0269ae76c Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream new file mode 100644 index 000000000..994dd7efa Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len new file mode 100644 index 000000000..508fc6771 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len new file mode 100644 index 000000000..2a17e6e5b Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at new file mode 100644 index 000000000..83754bd74 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i new file mode 100644 index 000000000..3c227e948 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/jvm/kotlin/supertypes.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/counters.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/counters.tab new file mode 100644 index 000000000..c393a5175 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/counters.tab @@ -0,0 +1,2 @@ +3 +0 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab new file mode 100644 index 000000000..18a2b43dd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream new file mode 100644 index 000000000..28b54d58f Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len new file mode 100644 index 000000000..e5009a4ed Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len new file mode 100644 index 000000000..2a17e6e5b Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at new file mode 100644 index 000000000..9f383b5fa Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i new file mode 100644 index 000000000..887b56e65 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/file-to-id.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab new file mode 100644 index 000000000..9466add60 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream new file mode 100644 index 000000000..636f34a3c Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len new file mode 100644 index 000000000..29ce11cc9 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len new file mode 100644 index 000000000..a9f80ae02 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at new file mode 100644 index 000000000..4e2d6a0bf Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i new file mode 100644 index 000000000..e9905b3d2 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/id-to-file.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab new file mode 100644 index 000000000..eb403309a Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream new file mode 100644 index 000000000..ceeed72fa Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len new file mode 100644 index 000000000..8a06a23bf Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.keystream.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.len new file mode 100644 index 000000000..b24798c30 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at new file mode 100644 index 000000000..8a81524a4 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab.values.at differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i new file mode 100644 index 000000000..bece8da73 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len new file mode 100644 index 000000000..131e26574 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/caches-jvm/lookups/lookups.tab_i.len differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/last-build.bin b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/last-build.bin new file mode 100644 index 000000000..8115a2ea7 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/cacheable/last-build.bin differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin new file mode 100644 index 000000000..f09d426ae Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/classpath-snapshot/shrunk-classpath-snapshot.bin differ diff --git a/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/local-state/build-history.bin b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/local-state/build-history.bin new file mode 100644 index 000000000..261e8028f Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/kotlin/compileReleaseKotlin/local-state/build-history.bin differ diff --git a/crates/tauri-plugin-splashscreen/android/build/outputs/logs/manifest-merger-debug-report.txt b/crates/tauri-plugin-splashscreen/android/build/outputs/logs/manifest-merger-debug-report.txt new file mode 100644 index 000000000..9d7f9b56c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/outputs/logs/manifest-merger-debug-report.txt @@ -0,0 +1,16 @@ +-- Merging decision tree log --- +manifest +ADDED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml:2:1-3:12 +INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml:2:1-3:12 + package + INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml + xmlns:android + ADDED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml:2:11-69 +uses-sdk +INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml reason: use-sdk injection requested +INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml +INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml + android:targetSdkVersion + INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml + android:minSdkVersion + INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml diff --git a/crates/tauri-plugin-splashscreen/android/build/outputs/logs/manifest-merger-release-report.txt b/crates/tauri-plugin-splashscreen/android/build/outputs/logs/manifest-merger-release-report.txt new file mode 100644 index 000000000..9d7f9b56c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/outputs/logs/manifest-merger-release-report.txt @@ -0,0 +1,16 @@ +-- Merging decision tree log --- +manifest +ADDED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml:2:1-3:12 +INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml:2:1-3:12 + package + INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml + xmlns:android + ADDED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml:2:11-69 +uses-sdk +INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml reason: use-sdk injection requested +INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml +INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml + android:targetSdkVersion + INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml + android:minSdkVersion + INJECTED from C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\android\src\main\AndroidManifest.xml diff --git a/crates/tauri-plugin-splashscreen/android/build/reports/problems/problems-report.html b/crates/tauri-plugin-splashscreen/android/build/reports/problems/problems-report.html new file mode 100644 index 000000000..1617f28f7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/build/reports/problems/problems-report.html @@ -0,0 +1,659 @@ + + + + + + + + + + + + + Gradle Configuration Cache + + + +
+ +
+ Loading... +
+ + + + + + diff --git a/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/debug/META-INF/tauri-plugin-splashscreen_debug.kotlin_module b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/debug/META-INF/tauri-plugin-splashscreen_debug.kotlin_module new file mode 100644 index 000000000..1e9f2ca4d Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/debug/META-INF/tauri-plugin-splashscreen_debug.kotlin_module differ diff --git a/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/debug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$Companion.class b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/debug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$Companion.class new file mode 100644 index 000000000..4d30370c7 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/debug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$Companion.class differ diff --git a/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/debug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.class b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/debug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.class new file mode 100644 index 000000000..1035d0111 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/debug/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.class differ diff --git a/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/release/META-INF/tauri-plugin-splashscreen_release.kotlin_module b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/release/META-INF/tauri-plugin-splashscreen_release.kotlin_module new file mode 100644 index 000000000..1e9f2ca4d Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/release/META-INF/tauri-plugin-splashscreen_release.kotlin_module differ diff --git a/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/release/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$Companion.class b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/release/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$Companion.class new file mode 100644 index 000000000..9a872aab1 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/release/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$Companion.class differ diff --git a/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/release/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$load$1$1.class b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/release/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$load$1$1.class new file mode 100644 index 000000000..5de7fa22c Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/release/moe/sable/app/plugin/splashscreen/SplashScreenPlugin$load$1$1.class differ diff --git a/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/release/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.class b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/release/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.class new file mode 100644 index 000000000..6a9db81a4 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/android/build/tmp/kotlin-classes/release/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.class differ diff --git a/crates/tauri-plugin-splashscreen/android/proguard-rules.pro b/crates/tauri-plugin-splashscreen/android/proguard-rules.pro new file mode 100644 index 000000000..64b4a059a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/settings.gradle b/crates/tauri-plugin-splashscreen/android/settings.gradle new file mode 100644 index 000000000..39b1210b3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/settings.gradle @@ -0,0 +1,31 @@ +pluginManagement { + repositories { + mavenCentral() + gradlePluginPortal() + google() + } + resolutionStrategy { + eachPlugin { + switch (requested.id.id) { + case "com.android.library": + useVersion("8.0.2") + break + case "org.jetbrains.kotlin.android": + useVersion("1.8.20") + break + } + } + } +} + +dependencyResolutionManagement { + repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS) + repositories { + mavenCentral() + google() + + } +} + +include ':tauri-android' +project(':tauri-android').projectDir = new File('./.tauri/tauri-api') diff --git a/crates/tauri-plugin-splashscreen/android/src/androidTest/java/ExampleInstrumentedTest.kt b/crates/tauri-plugin-splashscreen/android/src/androidTest/java/ExampleInstrumentedTest.kt new file mode 100644 index 000000000..cd40ebd90 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/src/androidTest/java/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package moe.sable.app.plugin.splashscreen + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("moe.sable.app.plugin.splashscreen", appContext.packageName) + } +} diff --git a/crates/tauri-plugin-splashscreen/android/src/main/AndroidManifest.xml b/crates/tauri-plugin-splashscreen/android/src/main/AndroidManifest.xml new file mode 100644 index 000000000..74b7379f7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/src/main/AndroidManifest.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/src/main/java/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.kt b/crates/tauri-plugin-splashscreen/android/src/main/java/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.kt new file mode 100644 index 000000000..41ec7b96f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/src/main/java/moe/sable/app/plugin/splashscreen/SplashScreenPlugin.kt @@ -0,0 +1,46 @@ +package moe.sable.app.plugin.splashscreen + +import android.app.Activity +import android.os.Handler +import android.os.Looper +import android.webkit.WebView +import androidx.core.splashscreen.SplashScreen +import androidx.core.splashscreen.SplashScreen.Companion.installSplashScreen +import app.tauri.annotation.Command +import app.tauri.annotation.TauriPlugin +import app.tauri.plugin.Invoke +import app.tauri.plugin.Plugin + +@TauriPlugin +class SplashScreenPlugin(private val activity: Activity) : Plugin(activity) { + + companion object { + private const val TIMEOUT_MS = 10000L + } + + @Volatile + private var isAppReady = false + private var splashScreen: SplashScreen? = null + + override fun load(webView: WebView) { + splashScreen = activity.installSplashScreen() + + splashScreen?.setKeepOnScreenCondition { + !isAppReady + } + + splashScreen?.setOnExitAnimationListener { splashScreenViewProvider -> + splashScreenViewProvider.remove() + } + + Handler(Looper.getMainLooper()).postDelayed({ + isAppReady = true + }, TIMEOUT_MS) + } + + @Command + fun close(invoke: Invoke) { + isAppReady = true + invoke.resolve() + } +} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/src/main/res/drawable/loading_icon.xml b/crates/tauri-plugin-splashscreen/android/src/main/res/drawable/loading_icon.xml new file mode 100644 index 000000000..b7450dd6a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/src/main/res/drawable/loading_icon.xml @@ -0,0 +1,16 @@ + + + + + \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/src/main/res/values/colors.xml b/crates/tauri-plugin-splashscreen/android/src/main/res/values/colors.xml new file mode 100644 index 000000000..b7f8c6255 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/src/main/res/values/colors.xml @@ -0,0 +1,4 @@ + + + #000000 + \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/android/src/main/res/values/themes.xml b/crates/tauri-plugin-splashscreen/android/src/main/res/values/themes.xml new file mode 100644 index 000000000..247073d98 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/android/src/main/res/values/themes.xml @@ -0,0 +1,11 @@ + + + + \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/build.rs b/crates/tauri-plugin-splashscreen/build.rs new file mode 100644 index 000000000..2ad059e85 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/build.rs @@ -0,0 +1,8 @@ +const COMMANDS: &[&str] = &["ping", "close"]; + +fn main() { + tauri_plugin::Builder::new(COMMANDS) + .android_path("android") + .ios_path("ios") + .build(); +} diff --git a/crates/tauri-plugin-splashscreen/dist-js/index.cjs b/crates/tauri-plugin-splashscreen/dist-js/index.cjs new file mode 100644 index 000000000..9cf984a47 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/dist-js/index.cjs @@ -0,0 +1,18 @@ +'use strict'; + +var core = require('@tauri-apps/api/core'); + +const splashscreen = { + async ping(value) { + return await core.invoke('plugin:splashscreen|ping', { + payload: { + value, + }, + }).then((r) => (r.value ? r.value : null)); + }, + async close() { + await core.invoke('plugin:splashscreen|close'); + }, +}; + +module.exports = splashscreen; diff --git a/crates/tauri-plugin-splashscreen/dist-js/index.d.ts b/crates/tauri-plugin-splashscreen/dist-js/index.d.ts new file mode 100644 index 000000000..4299c4a02 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/dist-js/index.d.ts @@ -0,0 +1,6 @@ +interface Splashscreen { + ping(value: string): Promise; + close(): Promise; +} +declare const splashscreen: Splashscreen; +export default splashscreen; diff --git a/crates/tauri-plugin-splashscreen/dist-js/index.js b/crates/tauri-plugin-splashscreen/dist-js/index.js new file mode 100644 index 000000000..00983e423 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/dist-js/index.js @@ -0,0 +1,16 @@ +import { invoke } from '@tauri-apps/api/core'; + +const splashscreen = { + async ping(value) { + return await invoke('plugin:splashscreen|ping', { + payload: { + value, + }, + }).then((r) => (r.value ? r.value : null)); + }, + async close() { + await invoke('plugin:splashscreen|close'); + }, +}; + +export { splashscreen as default }; diff --git a/crates/tauri-plugin-splashscreen/guest-js/index.ts b/crates/tauri-plugin-splashscreen/guest-js/index.ts new file mode 100644 index 000000000..64adf0902 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/guest-js/index.ts @@ -0,0 +1,22 @@ +import { invoke } from '@tauri-apps/api/core'; + +interface Splashscreen { + ping(value: string): Promise; + close(): Promise; +} + +const splashscreen: Splashscreen = { + async ping(value: string): Promise { + return invoke<{ value?: string }>('plugin:splashscreen|ping', { + payload: { + value, + }, + }).then((r) => (r.value ? r.value : null)); + }, + + async close(): Promise { + await invoke('plugin:splashscreen|close'); + }, +}; + +export default splashscreen; diff --git a/crates/tauri-plugin-splashscreen/package-lock.json b/crates/tauri-plugin-splashscreen/package-lock.json new file mode 100644 index 000000000..d0e4c82f9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/package-lock.json @@ -0,0 +1,619 @@ +{ + "name": "tauri-plugin-splashscreen-api", + "version": "0.1.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "tauri-plugin-splashscreen-api", + "version": "0.1.0", + "dependencies": { + "@tauri-apps/api": "^2.0.0" + }, + "devDependencies": { + "@rollup/plugin-typescript": "^12.0.0", + "rollup": "^4.9.6", + "tslib": "^2.6.2", + "typescript": "^5.3.3" + } + }, + "node_modules/@rollup/plugin-typescript": { + "version": "12.3.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-typescript/-/plugin-typescript-12.3.0.tgz", + "integrity": "sha512-7DP0/p7y3t67+NabT9f8oTBFE6gGkto4SA6Np2oudYmZE/m1dt8RB0SjL1msMxFpLo631qjRCcBlAbq1ml/Big==", + "dev": true, + "license": "MIT", + "dependencies": { + "@rollup/pluginutils": "^5.1.0", + "resolve": "^1.22.1" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.14.0||^3.0.0||^4.0.0", + "tslib": "*", + "typescript": ">=3.7.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + }, + "tslib": { + "optional": true + } + } + }, + "node_modules/@rollup/pluginutils": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.3.0.tgz", + "integrity": "sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^4.0.2" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.59.0.tgz", + "integrity": "sha512-upnNBkA6ZH2VKGcBj9Fyl9IGNPULcjXRlg0LLeaioQWueH30p6IXtJEbKAgvyv+mJaMxSm1l6xwDXYjpEMiLMg==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.59.0.tgz", + "integrity": "sha512-hZ+Zxj3SySm4A/DylsDKZAeVg0mvi++0PYVceVyX7hemkw7OreKdCvW2oQ3T1FMZvCaQXqOTHb8qmBShoqk69Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.59.0.tgz", + "integrity": "sha512-W2Psnbh1J8ZJw0xKAd8zdNgF9HRLkdWwwdWqubSVk0pUuQkoHnv7rx4GiF9rT4t5DIZGAsConRE3AxCdJ4m8rg==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.59.0.tgz", + "integrity": "sha512-ZW2KkwlS4lwTv7ZVsYDiARfFCnSGhzYPdiOU4IM2fDbL+QGlyAbjgSFuqNRbSthybLbIJ915UtZBtmuLrQAT/w==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-freebsd-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.59.0.tgz", + "integrity": "sha512-EsKaJ5ytAu9jI3lonzn3BgG8iRBjV4LxZexygcQbpiU0wU0ATxhNVEpXKfUa0pS05gTcSDMKpn3Sx+QB9RlTTA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-freebsd-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.59.0.tgz", + "integrity": "sha512-d3DuZi2KzTMjImrxoHIAODUZYoUUMsuUiY4SRRcJy6NJoZ6iIqWnJu9IScV9jXysyGMVuW+KNzZvBLOcpdl3Vg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "freebsd" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.59.0.tgz", + "integrity": "sha512-t4ONHboXi/3E0rT6OZl1pKbl2Vgxf9vJfWgmUoCEVQVxhW6Cw/c8I6hbbu7DAvgp82RKiH7TpLwxnJeKv2pbsw==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm-musleabihf": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.59.0.tgz", + "integrity": "sha512-CikFT7aYPA2ufMD086cVORBYGHffBo4K8MQ4uPS/ZnY54GKj36i196u8U+aDVT2LX4eSMbyHtyOh7D7Zvk2VvA==", + "cpu": [ + "arm" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.59.0.tgz", + "integrity": "sha512-jYgUGk5aLd1nUb1CtQ8E+t5JhLc9x5WdBKew9ZgAXg7DBk0ZHErLHdXM24rfX+bKrFe+Xp5YuJo54I5HFjGDAA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.59.0.tgz", + "integrity": "sha512-peZRVEdnFWZ5Bh2KeumKG9ty7aCXzzEsHShOZEFiCQlDEepP1dpUl/SrUNXNg13UmZl+gzVDPsiCwnV1uI0RUA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-gnu/-/rollup-linux-loong64-gnu-4.59.0.tgz", + "integrity": "sha512-gbUSW/97f7+r4gHy3Jlup8zDG190AuodsWnNiXErp9mT90iCy9NKKU0Xwx5k8VlRAIV2uU9CsMnEFg/xXaOfXg==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-loong64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-loong64-musl/-/rollup-linux-loong64-musl-4.59.0.tgz", + "integrity": "sha512-yTRONe79E+o0FWFijasoTjtzG9EBedFXJMl888NBEDCDV9I2wGbFFfJQQe63OijbFCUZqxpHz1GzpbtSFikJ4Q==", + "cpu": [ + "loong64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-gnu/-/rollup-linux-ppc64-gnu-4.59.0.tgz", + "integrity": "sha512-sw1o3tfyk12k3OEpRddF68a1unZ5VCN7zoTNtSn2KndUE+ea3m3ROOKRCZxEpmT9nsGnogpFP9x6mnLTCaoLkA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-ppc64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-ppc64-musl/-/rollup-linux-ppc64-musl-4.59.0.tgz", + "integrity": "sha512-+2kLtQ4xT3AiIxkzFVFXfsmlZiG5FXYW7ZyIIvGA7Bdeuh9Z0aN4hVyXS/G1E9bTP/vqszNIN/pUKCk/BTHsKA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.59.0.tgz", + "integrity": "sha512-NDYMpsXYJJaj+I7UdwIuHHNxXZ/b/N2hR15NyH3m2qAtb/hHPA4g4SuuvrdxetTdndfj9b1WOmy73kcPRoERUg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.59.0.tgz", + "integrity": "sha512-nLckB8WOqHIf1bhymk+oHxvM9D3tyPndZH8i8+35p/1YiVoVswPid2yLzgX7ZJP0KQvnkhM4H6QZ5m0LzbyIAg==", + "cpu": [ + "riscv64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-s390x-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.59.0.tgz", + "integrity": "sha512-oF87Ie3uAIvORFBpwnCvUzdeYUqi2wY6jRFWJAy1qus/udHFYIkplYRW+wo+GRUP4sKzYdmE1Y3+rY5Gc4ZO+w==", + "cpu": [ + "s390x" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.59.0.tgz", + "integrity": "sha512-3AHmtQq/ppNuUspKAlvA8HtLybkDflkMuLK4DPo77DfthRb71V84/c4MlWJXixZz4uruIH4uaa07IqoAkG64fg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.59.0.tgz", + "integrity": "sha512-2UdiwS/9cTAx7qIUZB/fWtToJwvt0Vbo0zmnYt7ED35KPg13Q0ym1g442THLC7VyI6JfYTP4PiSOWyoMdV2/xg==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-openbsd-x64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openbsd-x64/-/rollup-openbsd-x64-4.59.0.tgz", + "integrity": "sha512-M3bLRAVk6GOwFlPTIxVBSYKUaqfLrn8l0psKinkCFxl4lQvOSz8ZrKDz2gxcBwHFpci0B6rttydI4IpS4IS/jQ==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openbsd" + ] + }, + "node_modules/@rollup/rollup-openharmony-arm64": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-openharmony-arm64/-/rollup-openharmony-arm64-4.59.0.tgz", + "integrity": "sha512-tt9KBJqaqp5i5HUZzoafHZX8b5Q2Fe7UjYERADll83O4fGqJ49O1FsL6LpdzVFQcpwvnyd0i+K/VSwu/o/nWlA==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "openharmony" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.59.0.tgz", + "integrity": "sha512-V5B6mG7OrGTwnxaNUzZTDTjDS7F75PO1ae6MJYdiMu60sq0CqN5CVeVsbhPxalupvTX8gXVSU9gq+Rx1/hvu6A==", + "cpu": [ + "arm64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.59.0.tgz", + "integrity": "sha512-UKFMHPuM9R0iBegwzKF4y0C4J9u8C6MEJgFuXTBerMk7EJ92GFVFYBfOZaSGLu6COf7FxpQNqhNS4c4icUPqxA==", + "cpu": [ + "ia32" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-gnu": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-gnu/-/rollup-win32-x64-gnu-4.59.0.tgz", + "integrity": "sha512-laBkYlSS1n2L8fSo1thDNGrCTQMmxjYY5G0WFWjFFYZkKPjsMBsgJfGf4TLxXrF6RyhI60L8TMOjBMvXiTcxeA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.59.0.tgz", + "integrity": "sha512-2HRCml6OztYXyJXAvdDXPKcawukWY2GpR5/nxKp4iBgiO3wcoEGkAaqctIbZcNB6KlUQBIqt8VYkNSj2397EfA==", + "cpu": [ + "x64" + ], + "dev": true, + "license": "MIT", + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@tauri-apps/api": { + "version": "2.10.1", + "resolved": "https://registry.npmjs.org/@tauri-apps/api/-/api-2.10.1.tgz", + "integrity": "sha512-hKL/jWf293UDSUN09rR69hrToyIXBb8CjGaWC7gfinvnQrBVvnLr08FeFi38gxtugAVyVcTa5/FD/Xnkb1siBw==", + "license": "Apache-2.0 OR MIT", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/tauri" + } + }, + "node_modules/@types/estree": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz", + "integrity": "sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==", + "dev": true, + "license": "MIT" + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true, + "license": "MIT" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "license": "MIT", + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "license": "MIT", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-core-module": { + "version": "2.16.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", + "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", + "dev": true, + "license": "MIT", + "dependencies": { + "hasown": "^2.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true, + "license": "MIT" + }, + "node_modules/picomatch": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-4.0.3.tgz", + "integrity": "sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/resolve": { + "version": "1.22.11", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.11.tgz", + "integrity": "sha512-RfqAvLnMl313r7c9oclB1HhUEAezcpLjz95wFH4LVuhk9JF/r22qmVP9AMmOU4vMX7Q8pN8jwNg/CSpdFnMjTQ==", + "dev": true, + "license": "MIT", + "dependencies": { + "is-core-module": "^2.16.1", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/rollup": { + "version": "4.59.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.59.0.tgz", + "integrity": "sha512-2oMpl67a3zCH9H79LeMcbDhXW/UmWG/y2zuqnF2jQq5uq9TbM9TVyXvA4+t+ne2IIkBdrLpAaRQAvo7YI/Yyeg==", + "dev": true, + "license": "MIT", + "dependencies": { + "@types/estree": "1.0.8" + }, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.59.0", + "@rollup/rollup-android-arm64": "4.59.0", + "@rollup/rollup-darwin-arm64": "4.59.0", + "@rollup/rollup-darwin-x64": "4.59.0", + "@rollup/rollup-freebsd-arm64": "4.59.0", + "@rollup/rollup-freebsd-x64": "4.59.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.59.0", + "@rollup/rollup-linux-arm-musleabihf": "4.59.0", + "@rollup/rollup-linux-arm64-gnu": "4.59.0", + "@rollup/rollup-linux-arm64-musl": "4.59.0", + "@rollup/rollup-linux-loong64-gnu": "4.59.0", + "@rollup/rollup-linux-loong64-musl": "4.59.0", + "@rollup/rollup-linux-ppc64-gnu": "4.59.0", + "@rollup/rollup-linux-ppc64-musl": "4.59.0", + "@rollup/rollup-linux-riscv64-gnu": "4.59.0", + "@rollup/rollup-linux-riscv64-musl": "4.59.0", + "@rollup/rollup-linux-s390x-gnu": "4.59.0", + "@rollup/rollup-linux-x64-gnu": "4.59.0", + "@rollup/rollup-linux-x64-musl": "4.59.0", + "@rollup/rollup-openbsd-x64": "4.59.0", + "@rollup/rollup-openharmony-arm64": "4.59.0", + "@rollup/rollup-win32-arm64-msvc": "4.59.0", + "@rollup/rollup-win32-ia32-msvc": "4.59.0", + "@rollup/rollup-win32-x64-gnu": "4.59.0", + "@rollup/rollup-win32-x64-msvc": "4.59.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "license": "MIT", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tslib": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", + "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", + "dev": true, + "license": "0BSD" + }, + "node_modules/typescript": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz", + "integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==", + "dev": true, + "license": "Apache-2.0", + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + } + } +} diff --git a/crates/tauri-plugin-splashscreen/package.json b/crates/tauri-plugin-splashscreen/package.json new file mode 100644 index 000000000..5ba941c57 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/package.json @@ -0,0 +1,33 @@ +{ + "name": "tauri-plugin-splashscreen-api", + "version": "0.1.0", + "author": "You", + "description": "", + "type": "module", + "types": "./dist-js/index.d.ts", + "main": "./dist-js/index.cjs", + "module": "./dist-js/index.js", + "exports": { + "types": "./dist-js/index.d.ts", + "import": "./dist-js/index.js", + "require": "./dist-js/index.cjs" + }, + "files": [ + "dist-js", + "README.md" + ], + "scripts": { + "build": "rollup -c", + "prepublishOnly": "npm build", + "pretest": "npm build" + }, + "dependencies": { + "@tauri-apps/api": "^2.0.0" + }, + "devDependencies": { + "@rollup/plugin-typescript": "^12.0.0", + "rollup": "^4.9.6", + "typescript": "^5.3.3", + "tslib": "^2.6.2" + } +} diff --git a/crates/tauri-plugin-splashscreen/permissions/autogenerated/commands/close.toml b/crates/tauri-plugin-splashscreen/permissions/autogenerated/commands/close.toml new file mode 100644 index 000000000..fad12d151 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/permissions/autogenerated/commands/close.toml @@ -0,0 +1,13 @@ +# Automatically generated - DO NOT EDIT! + +"$schema" = "../../schemas/schema.json" + +[[permission]] +identifier = "allow-close" +description = "Enables the close command without any pre-configured scope." +commands.allow = ["close"] + +[[permission]] +identifier = "deny-close" +description = "Denies the close command without any pre-configured scope." +commands.deny = ["close"] diff --git a/crates/tauri-plugin-splashscreen/permissions/autogenerated/commands/ping.toml b/crates/tauri-plugin-splashscreen/permissions/autogenerated/commands/ping.toml new file mode 100644 index 000000000..1d1358807 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/permissions/autogenerated/commands/ping.toml @@ -0,0 +1,13 @@ +# Automatically generated - DO NOT EDIT! + +"$schema" = "../../schemas/schema.json" + +[[permission]] +identifier = "allow-ping" +description = "Enables the ping command without any pre-configured scope." +commands.allow = ["ping"] + +[[permission]] +identifier = "deny-ping" +description = "Denies the ping command without any pre-configured scope." +commands.deny = ["ping"] diff --git a/crates/tauri-plugin-splashscreen/permissions/autogenerated/reference.md b/crates/tauri-plugin-splashscreen/permissions/autogenerated/reference.md new file mode 100644 index 000000000..b549f64e7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/permissions/autogenerated/reference.md @@ -0,0 +1,70 @@ +## Default Permission + +Default permissions for the splashscreen plugin + +#### This default permission set includes the following: + +- `allow-ping` +- `allow-close` + +## Permission Table + + + + + + + + + + + + + + + + + + + + + + + + + + + +
IdentifierDescription
+ +`splashscreen:allow-close` + + + +Enables the close command without any pre-configured scope. + +
+ +`splashscreen:deny-close` + + + +Denies the close command without any pre-configured scope. + +
+ +`splashscreen:allow-ping` + + + +Enables the ping command without any pre-configured scope. + +
+ +`splashscreen:deny-ping` + + + +Denies the ping command without any pre-configured scope. + +
diff --git a/crates/tauri-plugin-splashscreen/permissions/default.toml b/crates/tauri-plugin-splashscreen/permissions/default.toml new file mode 100644 index 000000000..2aad6f4b0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/permissions/default.toml @@ -0,0 +1,8 @@ +"$schema" = "schemas/schema.json" + +[default] +description = "Default permissions for the splashscreen plugin" +permissions = [ + "allow-ping", + "allow-close", +] \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/permissions/schemas/schema.json b/crates/tauri-plugin-splashscreen/permissions/schemas/schema.json new file mode 100644 index 000000000..d8b2f7f76 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/permissions/schemas/schema.json @@ -0,0 +1,330 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "PermissionFile", + "description": "Permission file that can define a default permission, a set of permissions or a list of inlined permissions.", + "type": "object", + "properties": { + "default": { + "description": "The default permission set for the plugin", + "anyOf": [ + { + "$ref": "#/definitions/DefaultPermission" + }, + { + "type": "null" + } + ] + }, + "set": { + "description": "A list of permissions sets defined", + "type": "array", + "items": { + "$ref": "#/definitions/PermissionSet" + } + }, + "permission": { + "description": "A list of inlined permissions", + "default": [], + "type": "array", + "items": { + "$ref": "#/definitions/Permission" + } + } + }, + "definitions": { + "DefaultPermission": { + "description": "The default permission set of the plugin.\n\nWorks similarly to a permission with the \"default\" identifier.", + "type": "object", + "required": [ + "permissions" + ], + "properties": { + "version": { + "description": "The version of the permission.", + "type": [ + "integer", + "null" + ], + "format": "uint64", + "minimum": 1.0 + }, + "description": { + "description": "Human-readable description of what the permission does. Tauri convention is to use `

` headings in markdown content for Tauri documentation generation purposes.", + "type": [ + "string", + "null" + ] + }, + "permissions": { + "description": "All permissions this set contains.", + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "PermissionSet": { + "description": "A set of direct permissions grouped together under a new name.", + "type": "object", + "required": [ + "description", + "identifier", + "permissions" + ], + "properties": { + "identifier": { + "description": "A unique identifier for the permission.", + "type": "string" + }, + "description": { + "description": "Human-readable description of what the permission does.", + "type": "string" + }, + "permissions": { + "description": "All permissions this set contains.", + "type": "array", + "items": { + "$ref": "#/definitions/PermissionKind" + } + } + } + }, + "Permission": { + "description": "Descriptions of explicit privileges of commands.\n\nIt can enable commands to be accessible in the frontend of the application.\n\nIf the scope is defined it can be used to fine grain control the access of individual or multiple commands.", + "type": "object", + "required": [ + "identifier" + ], + "properties": { + "version": { + "description": "The version of the permission.", + "type": [ + "integer", + "null" + ], + "format": "uint64", + "minimum": 1.0 + }, + "identifier": { + "description": "A unique identifier for the permission.", + "type": "string" + }, + "description": { + "description": "Human-readable description of what the permission does. Tauri internal convention is to use `

` headings in markdown content for Tauri documentation generation purposes.", + "type": [ + "string", + "null" + ] + }, + "commands": { + "description": "Allowed or denied commands when using this permission.", + "default": { + "allow": [], + "deny": [] + }, + "allOf": [ + { + "$ref": "#/definitions/Commands" + } + ] + }, + "scope": { + "description": "Allowed or denied scoped when using this permission.", + "allOf": [ + { + "$ref": "#/definitions/Scopes" + } + ] + }, + "platforms": { + "description": "Target platforms this permission applies. By default all platforms are affected by this permission.", + "type": [ + "array", + "null" + ], + "items": { + "$ref": "#/definitions/Target" + } + } + } + }, + "Commands": { + "description": "Allowed and denied commands inside a permission.\n\nIf two commands clash inside of `allow` and `deny`, it should be denied by default.", + "type": "object", + "properties": { + "allow": { + "description": "Allowed command.", + "default": [], + "type": "array", + "items": { + "type": "string" + } + }, + "deny": { + "description": "Denied command, which takes priority.", + "default": [], + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "Scopes": { + "description": "An argument for fine grained behavior control of Tauri commands.\n\nIt can be of any serde serializable type and is used to allow or prevent certain actions inside a Tauri command. The configured scope is passed to the command and will be enforced by the command implementation.\n\n## Example\n\n```json { \"allow\": [{ \"path\": \"$HOME/**\" }], \"deny\": [{ \"path\": \"$HOME/secret.txt\" }] } ```", + "type": "object", + "properties": { + "allow": { + "description": "Data that defines what is allowed by the scope.", + "type": [ + "array", + "null" + ], + "items": { + "$ref": "#/definitions/Value" + } + }, + "deny": { + "description": "Data that defines what is denied by the scope. This should be prioritized by validation logic.", + "type": [ + "array", + "null" + ], + "items": { + "$ref": "#/definitions/Value" + } + } + } + }, + "Value": { + "description": "All supported ACL values.", + "anyOf": [ + { + "description": "Represents a null JSON value.", + "type": "null" + }, + { + "description": "Represents a [`bool`].", + "type": "boolean" + }, + { + "description": "Represents a valid ACL [`Number`].", + "allOf": [ + { + "$ref": "#/definitions/Number" + } + ] + }, + { + "description": "Represents a [`String`].", + "type": "string" + }, + { + "description": "Represents a list of other [`Value`]s.", + "type": "array", + "items": { + "$ref": "#/definitions/Value" + } + }, + { + "description": "Represents a map of [`String`] keys to [`Value`]s.", + "type": "object", + "additionalProperties": { + "$ref": "#/definitions/Value" + } + } + ] + }, + "Number": { + "description": "A valid ACL number.", + "anyOf": [ + { + "description": "Represents an [`i64`].", + "type": "integer", + "format": "int64" + }, + { + "description": "Represents a [`f64`].", + "type": "number", + "format": "double" + } + ] + }, + "Target": { + "description": "Platform target.", + "oneOf": [ + { + "description": "MacOS.", + "type": "string", + "enum": [ + "macOS" + ] + }, + { + "description": "Windows.", + "type": "string", + "enum": [ + "windows" + ] + }, + { + "description": "Linux.", + "type": "string", + "enum": [ + "linux" + ] + }, + { + "description": "Android.", + "type": "string", + "enum": [ + "android" + ] + }, + { + "description": "iOS.", + "type": "string", + "enum": [ + "iOS" + ] + } + ] + }, + "PermissionKind": { + "type": "string", + "oneOf": [ + { + "description": "Enables the close command without any pre-configured scope.", + "type": "string", + "const": "allow-close", + "markdownDescription": "Enables the close command without any pre-configured scope." + }, + { + "description": "Denies the close command without any pre-configured scope.", + "type": "string", + "const": "deny-close", + "markdownDescription": "Denies the close command without any pre-configured scope." + }, + { + "description": "Enables the ping command without any pre-configured scope.", + "type": "string", + "const": "allow-ping", + "markdownDescription": "Enables the ping command without any pre-configured scope." + }, + { + "description": "Denies the ping command without any pre-configured scope.", + "type": "string", + "const": "deny-ping", + "markdownDescription": "Denies the ping command without any pre-configured scope." + }, + { + "description": "Default permissions for the splashscreen plugin\n#### This default permission set includes:\n\n- `allow-ping`\n- `allow-close`", + "type": "string", + "const": "default", + "markdownDescription": "Default permissions for the splashscreen plugin\n#### This default permission set includes:\n\n- `allow-ping`\n- `allow-close`" + } + ] + } + } +} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/rollup.config.js b/crates/tauri-plugin-splashscreen/rollup.config.js new file mode 100644 index 000000000..d7dacf3d1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/rollup.config.js @@ -0,0 +1,31 @@ +import { readFileSync } from 'node:fs'; +import { dirname, join } from 'node:path'; +import { cwd } from 'node:process'; +import typescript from '@rollup/plugin-typescript'; + +const pkg = JSON.parse(readFileSync(join(cwd(), 'package.json'), 'utf8')); + +export default { + input: 'guest-js/index.ts', + output: [ + { + file: pkg.exports.import, + format: 'esm', + }, + { + file: pkg.exports.require, + format: 'cjs', + }, + ], + plugins: [ + typescript({ + declaration: true, + declarationDir: dirname(pkg.exports.import), + }), + ], + external: [ + /^@tauri-apps\/api/, + ...Object.keys(pkg.dependencies || {}), + ...Object.keys(pkg.peerDependencies || {}), + ], +}; diff --git a/crates/tauri-plugin-splashscreen/src/commands.rs b/crates/tauri-plugin-splashscreen/src/commands.rs new file mode 100644 index 000000000..c3552928e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/src/commands.rs @@ -0,0 +1,18 @@ +use tauri::{AppHandle, command, Runtime}; + +use crate::models::*; +use crate::Result; +use crate::SplashscreenExt; + +#[command] +pub(crate) async fn ping( + app: AppHandle, + payload: PingRequest, +) -> Result { + app.splashscreen().ping(payload) +} + +#[command] +pub(crate) async fn close(app: AppHandle) -> Result<()> { + app.splashscreen().close() +} diff --git a/crates/tauri-plugin-splashscreen/src/desktop.rs b/crates/tauri-plugin-splashscreen/src/desktop.rs new file mode 100644 index 000000000..8542cb1fa --- /dev/null +++ b/crates/tauri-plugin-splashscreen/src/desktop.rs @@ -0,0 +1,26 @@ +use serde::de::DeserializeOwned; +use tauri::{plugin::PluginApi, AppHandle, Runtime}; + +use crate::models::*; + +pub fn init( + app: &AppHandle, + _api: PluginApi, +) -> crate::Result> { + Ok(Splashscreen(app.clone())) +} + +/// Access to the splashscreen APIs. +pub struct Splashscreen(AppHandle); + +impl Splashscreen { + pub fn ping(&self, payload: PingRequest) -> crate::Result { + Ok(PingResponse { + value: payload.value, + }) + } + + pub fn close(&self) -> crate::Result<()> { + Ok(()) + } +} diff --git a/crates/tauri-plugin-splashscreen/src/error.rs b/crates/tauri-plugin-splashscreen/src/error.rs new file mode 100644 index 000000000..929b53836 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/src/error.rs @@ -0,0 +1,21 @@ +use serde::{ser::Serializer, Serialize}; + +pub type Result = std::result::Result; + +#[derive(Debug, thiserror::Error)] +pub enum Error { + #[error(transparent)] + Io(#[from] std::io::Error), + #[cfg(mobile)] + #[error(transparent)] + PluginInvoke(#[from] tauri::plugin::mobile::PluginInvokeError), +} + +impl Serialize for Error { + fn serialize(&self, serializer: S) -> std::result::Result + where + S: Serializer, + { + serializer.serialize_str(self.to_string().as_ref()) + } +} diff --git a/crates/tauri-plugin-splashscreen/src/lib.rs b/crates/tauri-plugin-splashscreen/src/lib.rs new file mode 100644 index 000000000..18b0a7de7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/src/lib.rs @@ -0,0 +1,48 @@ +use tauri::{ + plugin::{Builder, TauriPlugin}, + Manager, Runtime, +}; + +pub use models::*; + +#[cfg(desktop)] +mod desktop; +#[cfg(mobile)] +mod mobile; + +mod commands; +mod error; +mod models; + +pub use error::{Error, Result}; + +#[cfg(desktop)] +use desktop::Splashscreen; +#[cfg(mobile)] +use mobile::Splashscreen; + +/// Extensions to [`tauri::App`], [`tauri::AppHandle`] and [`tauri::Window`] to access the splashscreen APIs. +pub trait SplashscreenExt { + fn splashscreen(&self) -> &Splashscreen; +} + +impl> crate::SplashscreenExt for T { + fn splashscreen(&self) -> &Splashscreen { + self.state::>().inner() + } +} + +/// Initializes the plugin. +pub fn init() -> TauriPlugin { + Builder::new("splashscreen") + .invoke_handler(tauri::generate_handler![commands::ping, commands::close]) + .setup(|app, api| { + #[cfg(mobile)] + let splashscreen = mobile::init(app, api)?; + #[cfg(desktop)] + let splashscreen = desktop::init(app, api)?; + app.manage(splashscreen); + Ok(()) + }) + .build() +} diff --git a/crates/tauri-plugin-splashscreen/src/mobile.rs b/crates/tauri-plugin-splashscreen/src/mobile.rs new file mode 100644 index 000000000..2163c3be5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/src/mobile.rs @@ -0,0 +1,41 @@ +use serde::de::DeserializeOwned; +use tauri::{ + plugin::{PluginApi, PluginHandle}, + AppHandle, Runtime, +}; + +use crate::models::*; + +#[cfg(target_os = "ios")] +tauri::ios_plugin_binding!(init_plugin_splashscreen); + +// initializes the Kotlin or Swift plugin classes +pub fn init( + _app: &AppHandle, + api: PluginApi, +) -> crate::Result> { + #[cfg(target_os = "android")] + let handle = api.register_android_plugin("moe.sable.app.plugin.splashscreen", "SplashScreenPlugin")?; + #[cfg(target_os = "ios")] + let handle = api.register_ios_plugin(init_plugin_splashscreen)?; + Ok(Splashscreen(handle)) +} + +/// Access to the splashscreen APIs. +pub struct Splashscreen(PluginHandle); + +impl Splashscreen { + pub fn ping(&self, payload: PingRequest) -> crate::Result { + self + .0 + .run_mobile_plugin("ping", payload) + .map_err(Into::into) + } + + pub fn close(&self) -> crate::Result<()> { + self + .0 + .run_mobile_plugin("close", ()) + .map_err(Into::into) + } +} diff --git a/crates/tauri-plugin-splashscreen/src/models.rs b/crates/tauri-plugin-splashscreen/src/models.rs new file mode 100644 index 000000000..c755abd14 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/src/models.rs @@ -0,0 +1,13 @@ +use serde::{Deserialize, Serialize}; + +#[derive(Debug, Deserialize, Serialize)] +#[serde(rename_all = "camelCase")] +pub struct PingRequest { + pub value: Option, +} + +#[derive(Debug, Clone, Default, Deserialize, Serialize)] +#[serde(rename_all = "camelCase")] +pub struct PingResponse { + pub value: Option, +} diff --git a/crates/tauri-plugin-splashscreen/target/.rustc_info.json b/crates/tauri-plugin-splashscreen/target/.rustc_info.json new file mode 100644 index 000000000..166cb121e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/.rustc_info.json @@ -0,0 +1 @@ +{"rustc_fingerprint":12823936982809341586,"outputs":{"7971740275564407648":{"success":true,"status":"","code":0,"stdout":"___.exe\nlib___.rlib\n___.dll\n___.dll\n___.lib\n___.dll\nC:\\Users\\haz\\.rustup\\toolchains\\stable-x86_64-pc-windows-msvc\npacked\n___\ndebug_assertions\npanic=\"unwind\"\nproc_macro\ntarget_abi=\"\"\ntarget_arch=\"x86_64\"\ntarget_endian=\"little\"\ntarget_env=\"msvc\"\ntarget_family=\"windows\"\ntarget_feature=\"cmpxchg16b\"\ntarget_feature=\"fxsr\"\ntarget_feature=\"sse\"\ntarget_feature=\"sse2\"\ntarget_feature=\"sse3\"\ntarget_has_atomic=\"128\"\ntarget_has_atomic=\"16\"\ntarget_has_atomic=\"32\"\ntarget_has_atomic=\"64\"\ntarget_has_atomic=\"8\"\ntarget_has_atomic=\"ptr\"\ntarget_os=\"windows\"\ntarget_pointer_width=\"64\"\ntarget_vendor=\"pc\"\nwindows\n","stderr":""},"17747080675513052775":{"success":true,"status":"","code":0,"stdout":"rustc 1.93.1 (01f6ddf75 2026-02-11)\nbinary: rustc\ncommit-hash: 01f6ddf7588f42ae2d7eb0a2f21d44e8e96674cf\ncommit-date: 2026-02-11\nhost: x86_64-pc-windows-msvc\nrelease: 1.93.1\nLLVM version: 21.1.8\n","stderr":""}},"successes":{}} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/CACHEDIR.TAG b/crates/tauri-plugin-splashscreen/target/CACHEDIR.TAG new file mode 100644 index 000000000..20d7c319c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/CACHEDIR.TAG @@ -0,0 +1,3 @@ +Signature: 8a477f597d28d172789f06886806bc55 +# This file is a cache directory tag created by cargo. +# For information about cache directory tags see https://bford.info/cachedir/ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.cargo-lock b/crates/tauri-plugin-splashscreen/target/debug/.cargo-lock new file mode 100644 index 000000000..e69de29bb diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/adler2-6586caa2360024ca/dep-lib-adler2 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/adler2-6586caa2360024ca/dep-lib-adler2 new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/adler2-6586caa2360024ca/dep-lib-adler2 differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/adler2-6586caa2360024ca/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/adler2-6586caa2360024ca/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/adler2-6586caa2360024ca/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/adler2-6586caa2360024ca/lib-adler2 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/adler2-6586caa2360024ca/lib-adler2 new file mode 100644 index 000000000..5c7b7863b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/adler2-6586caa2360024ca/lib-adler2 @@ -0,0 +1 @@ +819aab6fb9aae72d \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/adler2-6586caa2360024ca/lib-adler2.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/adler2-6586caa2360024ca/lib-adler2.json new file mode 100644 index 000000000..f006a6a56 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/adler2-6586caa2360024ca/lib-adler2.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"core\", \"default\", \"rustc-dep-of-std\", \"std\"]","target":6569825234462323107,"profile":2225463790103693989,"path":7512547906842277152,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\adler2-6586caa2360024ca\\dep-lib-adler2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/aho-corasick-c5b4dc4a1828ae39/dep-lib-aho_corasick b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/aho-corasick-c5b4dc4a1828ae39/dep-lib-aho_corasick new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/aho-corasick-c5b4dc4a1828ae39/dep-lib-aho_corasick differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/aho-corasick-c5b4dc4a1828ae39/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/aho-corasick-c5b4dc4a1828ae39/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/aho-corasick-c5b4dc4a1828ae39/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/aho-corasick-c5b4dc4a1828ae39/lib-aho_corasick b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/aho-corasick-c5b4dc4a1828ae39/lib-aho_corasick new file mode 100644 index 000000000..ada571370 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/aho-corasick-c5b4dc4a1828ae39/lib-aho_corasick @@ -0,0 +1 @@ +0867cc084d6ae89f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/aho-corasick-c5b4dc4a1828ae39/lib-aho_corasick.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/aho-corasick-c5b4dc4a1828ae39/lib-aho_corasick.json new file mode 100644 index 000000000..5c301dcaa --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/aho-corasick-c5b4dc4a1828ae39/lib-aho_corasick.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"perf-literal\", \"std\"]","declared_features":"[\"default\", \"logging\", \"perf-literal\", \"std\"]","target":7534583537114156500,"profile":15657897354478470176,"path":18169547817172132363,"deps":[[1363051979936526615,"memchr",false,10429968106908219858]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\aho-corasick-c5b4dc4a1828ae39\\dep-lib-aho_corasick","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-no-stdlib-d7495d5de183ec04/dep-lib-alloc_no_stdlib b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-no-stdlib-d7495d5de183ec04/dep-lib-alloc_no_stdlib new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-no-stdlib-d7495d5de183ec04/dep-lib-alloc_no_stdlib differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-no-stdlib-d7495d5de183ec04/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-no-stdlib-d7495d5de183ec04/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-no-stdlib-d7495d5de183ec04/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-no-stdlib-d7495d5de183ec04/lib-alloc_no_stdlib b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-no-stdlib-d7495d5de183ec04/lib-alloc_no_stdlib new file mode 100644 index 000000000..0d3841815 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-no-stdlib-d7495d5de183ec04/lib-alloc_no_stdlib @@ -0,0 +1 @@ +f208ca1d1c69bea8 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-no-stdlib-d7495d5de183ec04/lib-alloc_no_stdlib.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-no-stdlib-d7495d5de183ec04/lib-alloc_no_stdlib.json new file mode 100644 index 000000000..5bda7a547 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-no-stdlib-d7495d5de183ec04/lib-alloc_no_stdlib.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"unsafe\"]","target":1942380541186272485,"profile":15657897354478470176,"path":9711158906562489255,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\alloc-no-stdlib-d7495d5de183ec04\\dep-lib-alloc_no_stdlib","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-stdlib-ce2fbf70a1e0f3ff/dep-lib-alloc_stdlib b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-stdlib-ce2fbf70a1e0f3ff/dep-lib-alloc_stdlib new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-stdlib-ce2fbf70a1e0f3ff/dep-lib-alloc_stdlib differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-stdlib-ce2fbf70a1e0f3ff/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-stdlib-ce2fbf70a1e0f3ff/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-stdlib-ce2fbf70a1e0f3ff/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-stdlib-ce2fbf70a1e0f3ff/lib-alloc_stdlib b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-stdlib-ce2fbf70a1e0f3ff/lib-alloc_stdlib new file mode 100644 index 000000000..2c61cb99e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-stdlib-ce2fbf70a1e0f3ff/lib-alloc_stdlib @@ -0,0 +1 @@ +31b576db4d5cc8f2 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-stdlib-ce2fbf70a1e0f3ff/lib-alloc_stdlib.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-stdlib-ce2fbf70a1e0f3ff/lib-alloc_stdlib.json new file mode 100644 index 000000000..80ccc46a4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/alloc-stdlib-ce2fbf70a1e0f3ff/lib-alloc_stdlib.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"unsafe\"]","target":8756844401079878655,"profile":15657897354478470176,"path":13982176270778295271,"deps":[[9611597350722197978,"alloc_no_stdlib",false,12159271613426698482]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\alloc-stdlib-ce2fbf70a1e0f3ff\\dep-lib-alloc_stdlib","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-8136da6f7b89b28f/dep-lib-anyhow b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-8136da6f7b89b28f/dep-lib-anyhow new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-8136da6f7b89b28f/dep-lib-anyhow differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-8136da6f7b89b28f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-8136da6f7b89b28f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-8136da6f7b89b28f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-8136da6f7b89b28f/lib-anyhow b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-8136da6f7b89b28f/lib-anyhow new file mode 100644 index 000000000..836dd1299 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-8136da6f7b89b28f/lib-anyhow @@ -0,0 +1 @@ +70d280d5068e6e8c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-8136da6f7b89b28f/lib-anyhow.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-8136da6f7b89b28f/lib-anyhow.json new file mode 100644 index 000000000..fe42b0539 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-8136da6f7b89b28f/lib-anyhow.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":1563897884725121975,"profile":15657897354478470176,"path":3941646840674378862,"deps":[[12478428894219133322,"build_script_build",false,16417992884228923063]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\anyhow-8136da6f7b89b28f\\dep-lib-anyhow","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-a6fb742dbf592df4/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-a6fb742dbf592df4/build-script-build-script-build new file mode 100644 index 000000000..cfc1b302e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-a6fb742dbf592df4/build-script-build-script-build @@ -0,0 +1 @@ +69671891a79147ca \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-a6fb742dbf592df4/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-a6fb742dbf592df4/build-script-build-script-build.json new file mode 100644 index 000000000..474869915 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-a6fb742dbf592df4/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"backtrace\", \"default\", \"std\"]","target":5408242616063297496,"profile":2225463790103693989,"path":4327628406606522932,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\anyhow-a6fb742dbf592df4\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-a6fb742dbf592df4/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-a6fb742dbf592df4/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-a6fb742dbf592df4/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-a6fb742dbf592df4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-a6fb742dbf592df4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-a6fb742dbf592df4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-ff7d2e6a15a69f2e/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-ff7d2e6a15a69f2e/run-build-script-build-script-build new file mode 100644 index 000000000..aeb1e56f4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-ff7d2e6a15a69f2e/run-build-script-build-script-build @@ -0,0 +1 @@ +b71e5bbd8a6dd8e3 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-ff7d2e6a15a69f2e/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-ff7d2e6a15a69f2e/run-build-script-build-script-build.json new file mode 100644 index 000000000..51f2e7b93 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/anyhow-ff7d2e6a15a69f2e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[12478428894219133322,"build_script_build",false,14575778867887761257]],"local":[{"RerunIfChanged":{"output":"debug\\build\\anyhow-ff7d2e6a15a69f2e\\output","paths":["src/nightly.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/autocfg-0d9fab24a14ca87a/dep-lib-autocfg b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/autocfg-0d9fab24a14ca87a/dep-lib-autocfg new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/autocfg-0d9fab24a14ca87a/dep-lib-autocfg differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/autocfg-0d9fab24a14ca87a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/autocfg-0d9fab24a14ca87a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/autocfg-0d9fab24a14ca87a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/autocfg-0d9fab24a14ca87a/lib-autocfg b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/autocfg-0d9fab24a14ca87a/lib-autocfg new file mode 100644 index 000000000..179645712 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/autocfg-0d9fab24a14ca87a/lib-autocfg @@ -0,0 +1 @@ +31fe3c209c104a21 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/autocfg-0d9fab24a14ca87a/lib-autocfg.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/autocfg-0d9fab24a14ca87a/lib-autocfg.json new file mode 100644 index 000000000..97c2c9159 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/autocfg-0d9fab24a14ca87a/lib-autocfg.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":6962977057026645649,"profile":2225463790103693989,"path":15827462286931432919,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\autocfg-0d9fab24a14ca87a\\dep-lib-autocfg","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/base64-796929deec84c6e5/dep-lib-base64 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/base64-796929deec84c6e5/dep-lib-base64 new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/base64-796929deec84c6e5/dep-lib-base64 differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/base64-796929deec84c6e5/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/base64-796929deec84c6e5/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/base64-796929deec84c6e5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/base64-796929deec84c6e5/lib-base64 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/base64-796929deec84c6e5/lib-base64 new file mode 100644 index 000000000..802860e34 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/base64-796929deec84c6e5/lib-base64 @@ -0,0 +1 @@ +2c04953b5295a418 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/base64-796929deec84c6e5/lib-base64.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/base64-796929deec84c6e5/lib-base64.json new file mode 100644 index 000000000..93795440d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/base64-796929deec84c6e5/lib-base64.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":13060062996227388079,"profile":2225463790103693989,"path":18347827526767243371,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\base64-796929deec84c6e5\\dep-lib-base64","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-5588fd7a3e032978/dep-lib-bitflags b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-5588fd7a3e032978/dep-lib-bitflags new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-5588fd7a3e032978/dep-lib-bitflags differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-5588fd7a3e032978/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-5588fd7a3e032978/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-5588fd7a3e032978/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-5588fd7a3e032978/lib-bitflags b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-5588fd7a3e032978/lib-bitflags new file mode 100644 index 000000000..c0a76b5f8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-5588fd7a3e032978/lib-bitflags @@ -0,0 +1 @@ +d997a5baa3ce04ab \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-5588fd7a3e032978/lib-bitflags.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-5588fd7a3e032978/lib-bitflags.json new file mode 100644 index 000000000..0f98dfbc5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-5588fd7a3e032978/lib-bitflags.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\"]","declared_features":"[\"compiler_builtins\", \"core\", \"default\", \"example_generated\", \"rustc-dep-of-std\"]","target":12919857562465245259,"profile":2225463790103693989,"path":5274963892244537208,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\bitflags-5588fd7a3e032978\\dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-975bc06580460358/dep-lib-bitflags b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-975bc06580460358/dep-lib-bitflags new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-975bc06580460358/dep-lib-bitflags differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-975bc06580460358/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-975bc06580460358/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-975bc06580460358/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-975bc06580460358/lib-bitflags b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-975bc06580460358/lib-bitflags new file mode 100644 index 000000000..c68ba02f1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-975bc06580460358/lib-bitflags @@ -0,0 +1 @@ +1945c237ca49a17e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-975bc06580460358/lib-bitflags.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-975bc06580460358/lib-bitflags.json new file mode 100644 index 000000000..7faff33dc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bitflags-975bc06580460358/lib-bitflags.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"serde\", \"serde_core\"]","declared_features":"[\"arbitrary\", \"bytemuck\", \"example_generated\", \"serde\", \"serde_core\", \"std\"]","target":7691312148208718491,"profile":15657897354478470176,"path":3888772073110747895,"deps":[[11899261697793765154,"serde_core",false,6500342841086748373]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\bitflags-975bc06580460358\\dep-lib-bitflags","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/block-buffer-0a50da0cf4dab7c7/dep-lib-block_buffer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/block-buffer-0a50da0cf4dab7c7/dep-lib-block_buffer new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/block-buffer-0a50da0cf4dab7c7/dep-lib-block_buffer differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/block-buffer-0a50da0cf4dab7c7/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/block-buffer-0a50da0cf4dab7c7/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/block-buffer-0a50da0cf4dab7c7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/block-buffer-0a50da0cf4dab7c7/lib-block_buffer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/block-buffer-0a50da0cf4dab7c7/lib-block_buffer new file mode 100644 index 000000000..7a0ea9e3d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/block-buffer-0a50da0cf4dab7c7/lib-block_buffer @@ -0,0 +1 @@ +de9c5127eb2079b0 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/block-buffer-0a50da0cf4dab7c7/lib-block_buffer.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/block-buffer-0a50da0cf4dab7c7/lib-block_buffer.json new file mode 100644 index 000000000..1302b7f38 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/block-buffer-0a50da0cf4dab7c7/lib-block_buffer.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":4098124618827574291,"profile":2225463790103693989,"path":8772707233998975477,"deps":[[10520923840501062997,"generic_array",false,11315841027978874675]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\block-buffer-0a50da0cf4dab7c7\\dep-lib-block_buffer","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-17012448cf3e95cd/dep-lib-brotli b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-17012448cf3e95cd/dep-lib-brotli new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-17012448cf3e95cd/dep-lib-brotli differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-17012448cf3e95cd/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-17012448cf3e95cd/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-17012448cf3e95cd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-17012448cf3e95cd/lib-brotli b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-17012448cf3e95cd/lib-brotli new file mode 100644 index 000000000..6cf72ec91 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-17012448cf3e95cd/lib-brotli @@ -0,0 +1 @@ +46396d650b05c6fe \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-17012448cf3e95cd/lib-brotli.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-17012448cf3e95cd/lib-brotli.json new file mode 100644 index 000000000..199749bc8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-17012448cf3e95cd/lib-brotli.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc-stdlib\", \"std\"]","declared_features":"[\"alloc-stdlib\", \"benchmark\", \"billing\", \"default\", \"disable-timer\", \"disallow_large_window_size\", \"external-literal-probability\", \"ffi-api\", \"float64\", \"floating_point_context_mixing\", \"no-stdlib-ffi-binding\", \"pass-through-ffi-panics\", \"seccomp\", \"sha2\", \"simd\", \"std\", \"validation\", \"vector_scratch_space\"]","target":8433163163091947982,"profile":15657897354478470176,"path":3079477704997328694,"deps":[[9611597350722197978,"alloc_no_stdlib",false,12159271613426698482],[16413620717702030930,"brotli_decompressor",false,8067930348976776904],[17470296833448545982,"alloc_stdlib",false,17494334241984918833]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\brotli-17012448cf3e95cd\\dep-lib-brotli","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-decompressor-9163a0ed1d85ef0b/dep-lib-brotli_decompressor b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-decompressor-9163a0ed1d85ef0b/dep-lib-brotli_decompressor new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-decompressor-9163a0ed1d85ef0b/dep-lib-brotli_decompressor differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-decompressor-9163a0ed1d85ef0b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-decompressor-9163a0ed1d85ef0b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-decompressor-9163a0ed1d85ef0b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-decompressor-9163a0ed1d85ef0b/lib-brotli_decompressor b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-decompressor-9163a0ed1d85ef0b/lib-brotli_decompressor new file mode 100644 index 000000000..26f1aed3d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-decompressor-9163a0ed1d85ef0b/lib-brotli_decompressor @@ -0,0 +1 @@ +c8a65a1be80bf76f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-decompressor-9163a0ed1d85ef0b/lib-brotli_decompressor.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-decompressor-9163a0ed1d85ef0b/lib-brotli_decompressor.json new file mode 100644 index 000000000..e4235e51b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/brotli-decompressor-9163a0ed1d85ef0b/lib-brotli_decompressor.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc-stdlib\", \"std\"]","declared_features":"[\"alloc-stdlib\", \"benchmark\", \"default\", \"disable-timer\", \"ffi-api\", \"pass-through-ffi-panics\", \"seccomp\", \"std\", \"unsafe\"]","target":11312988117123312042,"profile":15657897354478470176,"path":3069221596343104110,"deps":[[9611597350722197978,"alloc_no_stdlib",false,12159271613426698482],[17470296833448545982,"alloc_stdlib",false,17494334241984918833]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\brotli-decompressor-9163a0ed1d85ef0b\\dep-lib-brotli_decompressor","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/byteorder-cd1dbd536d944254/dep-lib-byteorder b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/byteorder-cd1dbd536d944254/dep-lib-byteorder new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/byteorder-cd1dbd536d944254/dep-lib-byteorder differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/byteorder-cd1dbd536d944254/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/byteorder-cd1dbd536d944254/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/byteorder-cd1dbd536d944254/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/byteorder-cd1dbd536d944254/lib-byteorder b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/byteorder-cd1dbd536d944254/lib-byteorder new file mode 100644 index 000000000..c2a38efcf --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/byteorder-cd1dbd536d944254/lib-byteorder @@ -0,0 +1 @@ +a50b700d212e4b24 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/byteorder-cd1dbd536d944254/lib-byteorder.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/byteorder-cd1dbd536d944254/lib-byteorder.json new file mode 100644 index 000000000..fb101fee6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/byteorder-cd1dbd536d944254/lib-byteorder.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"i128\", \"std\"]","target":8344828840634961491,"profile":15657897354478470176,"path":13091215940873975454,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\byteorder-cd1dbd536d944254\\dep-lib-byteorder","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bytes-19667fedb4ba4a18/dep-lib-bytes b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bytes-19667fedb4ba4a18/dep-lib-bytes new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bytes-19667fedb4ba4a18/dep-lib-bytes differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bytes-19667fedb4ba4a18/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bytes-19667fedb4ba4a18/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bytes-19667fedb4ba4a18/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bytes-19667fedb4ba4a18/lib-bytes b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bytes-19667fedb4ba4a18/lib-bytes new file mode 100644 index 000000000..08129cbac --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bytes-19667fedb4ba4a18/lib-bytes @@ -0,0 +1 @@ +0c00ee8eb3a57ab3 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bytes-19667fedb4ba4a18/lib-bytes.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bytes-19667fedb4ba4a18/lib-bytes.json new file mode 100644 index 000000000..604e1a3b6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/bytes-19667fedb4ba4a18/lib-bytes.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"extra-platforms\", \"serde\", \"std\"]","target":11402411492164584411,"profile":5585765287293540646,"path":243336475587870584,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\bytes-19667fedb4ba4a18\\dep-lib-bytes","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-0c4e0705d29bbab5/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-0c4e0705d29bbab5/run-build-script-build-script-build new file mode 100644 index 000000000..76d03a7a6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-0c4e0705d29bbab5/run-build-script-build-script-build @@ -0,0 +1 @@ +12b62bf8ebbc1e80 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-0c4e0705d29bbab5/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-0c4e0705d29bbab5/run-build-script-build-script-build.json new file mode 100644 index 000000000..1de9894d9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-0c4e0705d29bbab5/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11463991340766958661,"build_script_build",false,10265975483103119413]],"local":[{"RerunIfChanged":{"output":"debug\\build\\camino-0c4e0705d29bbab5\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-4a12810af3a88226/dep-lib-camino b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-4a12810af3a88226/dep-lib-camino new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-4a12810af3a88226/dep-lib-camino differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-4a12810af3a88226/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-4a12810af3a88226/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-4a12810af3a88226/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-4a12810af3a88226/lib-camino b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-4a12810af3a88226/lib-camino new file mode 100644 index 000000000..e234d5d0d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-4a12810af3a88226/lib-camino @@ -0,0 +1 @@ +b42c1356c4a16cac \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-4a12810af3a88226/lib-camino.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-4a12810af3a88226/lib-camino.json new file mode 100644 index 000000000..8cfd9c456 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-4a12810af3a88226/lib-camino.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"serde1\"]","declared_features":"[\"proptest1\", \"serde1\"]","target":4916930958703370761,"profile":2225463790103693989,"path":15254422686857608259,"deps":[[11463991340766958661,"build_script_build",false,9232024007823046162],[11899261697793765154,"serde_core",false,3505665340476166092]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\camino-4a12810af3a88226\\dep-lib-camino","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-562a946e71c7f455/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-562a946e71c7f455/build-script-build-script-build new file mode 100644 index 000000000..845adff76 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-562a946e71c7f455/build-script-build-script-build @@ -0,0 +1 @@ +35083b774f12788e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-562a946e71c7f455/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-562a946e71c7f455/build-script-build-script-build.json new file mode 100644 index 000000000..fed97bb9c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-562a946e71c7f455/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"serde1\"]","declared_features":"[\"proptest1\", \"serde1\"]","target":5408242616063297496,"profile":2225463790103693989,"path":5218633797314106911,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\camino-562a946e71c7f455\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-562a946e71c7f455/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-562a946e71c7f455/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-562a946e71c7f455/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-562a946e71c7f455/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-562a946e71c7f455/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/camino-562a946e71c7f455/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo-platform-b11615817e5b6ec4/dep-lib-cargo_platform b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo-platform-b11615817e5b6ec4/dep-lib-cargo_platform new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo-platform-b11615817e5b6ec4/dep-lib-cargo_platform differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo-platform-b11615817e5b6ec4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo-platform-b11615817e5b6ec4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo-platform-b11615817e5b6ec4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo-platform-b11615817e5b6ec4/lib-cargo_platform b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo-platform-b11615817e5b6ec4/lib-cargo_platform new file mode 100644 index 000000000..51d20fdde --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo-platform-b11615817e5b6ec4/lib-cargo_platform @@ -0,0 +1 @@ +731d51412944d6b5 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo-platform-b11615817e5b6ec4/lib-cargo_platform.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo-platform-b11615817e5b6ec4/lib-cargo_platform.json new file mode 100644 index 000000000..10a632bae --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo-platform-b11615817e5b6ec4/lib-cargo_platform.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":17813044035109393357,"profile":11204462739752859999,"path":18411476394882629935,"deps":[[13548984313718623784,"serde",false,10784126109130480978]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cargo-platform-b11615817e5b6ec4\\dep-lib-cargo_platform","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_metadata-6d096d841158634f/dep-lib-cargo_metadata b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_metadata-6d096d841158634f/dep-lib-cargo_metadata new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_metadata-6d096d841158634f/dep-lib-cargo_metadata differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_metadata-6d096d841158634f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_metadata-6d096d841158634f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_metadata-6d096d841158634f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_metadata-6d096d841158634f/lib-cargo_metadata b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_metadata-6d096d841158634f/lib-cargo_metadata new file mode 100644 index 000000000..27c03ca09 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_metadata-6d096d841158634f/lib-cargo_metadata @@ -0,0 +1 @@ +f3b671f668dbafe9 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_metadata-6d096d841158634f/lib-cargo_metadata.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_metadata-6d096d841158634f/lib-cargo_metadata.json new file mode 100644 index 000000000..f6dcc37dc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_metadata-6d096d841158634f/lib-cargo_metadata.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\"]","declared_features":"[\"builder\", \"default\", \"derive_builder\", \"unstable\"]","target":13176895034425886201,"profile":2225463790103693989,"path":8772921835376935385,"deps":[[2448563160050429386,"thiserror",false,11087210622057152061],[11463991340766958661,"camino",false,12424483336638114996],[13249756436863741821,"cargo_platform",false,13102735109861219699],[13548984313718623784,"serde",false,10784126109130480978],[13795362694956882968,"serde_json",false,9747708274794738682],[18361894353739432590,"semver",false,17711502904129342382]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cargo_metadata-6d096d841158634f\\dep-lib-cargo_metadata","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_toml-8baede5601bfb22a/dep-lib-cargo_toml b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_toml-8baede5601bfb22a/dep-lib-cargo_toml new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_toml-8baede5601bfb22a/dep-lib-cargo_toml differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_toml-8baede5601bfb22a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_toml-8baede5601bfb22a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_toml-8baede5601bfb22a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_toml-8baede5601bfb22a/lib-cargo_toml b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_toml-8baede5601bfb22a/lib-cargo_toml new file mode 100644 index 000000000..ac186e800 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_toml-8baede5601bfb22a/lib-cargo_toml @@ -0,0 +1 @@ +afc822ca2f1a1c10 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_toml-8baede5601bfb22a/lib-cargo_toml.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_toml-8baede5601bfb22a/lib-cargo_toml.json new file mode 100644 index 000000000..dbae92d76 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cargo_toml-8baede5601bfb22a/lib-cargo_toml.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"features\"]","target":3518274850734206543,"profile":2225463790103693989,"path":18327823215618014478,"deps":[[12176723955989927267,"toml",false,4732353750388681305],[13548984313718623784,"serde",false,10784126109130480978]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cargo_toml-8baede5601bfb22a\\dep-lib-cargo_toml","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cc-084eedec936242fd/dep-lib-cc b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cc-084eedec936242fd/dep-lib-cc new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cc-084eedec936242fd/dep-lib-cc differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cc-084eedec936242fd/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cc-084eedec936242fd/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cc-084eedec936242fd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cc-084eedec936242fd/lib-cc b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cc-084eedec936242fd/lib-cc new file mode 100644 index 000000000..851520e18 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cc-084eedec936242fd/lib-cc @@ -0,0 +1 @@ +dc94aebb8419ac19 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cc-084eedec936242fd/lib-cc.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cc-084eedec936242fd/lib-cc.json new file mode 100644 index 000000000..43f0c950a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cc-084eedec936242fd/lib-cc.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"jobserver\", \"parallel\"]","target":11042037588551934598,"profile":4333757155065362140,"path":6761372072135041058,"deps":[[8410525223747752176,"shlex",false,16754315446364552708],[9159843920629750842,"find_msvc_tools",false,9589717692567356300]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cc-084eedec936242fd\\dep-lib-cc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-7f644e2ed733f3af/dep-lib-cfb b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-7f644e2ed733f3af/dep-lib-cfb new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-7f644e2ed733f3af/dep-lib-cfb differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-7f644e2ed733f3af/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-7f644e2ed733f3af/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-7f644e2ed733f3af/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-7f644e2ed733f3af/lib-cfb b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-7f644e2ed733f3af/lib-cfb new file mode 100644 index 000000000..ba73a9fe0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-7f644e2ed733f3af/lib-cfb @@ -0,0 +1 @@ +937be5d7ffe9d012 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-7f644e2ed733f3af/lib-cfb.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-7f644e2ed733f3af/lib-cfb.json new file mode 100644 index 000000000..3d43755e1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-7f644e2ed733f3af/lib-cfb.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":718702084513989568,"profile":15657897354478470176,"path":7625283214886015473,"deps":[[1345404220202658316,"fnv",false,2945205396588055774],[3712811570531045576,"byteorder",false,2615234728112950181],[6804519996442711849,"uuid",false,159828219166295511]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cfb-7f644e2ed733f3af\\dep-lib-cfb","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-d5b8cf2e727516ef/dep-lib-cfb b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-d5b8cf2e727516ef/dep-lib-cfb new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-d5b8cf2e727516ef/dep-lib-cfb differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-d5b8cf2e727516ef/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-d5b8cf2e727516ef/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-d5b8cf2e727516ef/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-d5b8cf2e727516ef/lib-cfb b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-d5b8cf2e727516ef/lib-cfb new file mode 100644 index 000000000..856d1954a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-d5b8cf2e727516ef/lib-cfb @@ -0,0 +1 @@ +495d8bd4ab504a10 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-d5b8cf2e727516ef/lib-cfb.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-d5b8cf2e727516ef/lib-cfb.json new file mode 100644 index 000000000..fbfaa5cd2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfb-d5b8cf2e727516ef/lib-cfb.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":718702084513989568,"profile":15657897354478470176,"path":7625283214886015473,"deps":[[1345404220202658316,"fnv",false,2945205396588055774],[3712811570531045576,"byteorder",false,2615234728112950181],[6804519996442711849,"uuid",false,10954108970332273032]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cfb-d5b8cf2e727516ef\\dep-lib-cfb","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfg-if-7226893fe2365613/dep-lib-cfg_if b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfg-if-7226893fe2365613/dep-lib-cfg_if new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfg-if-7226893fe2365613/dep-lib-cfg_if differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfg-if-7226893fe2365613/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfg-if-7226893fe2365613/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfg-if-7226893fe2365613/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfg-if-7226893fe2365613/lib-cfg_if b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfg-if-7226893fe2365613/lib-cfg_if new file mode 100644 index 000000000..f85870f71 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfg-if-7226893fe2365613/lib-cfg_if @@ -0,0 +1 @@ +37cc1a0b243ce3aa \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfg-if-7226893fe2365613/lib-cfg_if.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfg-if-7226893fe2365613/lib-cfg_if.json new file mode 100644 index 000000000..88a311af3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cfg-if-7226893fe2365613/lib-cfg_if.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"core\", \"rustc-dep-of-std\"]","target":13840298032947503755,"profile":15657897354478470176,"path":16464386982144128976,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cfg-if-7226893fe2365613\\dep-lib-cfg_if","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/convert_case-035968048cee4e70/dep-lib-convert_case b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/convert_case-035968048cee4e70/dep-lib-convert_case new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/convert_case-035968048cee4e70/dep-lib-convert_case differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/convert_case-035968048cee4e70/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/convert_case-035968048cee4e70/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/convert_case-035968048cee4e70/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/convert_case-035968048cee4e70/lib-convert_case b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/convert_case-035968048cee4e70/lib-convert_case new file mode 100644 index 000000000..962596b8b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/convert_case-035968048cee4e70/lib-convert_case @@ -0,0 +1 @@ +0bc59ceba385ca55 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/convert_case-035968048cee4e70/lib-convert_case.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/convert_case-035968048cee4e70/lib-convert_case.json new file mode 100644 index 000000000..05296f763 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/convert_case-035968048cee4e70/lib-convert_case.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"rand\", \"random\"]","target":13517390075341535229,"profile":2225463790103693989,"path":13721597839338650824,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\convert_case-035968048cee4e70\\dep-lib-convert_case","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-44ca8ff62cdbace0/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-44ca8ff62cdbace0/build-script-build-script-build new file mode 100644 index 000000000..d0f762ee0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-44ca8ff62cdbace0/build-script-build-script-build @@ -0,0 +1 @@ +4a1662b8f2a1dde6 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-44ca8ff62cdbace0/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-44ca8ff62cdbace0/build-script-build-script-build.json new file mode 100644 index 000000000..930a2bb16 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-44ca8ff62cdbace0/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"aes-gcm\", \"base64\", \"hkdf\", \"hmac\", \"key-expansion\", \"percent-encode\", \"percent-encoding\", \"private\", \"rand\", \"secure\", \"sha2\", \"signed\", \"subtle\"]","target":17883862002600103897,"profile":2225463790103693989,"path":10729177139379546306,"deps":[[5398981501050481332,"version_check",false,10345327415352272036]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cookie-44ca8ff62cdbace0\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-44ca8ff62cdbace0/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-44ca8ff62cdbace0/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-44ca8ff62cdbace0/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-44ca8ff62cdbace0/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-44ca8ff62cdbace0/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-44ca8ff62cdbace0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-a6e069bda79c4511/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-a6e069bda79c4511/run-build-script-build-script-build new file mode 100644 index 000000000..a10454fe2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-a6e069bda79c4511/run-build-script-build-script-build @@ -0,0 +1 @@ +4b046041d2ba8de5 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-a6e069bda79c4511/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-a6e069bda79c4511/run-build-script-build-script-build.json new file mode 100644 index 000000000..30948f711 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-a6e069bda79c4511/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[16727543399706004146,"build_script_build",false,16635630662424073802]],"local":[{"Precalculated":"0.18.1"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-eb4817247fdaa5c8/dep-lib-cookie b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-eb4817247fdaa5c8/dep-lib-cookie new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-eb4817247fdaa5c8/dep-lib-cookie differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-eb4817247fdaa5c8/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-eb4817247fdaa5c8/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-eb4817247fdaa5c8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-eb4817247fdaa5c8/lib-cookie b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-eb4817247fdaa5c8/lib-cookie new file mode 100644 index 000000000..e546dadad --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-eb4817247fdaa5c8/lib-cookie @@ -0,0 +1 @@ +5d890b4523ceb5bb \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-eb4817247fdaa5c8/lib-cookie.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-eb4817247fdaa5c8/lib-cookie.json new file mode 100644 index 000000000..a3de65fb4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cookie-eb4817247fdaa5c8/lib-cookie.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"aes-gcm\", \"base64\", \"hkdf\", \"hmac\", \"key-expansion\", \"percent-encode\", \"percent-encoding\", \"private\", \"rand\", \"secure\", \"sha2\", \"signed\", \"subtle\"]","target":678524939984925341,"profile":15657897354478470176,"path":15041482863874659232,"deps":[[11432222519274906849,"time",false,2489160497174519096],[16727543399706004146,"build_script_build",false,16541082418604409931]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cookie-eb4817247fdaa5c8\\dep-lib-cookie","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cpufeatures-82d036f4eb718261/dep-lib-cpufeatures b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cpufeatures-82d036f4eb718261/dep-lib-cpufeatures new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cpufeatures-82d036f4eb718261/dep-lib-cpufeatures differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cpufeatures-82d036f4eb718261/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cpufeatures-82d036f4eb718261/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cpufeatures-82d036f4eb718261/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cpufeatures-82d036f4eb718261/lib-cpufeatures b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cpufeatures-82d036f4eb718261/lib-cpufeatures new file mode 100644 index 000000000..4cf7f1ad4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cpufeatures-82d036f4eb718261/lib-cpufeatures @@ -0,0 +1 @@ +843c1cc294a51d23 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cpufeatures-82d036f4eb718261/lib-cpufeatures.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cpufeatures-82d036f4eb718261/lib-cpufeatures.json new file mode 100644 index 000000000..6085a636a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cpufeatures-82d036f4eb718261/lib-cpufeatures.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":2330704043955282025,"profile":2225463790103693989,"path":17292915351483326111,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cpufeatures-82d036f4eb718261\\dep-lib-cpufeatures","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-4c4750f79a5b1092/dep-lib-crc32fast b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-4c4750f79a5b1092/dep-lib-crc32fast new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-4c4750f79a5b1092/dep-lib-crc32fast differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-4c4750f79a5b1092/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-4c4750f79a5b1092/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-4c4750f79a5b1092/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-4c4750f79a5b1092/lib-crc32fast b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-4c4750f79a5b1092/lib-crc32fast new file mode 100644 index 000000000..3dbefbd58 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-4c4750f79a5b1092/lib-crc32fast @@ -0,0 +1 @@ +4731588647c18697 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-4c4750f79a5b1092/lib-crc32fast.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-4c4750f79a5b1092/lib-crc32fast.json new file mode 100644 index 000000000..895fc3da3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-4c4750f79a5b1092/lib-crc32fast.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"nightly\", \"std\"]","target":10823605331999153028,"profile":2225463790103693989,"path":2155748299401426059,"deps":[[7312356825837975969,"build_script_build",false,10728025577305860406],[7667230146095136825,"cfg_if",false,12313751931663862839]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crc32fast-4c4750f79a5b1092\\dep-lib-crc32fast","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-6701f6668ce377a8/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-6701f6668ce377a8/run-build-script-build-script-build new file mode 100644 index 000000000..59b073510 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-6701f6668ce377a8/run-build-script-build-script-build @@ -0,0 +1 @@ +36e99e4c6c9ae194 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-6701f6668ce377a8/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-6701f6668ce377a8/run-build-script-build-script-build.json new file mode 100644 index 000000000..fe8f1a715 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-6701f6668ce377a8/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[7312356825837975969,"build_script_build",false,8056387809148733805]],"local":[{"Precalculated":"1.5.0"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-c437355b07a76b54/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-c437355b07a76b54/build-script-build-script-build new file mode 100644 index 000000000..b604250e6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-c437355b07a76b54/build-script-build-script-build @@ -0,0 +1 @@ +6d091921070ace6f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-c437355b07a76b54/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-c437355b07a76b54/build-script-build-script-build.json new file mode 100644 index 000000000..d6e84a49e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-c437355b07a76b54/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"nightly\", \"std\"]","target":5408242616063297496,"profile":2225463790103693989,"path":8812746182247856871,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crc32fast-c437355b07a76b54\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-c437355b07a76b54/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-c437355b07a76b54/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-c437355b07a76b54/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-c437355b07a76b54/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-c437355b07a76b54/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crc32fast-c437355b07a76b54/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-channel-8869f8a1f61757e1/dep-lib-crossbeam_channel b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-channel-8869f8a1f61757e1/dep-lib-crossbeam_channel new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-channel-8869f8a1f61757e1/dep-lib-crossbeam_channel differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-channel-8869f8a1f61757e1/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-channel-8869f8a1f61757e1/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-channel-8869f8a1f61757e1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-channel-8869f8a1f61757e1/lib-crossbeam_channel b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-channel-8869f8a1f61757e1/lib-crossbeam_channel new file mode 100644 index 000000000..21abf5086 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-channel-8869f8a1f61757e1/lib-crossbeam_channel @@ -0,0 +1 @@ +3b30440397c5360b \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-channel-8869f8a1f61757e1/lib-crossbeam_channel.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-channel-8869f8a1f61757e1/lib-crossbeam_channel.json new file mode 100644 index 000000000..587f0d2bf --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-channel-8869f8a1f61757e1/lib-crossbeam_channel.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":12076344148867932973,"profile":8636238262651292397,"path":6960799243818640702,"deps":[[4468123440088164316,"crossbeam_utils",false,16953597010321931045]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crossbeam-channel-8869f8a1f61757e1\\dep-lib-crossbeam_channel","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-1b260fdd1f806259/dep-lib-crossbeam_utils b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-1b260fdd1f806259/dep-lib-crossbeam_utils new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-1b260fdd1f806259/dep-lib-crossbeam_utils differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-1b260fdd1f806259/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-1b260fdd1f806259/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-1b260fdd1f806259/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-1b260fdd1f806259/lib-crossbeam_utils b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-1b260fdd1f806259/lib-crossbeam_utils new file mode 100644 index 000000000..23d622f10 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-1b260fdd1f806259/lib-crossbeam_utils @@ -0,0 +1 @@ +25fb5c29a84647eb \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-1b260fdd1f806259/lib-crossbeam_utils.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-1b260fdd1f806259/lib-crossbeam_utils.json new file mode 100644 index 000000000..68560ea67 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-1b260fdd1f806259/lib-crossbeam_utils.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"std\"]","declared_features":"[\"default\", \"loom\", \"nightly\", \"std\"]","target":9626079250877207070,"profile":8636238262651292397,"path":3689029855018396828,"deps":[[4468123440088164316,"build_script_build",false,1701539098555061342]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crossbeam-utils-1b260fdd1f806259\\dep-lib-crossbeam_utils","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-3ce9954fa01125cf/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-3ce9954fa01125cf/build-script-build-script-build new file mode 100644 index 000000000..c9cc984d4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-3ce9954fa01125cf/build-script-build-script-build @@ -0,0 +1 @@ +3446648418e79792 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-3ce9954fa01125cf/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-3ce9954fa01125cf/build-script-build-script-build.json new file mode 100644 index 000000000..7214bb878 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-3ce9954fa01125cf/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"std\"]","declared_features":"[\"default\", \"loom\", \"nightly\", \"std\"]","target":5408242616063297496,"profile":3908425943115333596,"path":14751746791694645749,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crossbeam-utils-3ce9954fa01125cf\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-3ce9954fa01125cf/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-3ce9954fa01125cf/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-3ce9954fa01125cf/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-3ce9954fa01125cf/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-3ce9954fa01125cf/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-3ce9954fa01125cf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-e75a2593ac08ebbc/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-e75a2593ac08ebbc/run-build-script-build-script-build new file mode 100644 index 000000000..3fcbd926f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-e75a2593ac08ebbc/run-build-script-build-script-build @@ -0,0 +1 @@ +5e14d084cb149d17 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-e75a2593ac08ebbc/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-e75a2593ac08ebbc/run-build-script-build-script-build.json new file mode 100644 index 000000000..25cc4b30e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crossbeam-utils-e75a2593ac08ebbc/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4468123440088164316,"build_script_build",false,10563165543507183156]],"local":[{"RerunIfChanged":{"output":"debug\\build\\crossbeam-utils-e75a2593ac08ebbc\\output","paths":["no_atomic.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crypto-common-9f4d9dabc63a36a0/dep-lib-crypto_common b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crypto-common-9f4d9dabc63a36a0/dep-lib-crypto_common new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crypto-common-9f4d9dabc63a36a0/dep-lib-crypto_common differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crypto-common-9f4d9dabc63a36a0/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crypto-common-9f4d9dabc63a36a0/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crypto-common-9f4d9dabc63a36a0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crypto-common-9f4d9dabc63a36a0/lib-crypto_common b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crypto-common-9f4d9dabc63a36a0/lib-crypto_common new file mode 100644 index 000000000..30f4f84dd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crypto-common-9f4d9dabc63a36a0/lib-crypto_common @@ -0,0 +1 @@ +e54cc51d7ad53717 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crypto-common-9f4d9dabc63a36a0/lib-crypto_common.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crypto-common-9f4d9dabc63a36a0/lib-crypto_common.json new file mode 100644 index 000000000..a4688ab19 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/crypto-common-9f4d9dabc63a36a0/lib-crypto_common.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"std\"]","declared_features":"[\"getrandom\", \"rand_core\", \"std\"]","target":12082577455412410174,"profile":2225463790103693989,"path":11458945777899551182,"deps":[[857979250431893282,"typenum",false,11278803911407628113],[10520923840501062997,"generic_array",false,11315841027978874675]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\crypto-common-9f4d9dabc63a36a0\\dep-lib-crypto_common","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-980b6cfc29059708/dep-lib-cssparser b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-980b6cfc29059708/dep-lib-cssparser new file mode 100644 index 000000000..973a0b419 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-980b6cfc29059708/dep-lib-cssparser differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-980b6cfc29059708/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-980b6cfc29059708/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-980b6cfc29059708/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-980b6cfc29059708/lib-cssparser b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-980b6cfc29059708/lib-cssparser new file mode 100644 index 000000000..8c177b202 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-980b6cfc29059708/lib-cssparser @@ -0,0 +1 @@ +230842ce5f8b3241 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-980b6cfc29059708/lib-cssparser.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-980b6cfc29059708/lib-cssparser.json new file mode 100644 index 000000000..da04ce329 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-980b6cfc29059708/lib-cssparser.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"bench\", \"dummy_match_byte\", \"serde\"]","target":4051351535474248705,"profile":2225463790103693989,"path":12789065127210222909,"deps":[[45534229101170072,"matches",false,3821011761563840071],[1764276339024939380,"phf",false,14423969426170469101],[3666196340704888985,"smallvec",false,8171192460323762105],[9280804215119811138,"cssparser_macros",false,12585267392349642797],[9938278000850417404,"itoa",false,17780313112227028310],[10831620673236678515,"build_script_build",false,6373281058292483204],[12842584195496215797,"dtoa_short",false,17972793352977622364]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cssparser-980b6cfc29059708\\dep-lib-cssparser","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-afeda6e8c4222d84/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-afeda6e8c4222d84/build-script-build-script-build new file mode 100644 index 000000000..bf899dc8b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-afeda6e8c4222d84/build-script-build-script-build @@ -0,0 +1 @@ +f2ce19efae0c8eea \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-afeda6e8c4222d84/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-afeda6e8c4222d84/build-script-build-script-build.json new file mode 100644 index 000000000..7c4fe92bd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-afeda6e8c4222d84/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"bench\", \"dummy_match_byte\", \"serde\"]","target":17883862002600103897,"profile":2225463790103693989,"path":6080020337406544035,"deps":[[2713742371683562785,"syn",false,12754841406911361440],[4289358735036141001,"proc_macro2",false,3635241377792335322],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cssparser-afeda6e8c4222d84\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-afeda6e8c4222d84/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-afeda6e8c4222d84/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-afeda6e8c4222d84/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-afeda6e8c4222d84/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-afeda6e8c4222d84/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-afeda6e8c4222d84/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-e497f5113bbd47c6/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-e497f5113bbd47c6/run-build-script-build-script-build new file mode 100644 index 000000000..4a4cbcda5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-e497f5113bbd47c6/run-build-script-build-script-build @@ -0,0 +1 @@ +84c43ffd5a717258 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-e497f5113bbd47c6/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-e497f5113bbd47c6/run-build-script-build-script-build.json new file mode 100644 index 000000000..3144b16c8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-e497f5113bbd47c6/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10831620673236678515,"build_script_build",false,16901460397043338994]],"local":[{"RerunIfChanged":{"output":"debug\\build\\cssparser-e497f5113bbd47c6\\output","paths":["src/tokenizer.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-macros-c6b568098fba9a38/dep-lib-cssparser_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-macros-c6b568098fba9a38/dep-lib-cssparser_macros new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-macros-c6b568098fba9a38/dep-lib-cssparser_macros differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-macros-c6b568098fba9a38/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-macros-c6b568098fba9a38/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-macros-c6b568098fba9a38/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-macros-c6b568098fba9a38/lib-cssparser_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-macros-c6b568098fba9a38/lib-cssparser_macros new file mode 100644 index 000000000..50027ba79 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-macros-c6b568098fba9a38/lib-cssparser_macros @@ -0,0 +1 @@ +2da04e8403daa7ae \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-macros-c6b568098fba9a38/lib-cssparser_macros.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-macros-c6b568098fba9a38/lib-cssparser_macros.json new file mode 100644 index 000000000..1a7fb5dda --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/cssparser-macros-c6b568098fba9a38/lib-cssparser_macros.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":4853353551047732211,"profile":2225463790103693989,"path":9281578691504071855,"deps":[[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\cssparser-macros-c6b568098fba9a38\\dep-lib-cssparser_macros","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ctor-f7fe171a43e6e9cb/dep-lib-ctor b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ctor-f7fe171a43e6e9cb/dep-lib-ctor new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ctor-f7fe171a43e6e9cb/dep-lib-ctor differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ctor-f7fe171a43e6e9cb/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ctor-f7fe171a43e6e9cb/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ctor-f7fe171a43e6e9cb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ctor-f7fe171a43e6e9cb/lib-ctor b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ctor-f7fe171a43e6e9cb/lib-ctor new file mode 100644 index 000000000..ecdbef72a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ctor-f7fe171a43e6e9cb/lib-ctor @@ -0,0 +1 @@ +e3c2f15a83439d4f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ctor-f7fe171a43e6e9cb/lib-ctor.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ctor-f7fe171a43e6e9cb/lib-ctor.json new file mode 100644 index 000000000..4259acc9c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ctor-f7fe171a43e6e9cb/lib-ctor.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"used_linker\"]","target":16767752466166802488,"profile":2225463790103693989,"path":8999212671227282087,"deps":[[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\ctor-f7fe171a43e6e9cb\\dep-lib-ctor","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling-b5d5b4b44bc383bd/dep-lib-darling b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling-b5d5b4b44bc383bd/dep-lib-darling new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling-b5d5b4b44bc383bd/dep-lib-darling differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling-b5d5b4b44bc383bd/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling-b5d5b4b44bc383bd/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling-b5d5b4b44bc383bd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling-b5d5b4b44bc383bd/lib-darling b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling-b5d5b4b44bc383bd/lib-darling new file mode 100644 index 000000000..1b82b1550 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling-b5d5b4b44bc383bd/lib-darling @@ -0,0 +1 @@ +8b2e6767bd80045e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling-b5d5b4b44bc383bd/lib-darling.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling-b5d5b4b44bc383bd/lib-darling.json new file mode 100644 index 000000000..25bf3b698 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling-b5d5b4b44bc383bd/lib-darling.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"suggestions\"]","declared_features":"[\"default\", \"diagnostics\", \"serde\", \"suggestions\"]","target":10425393644641512883,"profile":4791074740661137825,"path":9519485483263612447,"deps":[[1697422655636439766,"darling_core",false,7338577076384492696],[14362286472516966583,"darling_macro",false,8703739007777140327]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\darling-b5d5b4b44bc383bd\\dep-lib-darling","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_core-5712e50f8b134f33/dep-lib-darling_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_core-5712e50f8b134f33/dep-lib-darling_core new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_core-5712e50f8b134f33/dep-lib-darling_core differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_core-5712e50f8b134f33/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_core-5712e50f8b134f33/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_core-5712e50f8b134f33/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_core-5712e50f8b134f33/lib-darling_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_core-5712e50f8b134f33/lib-darling_core new file mode 100644 index 000000000..8ca15c3b6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_core-5712e50f8b134f33/lib-darling_core @@ -0,0 +1 @@ +98ecb832f8dcd765 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_core-5712e50f8b134f33/lib-darling_core.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_core-5712e50f8b134f33/lib-darling_core.json new file mode 100644 index 000000000..e1174e522 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_core-5712e50f8b134f33/lib-darling_core.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"strsim\", \"suggestions\"]","declared_features":"[\"diagnostics\", \"serde\", \"strsim\", \"suggestions\"]","target":13428977600034985537,"profile":2225463790103693989,"path":1325608704516805395,"deps":[[1345404220202658316,"fnv",false,2945205396588055774],[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[11166530783118767604,"strsim",false,6452019867892516284],[13111758008314797071,"quote",false,4999842116374801128],[15383437925411509181,"ident_case",false,17405750813830663927]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\darling_core-5712e50f8b134f33\\dep-lib-darling_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_macro-95b09ce5fa2411cf/dep-lib-darling_macro b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_macro-95b09ce5fa2411cf/dep-lib-darling_macro new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_macro-95b09ce5fa2411cf/dep-lib-darling_macro differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_macro-95b09ce5fa2411cf/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_macro-95b09ce5fa2411cf/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_macro-95b09ce5fa2411cf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_macro-95b09ce5fa2411cf/lib-darling_macro b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_macro-95b09ce5fa2411cf/lib-darling_macro new file mode 100644 index 000000000..c3ac1183a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_macro-95b09ce5fa2411cf/lib-darling_macro @@ -0,0 +1 @@ +676e446083e4c978 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_macro-95b09ce5fa2411cf/lib-darling_macro.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_macro-95b09ce5fa2411cf/lib-darling_macro.json new file mode 100644 index 000000000..84f0fb4fb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/darling_macro-95b09ce5fa2411cf/lib-darling_macro.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":15692157989113707310,"profile":2225463790103693989,"path":11681716577578704717,"deps":[[1697422655636439766,"darling_core",false,7338577076384492696],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\darling_macro-95b09ce5fa2411cf\\dep-lib-darling_macro","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/deranged-0dcb45192c392cb7/dep-lib-deranged b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/deranged-0dcb45192c392cb7/dep-lib-deranged new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/deranged-0dcb45192c392cb7/dep-lib-deranged differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/deranged-0dcb45192c392cb7/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/deranged-0dcb45192c392cb7/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/deranged-0dcb45192c392cb7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/deranged-0dcb45192c392cb7/lib-deranged b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/deranged-0dcb45192c392cb7/lib-deranged new file mode 100644 index 000000000..743681ad9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/deranged-0dcb45192c392cb7/lib-deranged @@ -0,0 +1 @@ +34586afd98c6c507 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/deranged-0dcb45192c392cb7/lib-deranged.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/deranged-0dcb45192c392cb7/lib-deranged.json new file mode 100644 index 000000000..197610595 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/deranged-0dcb45192c392cb7/lib-deranged.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"powerfmt\"]","declared_features":"[\"alloc\", \"default\", \"macros\", \"num\", \"powerfmt\", \"quickcheck\", \"rand\", \"rand010\", \"rand08\", \"rand09\", \"serde\"]","target":17941053073926740948,"profile":9761327712979479520,"path":5459878784519975497,"deps":[[5901133744777009488,"powerfmt",false,17305193533652852813]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\deranged-0dcb45192c392cb7\\dep-lib-deranged","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/derive_more-af9f26635f6d6631/dep-lib-derive_more b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/derive_more-af9f26635f6d6631/dep-lib-derive_more new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/derive_more-af9f26635f6d6631/dep-lib-derive_more differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/derive_more-af9f26635f6d6631/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/derive_more-af9f26635f6d6631/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/derive_more-af9f26635f6d6631/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/derive_more-af9f26635f6d6631/lib-derive_more b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/derive_more-af9f26635f6d6631/lib-derive_more new file mode 100644 index 000000000..8d5021692 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/derive_more-af9f26635f6d6631/lib-derive_more @@ -0,0 +1 @@ +7308ee933118ef1f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/derive_more-af9f26635f6d6631/lib-derive_more.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/derive_more-af9f26635f6d6631/lib-derive_more.json new file mode 100644 index 000000000..5f1cf8950 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/derive_more-af9f26635f6d6631/lib-derive_more.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"add\", \"add_assign\", \"as_mut\", \"as_ref\", \"constructor\", \"convert_case\", \"default\", \"deref\", \"deref_mut\", \"display\", \"error\", \"from\", \"from_str\", \"index\", \"index_mut\", \"into\", \"into_iterator\", \"is_variant\", \"iterator\", \"mul\", \"mul_assign\", \"not\", \"rustc_version\", \"sum\", \"try_into\", \"unwrap\"]","declared_features":"[\"add\", \"add_assign\", \"as_mut\", \"as_ref\", \"constructor\", \"convert_case\", \"default\", \"deref\", \"deref_mut\", \"display\", \"error\", \"from\", \"from_str\", \"generate-parsing-rs\", \"index\", \"index_mut\", \"into\", \"into_iterator\", \"is_variant\", \"iterator\", \"mul\", \"mul_assign\", \"nightly\", \"not\", \"peg\", \"rustc_version\", \"sum\", \"testing-helpers\", \"track-caller\", \"try_into\", \"unwrap\"]","target":12153973509411789784,"profile":2225463790103693989,"path":4961351888686785555,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128],[14907448031486326382,"convert_case",false,6181900377598510347]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\derive_more-af9f26635f6d6631\\dep-lib-derive_more","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/digest-0e24553302cb0aca/dep-lib-digest b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/digest-0e24553302cb0aca/dep-lib-digest new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/digest-0e24553302cb0aca/dep-lib-digest differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/digest-0e24553302cb0aca/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/digest-0e24553302cb0aca/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/digest-0e24553302cb0aca/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/digest-0e24553302cb0aca/lib-digest b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/digest-0e24553302cb0aca/lib-digest new file mode 100644 index 000000000..e04727834 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/digest-0e24553302cb0aca/lib-digest @@ -0,0 +1 @@ +5290916bb1cfafa5 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/digest-0e24553302cb0aca/lib-digest.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/digest-0e24553302cb0aca/lib-digest.json new file mode 100644 index 000000000..a5d8e0c3f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/digest-0e24553302cb0aca/lib-digest.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"block-buffer\", \"core-api\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"blobby\", \"block-buffer\", \"const-oid\", \"core-api\", \"default\", \"dev\", \"mac\", \"oid\", \"rand_core\", \"std\", \"subtle\"]","target":7510122432137863311,"profile":2225463790103693989,"path":10954818345638140047,"deps":[[6039282458970808711,"crypto_common",false,1673040507053624549],[10626340395483396037,"block_buffer",false,12716231217206369502]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\digest-0e24553302cb0aca\\dep-lib-digest","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-070d8a7a3aeffe14/dep-lib-dirs b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-070d8a7a3aeffe14/dep-lib-dirs new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-070d8a7a3aeffe14/dep-lib-dirs differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-070d8a7a3aeffe14/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-070d8a7a3aeffe14/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-070d8a7a3aeffe14/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-070d8a7a3aeffe14/lib-dirs b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-070d8a7a3aeffe14/lib-dirs new file mode 100644 index 000000000..67ad46f45 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-070d8a7a3aeffe14/lib-dirs @@ -0,0 +1 @@ +b7f6a02b9fcb650b \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-070d8a7a3aeffe14/lib-dirs.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-070d8a7a3aeffe14/lib-dirs.json new file mode 100644 index 000000000..4dd1b6cd0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-070d8a7a3aeffe14/lib-dirs.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":6802227647681951183,"profile":15657897354478470176,"path":15897939677826583088,"deps":[[6123655854525485103,"dirs_sys",false,1842653400910893084]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\dirs-070d8a7a3aeffe14\\dep-lib-dirs","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-b1330060b5ea97f7/dep-lib-dirs b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-b1330060b5ea97f7/dep-lib-dirs new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-b1330060b5ea97f7/dep-lib-dirs differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-b1330060b5ea97f7/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-b1330060b5ea97f7/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-b1330060b5ea97f7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-b1330060b5ea97f7/lib-dirs b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-b1330060b5ea97f7/lib-dirs new file mode 100644 index 000000000..9cc96cbbe --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-b1330060b5ea97f7/lib-dirs @@ -0,0 +1 @@ +885bfb5179383a0f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-b1330060b5ea97f7/lib-dirs.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-b1330060b5ea97f7/lib-dirs.json new file mode 100644 index 000000000..9974a2055 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-b1330060b5ea97f7/lib-dirs.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":6802227647681951183,"profile":15657897354478470176,"path":15897939677826583088,"deps":[[6123655854525485103,"dirs_sys",false,13713813273411517645]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\dirs-b1330060b5ea97f7\\dep-lib-dirs","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-41c96d0d200ffd82/dep-lib-dirs_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-41c96d0d200ffd82/dep-lib-dirs_sys new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-41c96d0d200ffd82/dep-lib-dirs_sys differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-41c96d0d200ffd82/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-41c96d0d200ffd82/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-41c96d0d200ffd82/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-41c96d0d200ffd82/lib-dirs_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-41c96d0d200ffd82/lib-dirs_sys new file mode 100644 index 000000000..8c221c317 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-41c96d0d200ffd82/lib-dirs_sys @@ -0,0 +1 @@ +cdfcba65834051be \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-41c96d0d200ffd82/lib-dirs_sys.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-41c96d0d200ffd82/lib-dirs_sys.json new file mode 100644 index 000000000..17577a56a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-41c96d0d200ffd82/lib-dirs_sys.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":9773438591563277977,"profile":15657897354478470176,"path":2338271198370640119,"deps":[[6568467691589961976,"windows_sys",false,6428487285297176863],[9760035060063614848,"option_ext",false,16388839230622211973]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\dirs-sys-41c96d0d200ffd82\\dep-lib-dirs_sys","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-92f193f9f996bc19/dep-lib-dirs_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-92f193f9f996bc19/dep-lib-dirs_sys new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-92f193f9f996bc19/dep-lib-dirs_sys differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-92f193f9f996bc19/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-92f193f9f996bc19/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-92f193f9f996bc19/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-92f193f9f996bc19/lib-dirs_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-92f193f9f996bc19/lib-dirs_sys new file mode 100644 index 000000000..3df72bce2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-92f193f9f996bc19/lib-dirs_sys @@ -0,0 +1 @@ +1c90755d816b9219 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-92f193f9f996bc19/lib-dirs_sys.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-92f193f9f996bc19/lib-dirs_sys.json new file mode 100644 index 000000000..8d6d5519e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dirs-sys-92f193f9f996bc19/lib-dirs_sys.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":9773438591563277977,"profile":15657897354478470176,"path":2338271198370640119,"deps":[[6568467691589961976,"windows_sys",false,5124779585545402889],[9760035060063614848,"option_ext",false,16388839230622211973]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\dirs-sys-92f193f9f996bc19\\dep-lib-dirs_sys","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/displaydoc-d484a9ef47c52f5b/dep-lib-displaydoc b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/displaydoc-d484a9ef47c52f5b/dep-lib-displaydoc new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/displaydoc-d484a9ef47c52f5b/dep-lib-displaydoc differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/displaydoc-d484a9ef47c52f5b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/displaydoc-d484a9ef47c52f5b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/displaydoc-d484a9ef47c52f5b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/displaydoc-d484a9ef47c52f5b/lib-displaydoc b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/displaydoc-d484a9ef47c52f5b/lib-displaydoc new file mode 100644 index 000000000..e9a16826b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/displaydoc-d484a9ef47c52f5b/lib-displaydoc @@ -0,0 +1 @@ +8ee1e10a6e91968e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/displaydoc-d484a9ef47c52f5b/lib-displaydoc.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/displaydoc-d484a9ef47c52f5b/lib-displaydoc.json new file mode 100644 index 000000000..691953692 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/displaydoc-d484a9ef47c52f5b/lib-displaydoc.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"default\", \"std\"]","target":9331843185013996172,"profile":2225463790103693989,"path":7714046709733403513,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\displaydoc-d484a9ef47c52f5b\\dep-lib-displaydoc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dpi-f1778a9d4d9bf94a/dep-lib-dpi b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dpi-f1778a9d4d9bf94a/dep-lib-dpi new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dpi-f1778a9d4d9bf94a/dep-lib-dpi differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dpi-f1778a9d4d9bf94a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dpi-f1778a9d4d9bf94a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dpi-f1778a9d4d9bf94a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dpi-f1778a9d4d9bf94a/lib-dpi b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dpi-f1778a9d4d9bf94a/lib-dpi new file mode 100644 index 000000000..51123e13b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dpi-f1778a9d4d9bf94a/lib-dpi @@ -0,0 +1 @@ +0ff2f231b073ee81 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dpi-f1778a9d4d9bf94a/lib-dpi.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dpi-f1778a9d4d9bf94a/lib-dpi.json new file mode 100644 index 000000000..2ac9e509f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dpi-f1778a9d4d9bf94a/lib-dpi.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"serde\", \"std\"]","declared_features":"[\"default\", \"mint\", \"serde\", \"std\"]","target":10066979630842813754,"profile":15657897354478470176,"path":3935778839655734172,"deps":[[13548984313718623784,"serde",false,9531788703992814231]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\dpi-f1778a9d4d9bf94a\\dep-lib-dpi","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-a185bfae7e7afe1d/dep-lib-dtoa b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-a185bfae7e7afe1d/dep-lib-dtoa new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-a185bfae7e7afe1d/dep-lib-dtoa differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-a185bfae7e7afe1d/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-a185bfae7e7afe1d/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-a185bfae7e7afe1d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-a185bfae7e7afe1d/lib-dtoa b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-a185bfae7e7afe1d/lib-dtoa new file mode 100644 index 000000000..e45a4f049 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-a185bfae7e7afe1d/lib-dtoa @@ -0,0 +1 @@ +23dc717be6433513 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-a185bfae7e7afe1d/lib-dtoa.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-a185bfae7e7afe1d/lib-dtoa.json new file mode 100644 index 000000000..92c48e879 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-a185bfae7e7afe1d/lib-dtoa.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"no-panic\"]","target":14302215980248354484,"profile":2225463790103693989,"path":16107846793117814281,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\dtoa-a185bfae7e7afe1d\\dep-lib-dtoa","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-short-e46b7df227f2cbce/dep-lib-dtoa_short b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-short-e46b7df227f2cbce/dep-lib-dtoa_short new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-short-e46b7df227f2cbce/dep-lib-dtoa_short differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-short-e46b7df227f2cbce/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-short-e46b7df227f2cbce/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-short-e46b7df227f2cbce/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-short-e46b7df227f2cbce/lib-dtoa_short b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-short-e46b7df227f2cbce/lib-dtoa_short new file mode 100644 index 000000000..b93c6f904 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-short-e46b7df227f2cbce/lib-dtoa_short @@ -0,0 +1 @@ +5ca5bba154306cf9 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-short-e46b7df227f2cbce/lib-dtoa_short.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-short-e46b7df227f2cbce/lib-dtoa_short.json new file mode 100644 index 000000000..c9f1bc26b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dtoa-short-e46b7df227f2cbce/lib-dtoa_short.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":14166870648037865358,"profile":2225463790103693989,"path":1638570205624777054,"deps":[[10942014875894166470,"dtoa",false,1384087117678894115]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\dtoa-short-e46b7df227f2cbce\\dep-lib-dtoa_short","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dunce-159a7362118e6ea2/dep-lib-dunce b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dunce-159a7362118e6ea2/dep-lib-dunce new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dunce-159a7362118e6ea2/dep-lib-dunce differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dunce-159a7362118e6ea2/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dunce-159a7362118e6ea2/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dunce-159a7362118e6ea2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dunce-159a7362118e6ea2/lib-dunce b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dunce-159a7362118e6ea2/lib-dunce new file mode 100644 index 000000000..0cd53a23f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dunce-159a7362118e6ea2/lib-dunce @@ -0,0 +1 @@ +0400ffa001aaacfd \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dunce-159a7362118e6ea2/lib-dunce.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dunce-159a7362118e6ea2/lib-dunce.json new file mode 100644 index 000000000..efab92db6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dunce-159a7362118e6ea2/lib-dunce.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":2507403751003635712,"profile":15657897354478470176,"path":7808304346154558286,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\dunce-159a7362118e6ea2\\dep-lib-dunce","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dyn-clone-5d1944447d659ce1/dep-lib-dyn_clone b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dyn-clone-5d1944447d659ce1/dep-lib-dyn_clone new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dyn-clone-5d1944447d659ce1/dep-lib-dyn_clone differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dyn-clone-5d1944447d659ce1/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dyn-clone-5d1944447d659ce1/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dyn-clone-5d1944447d659ce1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dyn-clone-5d1944447d659ce1/lib-dyn_clone b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dyn-clone-5d1944447d659ce1/lib-dyn_clone new file mode 100644 index 000000000..d9f4a77e5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dyn-clone-5d1944447d659ce1/lib-dyn_clone @@ -0,0 +1 @@ +b9e0ccf21a63d981 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dyn-clone-5d1944447d659ce1/lib-dyn_clone.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dyn-clone-5d1944447d659ce1/lib-dyn_clone.json new file mode 100644 index 000000000..4902138d4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/dyn-clone-5d1944447d659ce1/lib-dyn_clone.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":17344333285707581866,"profile":2225463790103693989,"path":11317294847419573351,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\dyn-clone-5d1944447d659ce1\\dep-lib-dyn_clone","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/embed-resource-edb483bb12c26ed9/dep-lib-embed_resource b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/embed-resource-edb483bb12c26ed9/dep-lib-embed_resource new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/embed-resource-edb483bb12c26ed9/dep-lib-embed_resource differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/embed-resource-edb483bb12c26ed9/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/embed-resource-edb483bb12c26ed9/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/embed-resource-edb483bb12c26ed9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/embed-resource-edb483bb12c26ed9/lib-embed_resource b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/embed-resource-edb483bb12c26ed9/lib-embed_resource new file mode 100644 index 000000000..452459fef --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/embed-resource-edb483bb12c26ed9/lib-embed_resource @@ -0,0 +1 @@ +d005effcdeb677c2 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/embed-resource-edb483bb12c26ed9/lib-embed_resource.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/embed-resource-edb483bb12c26ed9/lib-embed_resource.json new file mode 100644 index 000000000..c1102f1ea --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/embed-resource-edb483bb12c26ed9/lib-embed_resource.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":14111979058670728083,"profile":2225463790103693989,"path":11568394484672789861,"deps":[[8576480473721236041,"rustc_version",false,1849697247885192029],[9981922986456265935,"vswhom",false,8551865454534683336],[12176723955989927267,"toml",false,4732353750388681305],[14836725263356672040,"cc",false,1849881604817589468],[17735803425544754276,"winreg",false,6908066179975650892]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\embed-resource-edb483bb12c26ed9\\dep-lib-embed_resource","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/equivalent-7dd4e691ab3179e6/dep-lib-equivalent b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/equivalent-7dd4e691ab3179e6/dep-lib-equivalent new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/equivalent-7dd4e691ab3179e6/dep-lib-equivalent differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/equivalent-7dd4e691ab3179e6/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/equivalent-7dd4e691ab3179e6/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/equivalent-7dd4e691ab3179e6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/equivalent-7dd4e691ab3179e6/lib-equivalent b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/equivalent-7dd4e691ab3179e6/lib-equivalent new file mode 100644 index 000000000..2c8b0dae4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/equivalent-7dd4e691ab3179e6/lib-equivalent @@ -0,0 +1 @@ +9ce6a23909edac7e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/equivalent-7dd4e691ab3179e6/lib-equivalent.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/equivalent-7dd4e691ab3179e6/lib-equivalent.json new file mode 100644 index 000000000..cee335e37 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/equivalent-7dd4e691ab3179e6/lib-equivalent.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":1524667692659508025,"profile":2225463790103693989,"path":8635092689106520669,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\equivalent-7dd4e691ab3179e6\\dep-lib-equivalent","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-46a82444d4cbd3d3/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-46a82444d4cbd3d3/build-script-build-script-build new file mode 100644 index 000000000..5f842e65e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-46a82444d4cbd3d3/build-script-build-script-build @@ -0,0 +1 @@ +1a95a02e46a95863 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-46a82444d4cbd3d3/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-46a82444d4cbd3d3/build-script-build-script-build.json new file mode 100644 index 000000000..c62513991 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-46a82444d4cbd3d3/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\"]","declared_features":"[\"alloc\", \"default\", \"std\", \"unstable-debug\"]","target":5408242616063297496,"profile":2225463790103693989,"path":6129040527197582050,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\erased-serde-46a82444d4cbd3d3\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-46a82444d4cbd3d3/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-46a82444d4cbd3d3/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-46a82444d4cbd3d3/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-46a82444d4cbd3d3/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-46a82444d4cbd3d3/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-46a82444d4cbd3d3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-bbae3a99ea3884f3/dep-lib-erased_serde b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-bbae3a99ea3884f3/dep-lib-erased_serde new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-bbae3a99ea3884f3/dep-lib-erased_serde differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-bbae3a99ea3884f3/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-bbae3a99ea3884f3/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-bbae3a99ea3884f3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-bbae3a99ea3884f3/lib-erased_serde b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-bbae3a99ea3884f3/lib-erased_serde new file mode 100644 index 000000000..6a45e1f3f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-bbae3a99ea3884f3/lib-erased_serde @@ -0,0 +1 @@ +674abe8ee0a31853 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-bbae3a99ea3884f3/lib-erased_serde.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-bbae3a99ea3884f3/lib-erased_serde.json new file mode 100644 index 000000000..6f6cc95dc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-bbae3a99ea3884f3/lib-erased_serde.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\"]","declared_features":"[\"alloc\", \"default\", \"std\", \"unstable-debug\"]","target":14999988388263848338,"profile":15657897354478470176,"path":3346376486573179326,"deps":[[8520300126860023267,"build_script_build",false,4729136602322128399],[11899261697793765154,"serde_core",false,6500342841086748373],[15068722234341947584,"typeid",false,13778317046250746840]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\erased-serde-bbae3a99ea3884f3\\dep-lib-erased_serde","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-c2e28b33606b9987/dep-lib-erased_serde b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-c2e28b33606b9987/dep-lib-erased_serde new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-c2e28b33606b9987/dep-lib-erased_serde differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-c2e28b33606b9987/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-c2e28b33606b9987/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-c2e28b33606b9987/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-c2e28b33606b9987/lib-erased_serde b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-c2e28b33606b9987/lib-erased_serde new file mode 100644 index 000000000..32f20ebe0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-c2e28b33606b9987/lib-erased_serde @@ -0,0 +1 @@ +383974a9842ebc75 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-c2e28b33606b9987/lib-erased_serde.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-c2e28b33606b9987/lib-erased_serde.json new file mode 100644 index 000000000..17b176005 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-c2e28b33606b9987/lib-erased_serde.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\"]","declared_features":"[\"alloc\", \"default\", \"std\", \"unstable-debug\"]","target":14999988388263848338,"profile":15657897354478470176,"path":3346376486573179326,"deps":[[8520300126860023267,"build_script_build",false,4729136602322128399],[11899261697793765154,"serde_core",false,3505665340476166092],[15068722234341947584,"typeid",false,13778317046250746840]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\erased-serde-c2e28b33606b9987\\dep-lib-erased_serde","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-e39d25092e462e92/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-e39d25092e462e92/run-build-script-build-script-build new file mode 100644 index 000000000..7bcba13dd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-e39d25092e462e92/run-build-script-build-script-build @@ -0,0 +1 @@ +0f4eb50baf44a141 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-e39d25092e462e92/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-e39d25092e462e92/run-build-script-build-script-build.json new file mode 100644 index 000000000..59aad3cab --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/erased-serde-e39d25092e462e92/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8520300126860023267,"build_script_build",false,7158657726600484122]],"local":[{"RerunIfChanged":{"output":"debug\\build\\erased-serde-e39d25092e462e92\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fdeflate-f4155a498e14e160/dep-lib-fdeflate b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fdeflate-f4155a498e14e160/dep-lib-fdeflate new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fdeflate-f4155a498e14e160/dep-lib-fdeflate differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fdeflate-f4155a498e14e160/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fdeflate-f4155a498e14e160/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fdeflate-f4155a498e14e160/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fdeflate-f4155a498e14e160/lib-fdeflate b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fdeflate-f4155a498e14e160/lib-fdeflate new file mode 100644 index 000000000..2d0c92257 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fdeflate-f4155a498e14e160/lib-fdeflate @@ -0,0 +1 @@ +45848e4988ba2dd7 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fdeflate-f4155a498e14e160/lib-fdeflate.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fdeflate-f4155a498e14e160/lib-fdeflate.json new file mode 100644 index 000000000..3571609bf --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fdeflate-f4155a498e14e160/lib-fdeflate.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":4671662198888697476,"profile":6973633019254052193,"path":18284998200588868097,"deps":[[5982862185909702272,"simd_adler32",false,7505669921866377910]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\fdeflate-f4155a498e14e160\\dep-lib-fdeflate","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/find-msvc-tools-f5a9545e3976137a/dep-lib-find_msvc_tools b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/find-msvc-tools-f5a9545e3976137a/dep-lib-find_msvc_tools new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/find-msvc-tools-f5a9545e3976137a/dep-lib-find_msvc_tools differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/find-msvc-tools-f5a9545e3976137a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/find-msvc-tools-f5a9545e3976137a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/find-msvc-tools-f5a9545e3976137a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/find-msvc-tools-f5a9545e3976137a/lib-find_msvc_tools b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/find-msvc-tools-f5a9545e3976137a/lib-find_msvc_tools new file mode 100644 index 000000000..0624c8941 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/find-msvc-tools-f5a9545e3976137a/lib-find_msvc_tools @@ -0,0 +1 @@ +8c83c1d16e851585 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/find-msvc-tools-f5a9545e3976137a/lib-find_msvc_tools.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/find-msvc-tools-f5a9545e3976137a/lib-find_msvc_tools.json new file mode 100644 index 000000000..860411411 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/find-msvc-tools-f5a9545e3976137a/lib-find_msvc_tools.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":10620166500288925791,"profile":4333757155065362140,"path":892868053974660596,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\find-msvc-tools-f5a9545e3976137a\\dep-lib-find_msvc_tools","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/flate2-a21770a29fc821a1/dep-lib-flate2 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/flate2-a21770a29fc821a1/dep-lib-flate2 new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/flate2-a21770a29fc821a1/dep-lib-flate2 differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/flate2-a21770a29fc821a1/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/flate2-a21770a29fc821a1/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/flate2-a21770a29fc821a1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/flate2-a21770a29fc821a1/lib-flate2 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/flate2-a21770a29fc821a1/lib-flate2 new file mode 100644 index 000000000..3111a5cf7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/flate2-a21770a29fc821a1/lib-flate2 @@ -0,0 +1 @@ +26baae8b91ec9e2c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/flate2-a21770a29fc821a1/lib-flate2.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/flate2-a21770a29fc821a1/lib-flate2.json new file mode 100644 index 000000000..519927044 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/flate2-a21770a29fc821a1/lib-flate2.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"any_impl\", \"default\", \"miniz_oxide\", \"rust_backend\"]","declared_features":"[\"any_c_zlib\", \"any_impl\", \"any_zlib\", \"cloudflare-zlib-sys\", \"cloudflare_zlib\", \"default\", \"document-features\", \"libz-ng-sys\", \"libz-sys\", \"miniz-sys\", \"miniz_oxide\", \"rust_backend\", \"zlib\", \"zlib-default\", \"zlib-ng\", \"zlib-ng-compat\", \"zlib-rs\"]","target":6173716359330453699,"profile":2225463790103693989,"path":4343741356395814802,"deps":[[7312356825837975969,"crc32fast",false,10918626859547111751],[7636735136738807108,"miniz_oxide",false,13424351584781913893]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\flate2-a21770a29fc821a1\\dep-lib-flate2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fnv-d5274118abedafab/dep-lib-fnv b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fnv-d5274118abedafab/dep-lib-fnv new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fnv-d5274118abedafab/dep-lib-fnv differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fnv-d5274118abedafab/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fnv-d5274118abedafab/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fnv-d5274118abedafab/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fnv-d5274118abedafab/lib-fnv b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fnv-d5274118abedafab/lib-fnv new file mode 100644 index 000000000..0f7a6153e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fnv-d5274118abedafab/lib-fnv @@ -0,0 +1 @@ +decc312eb478df28 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fnv-d5274118abedafab/lib-fnv.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fnv-d5274118abedafab/lib-fnv.json new file mode 100644 index 000000000..a9143778f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fnv-d5274118abedafab/lib-fnv.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":10248144769085601448,"profile":15657897354478470176,"path":16776880245980726290,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\fnv-d5274118abedafab\\dep-lib-fnv","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e3d19cc1edc98450/dep-lib-form_urlencoded b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e3d19cc1edc98450/dep-lib-form_urlencoded new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e3d19cc1edc98450/dep-lib-form_urlencoded differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e3d19cc1edc98450/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e3d19cc1edc98450/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e3d19cc1edc98450/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e3d19cc1edc98450/lib-form_urlencoded b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e3d19cc1edc98450/lib-form_urlencoded new file mode 100644 index 000000000..e8132c913 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e3d19cc1edc98450/lib-form_urlencoded @@ -0,0 +1 @@ +6b7d5556dd49f5f4 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e3d19cc1edc98450/lib-form_urlencoded.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e3d19cc1edc98450/lib-form_urlencoded.json new file mode 100644 index 000000000..465c5a1c5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e3d19cc1edc98450/lib-form_urlencoded.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":6496257856677244489,"profile":15657897354478470176,"path":15410820235589774652,"deps":[[6803352382179706244,"percent_encoding",false,18098348866792261601]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\form_urlencoded-e3d19cc1edc98450\\dep-lib-form_urlencoded","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e85c07eae8e603ca/dep-lib-form_urlencoded b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e85c07eae8e603ca/dep-lib-form_urlencoded new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e85c07eae8e603ca/dep-lib-form_urlencoded differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e85c07eae8e603ca/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e85c07eae8e603ca/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e85c07eae8e603ca/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e85c07eae8e603ca/lib-form_urlencoded b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e85c07eae8e603ca/lib-form_urlencoded new file mode 100644 index 000000000..cbd22f599 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e85c07eae8e603ca/lib-form_urlencoded @@ -0,0 +1 @@ +07b76af2bc554aeb \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e85c07eae8e603ca/lib-form_urlencoded.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e85c07eae8e603ca/lib-form_urlencoded.json new file mode 100644 index 000000000..8beb88457 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/form_urlencoded-e85c07eae8e603ca/lib-form_urlencoded.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":6496257856677244489,"profile":15657897354478470176,"path":15410820235589774652,"deps":[[6803352382179706244,"percent_encoding",false,15065768539436337797]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\form_urlencoded-e85c07eae8e603ca\\dep-lib-form_urlencoded","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/futf-7e82e43822a17710/dep-lib-futf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/futf-7e82e43822a17710/dep-lib-futf new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/futf-7e82e43822a17710/dep-lib-futf differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/futf-7e82e43822a17710/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/futf-7e82e43822a17710/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/futf-7e82e43822a17710/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/futf-7e82e43822a17710/lib-futf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/futf-7e82e43822a17710/lib-futf new file mode 100644 index 000000000..ba526a08a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/futf-7e82e43822a17710/lib-futf @@ -0,0 +1 @@ +283bebe7941fed86 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/futf-7e82e43822a17710/lib-futf.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/futf-7e82e43822a17710/lib-futf.json new file mode 100644 index 000000000..9a55f3545 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/futf-7e82e43822a17710/lib-futf.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":14342764474404802961,"profile":2225463790103693989,"path":1147279756354465005,"deps":[[2687729594444538932,"debug_unreachable",false,13329182379542666326],[10952224881603935644,"mac",false,1209686851167187827]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\futf-7e82e43822a17710\\dep-lib-futf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fxhash-30b5fc284083174a/dep-lib-fxhash b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fxhash-30b5fc284083174a/dep-lib-fxhash new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fxhash-30b5fc284083174a/dep-lib-fxhash differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fxhash-30b5fc284083174a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fxhash-30b5fc284083174a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fxhash-30b5fc284083174a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fxhash-30b5fc284083174a/lib-fxhash b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fxhash-30b5fc284083174a/lib-fxhash new file mode 100644 index 000000000..914ef9eeb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fxhash-30b5fc284083174a/lib-fxhash @@ -0,0 +1 @@ +af8cb7f915f1e4f4 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fxhash-30b5fc284083174a/lib-fxhash.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fxhash-30b5fc284083174a/lib-fxhash.json new file mode 100644 index 000000000..d7ff01c4b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/fxhash-30b5fc284083174a/lib-fxhash.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":10973188114720300281,"profile":2225463790103693989,"path":15709301570310231198,"deps":[[3712811570531045576,"byteorder",false,2615234728112950181]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\fxhash-30b5fc284083174a\\dep-lib-fxhash","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-0e03c6f3ce2252d0/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-0e03c6f3ce2252d0/build-script-build-script-build new file mode 100644 index 000000000..b3c81d65a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-0e03c6f3ce2252d0/build-script-build-script-build @@ -0,0 +1 @@ +5abe56b3b3986e58 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-0e03c6f3ce2252d0/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-0e03c6f3ce2252d0/build-script-build-script-build.json new file mode 100644 index 000000000..930a953c4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-0e03c6f3ce2252d0/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"more_lengths\"]","declared_features":"[\"more_lengths\", \"serde\", \"zeroize\"]","target":12318548087768197662,"profile":2225463790103693989,"path":2872668842091599455,"deps":[[5398981501050481332,"version_check",false,10345327415352272036]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\generic-array-0e03c6f3ce2252d0\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-0e03c6f3ce2252d0/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-0e03c6f3ce2252d0/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-0e03c6f3ce2252d0/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-0e03c6f3ce2252d0/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-0e03c6f3ce2252d0/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-0e03c6f3ce2252d0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-9ebd65b7974bcdda/dep-lib-generic_array b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-9ebd65b7974bcdda/dep-lib-generic_array new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-9ebd65b7974bcdda/dep-lib-generic_array differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-9ebd65b7974bcdda/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-9ebd65b7974bcdda/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-9ebd65b7974bcdda/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-9ebd65b7974bcdda/lib-generic_array b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-9ebd65b7974bcdda/lib-generic_array new file mode 100644 index 000000000..8b8c62097 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-9ebd65b7974bcdda/lib-generic_array @@ -0,0 +1 @@ +33cf780776f1099d \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-9ebd65b7974bcdda/lib-generic_array.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-9ebd65b7974bcdda/lib-generic_array.json new file mode 100644 index 000000000..fdd2f8f01 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-9ebd65b7974bcdda/lib-generic_array.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"more_lengths\"]","declared_features":"[\"more_lengths\", \"serde\", \"zeroize\"]","target":13084005262763373425,"profile":2225463790103693989,"path":1012630623292278667,"deps":[[857979250431893282,"typenum",false,11278803911407628113],[10520923840501062997,"build_script_build",false,12671147131672693200]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\generic-array-9ebd65b7974bcdda\\dep-lib-generic_array","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-ebdfc219487b238c/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-ebdfc219487b238c/run-build-script-build-script-build new file mode 100644 index 000000000..b3e438e71 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-ebdfc219487b238c/run-build-script-build-script-build @@ -0,0 +1 @@ +d0890f802ef5d8af \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-ebdfc219487b238c/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-ebdfc219487b238c/run-build-script-build-script-build.json new file mode 100644 index 000000000..7459f95cb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/generic-array-ebdfc219487b238c/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10520923840501062997,"build_script_build",false,6372198420351204954]],"local":[{"Precalculated":"0.14.7"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-20b8fa8559b0154e/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-20b8fa8559b0154e/run-build-script-build-script-build new file mode 100644 index 000000000..3df1ad306 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-20b8fa8559b0154e/run-build-script-build-script-build @@ -0,0 +1 @@ +d843a38bc28080ba \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-20b8fa8559b0154e/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-20b8fa8559b0154e/run-build-script-build-script-build.json new file mode 100644 index 000000000..bb4d1033b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-20b8fa8559b0154e/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[18408407127522236545,"build_script_build",false,165729305608798783]],"local":[{"RerunIfChanged":{"output":"debug\\build\\getrandom-20b8fa8559b0154e\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-64cd45fed0e6db61/dep-lib-getrandom b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-64cd45fed0e6db61/dep-lib-getrandom new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-64cd45fed0e6db61/dep-lib-getrandom differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-64cd45fed0e6db61/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-64cd45fed0e6db61/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-64cd45fed0e6db61/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-64cd45fed0e6db61/lib-getrandom b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-64cd45fed0e6db61/lib-getrandom new file mode 100644 index 000000000..8e734b28a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-64cd45fed0e6db61/lib-getrandom @@ -0,0 +1 @@ +f11d60066061eef3 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-64cd45fed0e6db61/lib-getrandom.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-64cd45fed0e6db61/lib-getrandom.json new file mode 100644 index 000000000..ead758871 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-64cd45fed0e6db61/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"std\", \"wasm_js\"]","target":11669924403970522481,"profile":3904287305289339153,"path":9364924040779995411,"deps":[[7667230146095136825,"cfg_if",false,12313751931663862839],[18408407127522236545,"build_script_build",false,13438882861128303576]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\getrandom-64cd45fed0e6db61\\dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-6c3e784948b3c6a4/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-6c3e784948b3c6a4/build-script-build-script-build new file mode 100644 index 000000000..3be67e44e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-6c3e784948b3c6a4/build-script-build-script-build @@ -0,0 +1 @@ +045d5b56ef2d372a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-6c3e784948b3c6a4/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-6c3e784948b3c6a4/build-script-build-script-build.json new file mode 100644 index 000000000..4539d546f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-6c3e784948b3c6a4/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"std\", \"sys_rng\", \"wasm_js\"]","target":2835126046236718539,"profile":14646319430865968450,"path":16904540577121880121,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\getrandom-6c3e784948b3c6a4\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-6c3e784948b3c6a4/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-6c3e784948b3c6a4/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-6c3e784948b3c6a4/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-6c3e784948b3c6a4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-6c3e784948b3c6a4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-6c3e784948b3c6a4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-967949d2a0cea403/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-967949d2a0cea403/run-build-script-build-script-build new file mode 100644 index 000000000..73728f9e5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-967949d2a0cea403/run-build-script-build-script-build @@ -0,0 +1 @@ +e6ace6da56d54c91 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-967949d2a0cea403/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-967949d2a0cea403/run-build-script-build-script-build.json new file mode 100644 index 000000000..d9ae068f6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-967949d2a0cea403/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6509165896255665847,"build_script_build",false,3041950579281321220]],"local":[{"RerunIfChanged":{"output":"debug\\build\\getrandom-967949d2a0cea403\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b15d50cb13538f48/dep-lib-getrandom b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b15d50cb13538f48/dep-lib-getrandom new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b15d50cb13538f48/dep-lib-getrandom differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b15d50cb13538f48/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b15d50cb13538f48/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b15d50cb13538f48/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b15d50cb13538f48/lib-getrandom b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b15d50cb13538f48/lib-getrandom new file mode 100644 index 000000000..2f256aba6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b15d50cb13538f48/lib-getrandom @@ -0,0 +1 @@ +76a71eab1f0b5686 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b15d50cb13538f48/lib-getrandom.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b15d50cb13538f48/lib-getrandom.json new file mode 100644 index 000000000..2df3b0b6f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b15d50cb13538f48/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"std\"]","declared_features":"[\"bindgen\", \"compiler_builtins\", \"core\", \"dummy\", \"js-sys\", \"log\", \"rustc-dep-of-std\", \"std\", \"stdweb\", \"test-in-browser\", \"wasm-bindgen\"]","target":3140061874755240240,"profile":2225463790103693989,"path":4450910018489909703,"deps":[[5170503507811329045,"build_script_build",false,10704827106865368319],[7667230146095136825,"cfg_if",false,12313751931663862839]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\getrandom-b15d50cb13538f48\\dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b1849ce219f50d7b/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b1849ce219f50d7b/build-script-build-script-build new file mode 100644 index 000000000..12d3c9a66 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b1849ce219f50d7b/build-script-build-script-build @@ -0,0 +1 @@ +3f42afe5ecc94c02 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b1849ce219f50d7b/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b1849ce219f50d7b/build-script-build-script-build.json new file mode 100644 index 000000000..532905d12 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b1849ce219f50d7b/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"std\", \"wasm_js\"]","target":5408242616063297496,"profile":9077819541049765386,"path":15474040690586251690,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\getrandom-b1849ce219f50d7b\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b1849ce219f50d7b/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b1849ce219f50d7b/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b1849ce219f50d7b/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b1849ce219f50d7b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b1849ce219f50d7b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-b1849ce219f50d7b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-bed93ffdcf09c929/dep-lib-getrandom b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-bed93ffdcf09c929/dep-lib-getrandom new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-bed93ffdcf09c929/dep-lib-getrandom differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-bed93ffdcf09c929/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-bed93ffdcf09c929/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-bed93ffdcf09c929/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-bed93ffdcf09c929/lib-getrandom b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-bed93ffdcf09c929/lib-getrandom new file mode 100644 index 000000000..a14d24898 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-bed93ffdcf09c929/lib-getrandom @@ -0,0 +1 @@ +260de079b8d72dd3 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-bed93ffdcf09c929/lib-getrandom.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-bed93ffdcf09c929/lib-getrandom.json new file mode 100644 index 000000000..469cf9990 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-bed93ffdcf09c929/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"std\", \"sys_rng\", \"wasm_js\"]","target":5479159445871601843,"profile":14646319430865968450,"path":2321222170564088928,"deps":[[6509165896255665847,"build_script_build",false,10469977802746014950],[7667230146095136825,"cfg_if",false,12313751931663862839]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\getrandom-bed93ffdcf09c929\\dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-cd5359f72234e5cd/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-cd5359f72234e5cd/build-script-build-script-build new file mode 100644 index 000000000..65ab64dc7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-cd5359f72234e5cd/build-script-build-script-build @@ -0,0 +1 @@ +8111d03a01d8f8d3 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-cd5359f72234e5cd/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-cd5359f72234e5cd/build-script-build-script-build.json new file mode 100644 index 000000000..94a9428dc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-cd5359f72234e5cd/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"std\"]","declared_features":"[\"bindgen\", \"compiler_builtins\", \"core\", \"dummy\", \"js-sys\", \"log\", \"rustc-dep-of-std\", \"std\", \"stdweb\", \"test-in-browser\", \"wasm-bindgen\"]","target":17883862002600103897,"profile":2225463790103693989,"path":10002845182715146444,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\getrandom-cd5359f72234e5cd\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-cd5359f72234e5cd/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-cd5359f72234e5cd/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-cd5359f72234e5cd/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-cd5359f72234e5cd/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-cd5359f72234e5cd/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-cd5359f72234e5cd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ce12817185bbbddb/dep-lib-getrandom b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ce12817185bbbddb/dep-lib-getrandom new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ce12817185bbbddb/dep-lib-getrandom differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ce12817185bbbddb/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ce12817185bbbddb/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ce12817185bbbddb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ce12817185bbbddb/lib-getrandom b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ce12817185bbbddb/lib-getrandom new file mode 100644 index 000000000..2942dcb4c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ce12817185bbbddb/lib-getrandom @@ -0,0 +1 @@ +2f7ddba3d59cfaa8 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ce12817185bbbddb/lib-getrandom.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ce12817185bbbddb/lib-getrandom.json new file mode 100644 index 000000000..b3e7792ed --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ce12817185bbbddb/lib-getrandom.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"std\"]","declared_features":"[\"compiler_builtins\", \"core\", \"custom\", \"js\", \"js-sys\", \"linux_disable_fallback\", \"rdrand\", \"rustc-dep-of-std\", \"std\", \"test-in-browser\", \"wasm-bindgen\"]","target":16244099637825074703,"profile":2225463790103693989,"path":4326966442026867947,"deps":[[7667230146095136825,"cfg_if",false,12313751931663862839]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\getrandom-ce12817185bbbddb\\dep-lib-getrandom","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ec80af7a8963a5e9/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ec80af7a8963a5e9/run-build-script-build-script-build new file mode 100644 index 000000000..09fc9a1dd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ec80af7a8963a5e9/run-build-script-build-script-build @@ -0,0 +1 @@ +ffccae7e892f8f94 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ec80af7a8963a5e9/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ec80af7a8963a5e9/run-build-script-build-script-build.json new file mode 100644 index 000000000..286157ad7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/getrandom-ec80af7a8963a5e9/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5170503507811329045,"build_script_build",false,15274195636020318593]],"local":[{"Precalculated":"0.1.16"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/glob-7deb78695cb430e8/dep-lib-glob b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/glob-7deb78695cb430e8/dep-lib-glob new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/glob-7deb78695cb430e8/dep-lib-glob differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/glob-7deb78695cb430e8/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/glob-7deb78695cb430e8/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/glob-7deb78695cb430e8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/glob-7deb78695cb430e8/lib-glob b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/glob-7deb78695cb430e8/lib-glob new file mode 100644 index 000000000..268a9d89b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/glob-7deb78695cb430e8/lib-glob @@ -0,0 +1 @@ +d58e075418bf7643 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/glob-7deb78695cb430e8/lib-glob.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/glob-7deb78695cb430e8/lib-glob.json new file mode 100644 index 000000000..240ea11c8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/glob-7deb78695cb430e8/lib-glob.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":205079002303639128,"profile":15657897354478470176,"path":3550929320333387131,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\glob-7deb78695cb430e8\\dep-lib-glob","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-414d58f220eaf8d7/dep-lib-hashbrown b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-414d58f220eaf8d7/dep-lib-hashbrown new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-414d58f220eaf8d7/dep-lib-hashbrown differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-414d58f220eaf8d7/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-414d58f220eaf8d7/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-414d58f220eaf8d7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-414d58f220eaf8d7/lib-hashbrown b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-414d58f220eaf8d7/lib-hashbrown new file mode 100644 index 000000000..af4bb943b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-414d58f220eaf8d7/lib-hashbrown @@ -0,0 +1 @@ +06977dfa3cac0bac \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-414d58f220eaf8d7/lib-hashbrown.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-414d58f220eaf8d7/lib-hashbrown.json new file mode 100644 index 000000000..4f58a82f8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-414d58f220eaf8d7/lib-hashbrown.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"raw\"]","declared_features":"[\"ahash\", \"ahash-compile-time-rng\", \"alloc\", \"bumpalo\", \"compiler_builtins\", \"core\", \"default\", \"inline-more\", \"nightly\", \"raw\", \"rayon\", \"rustc-dep-of-std\", \"rustc-internal-api\", \"serde\"]","target":9101038166729729440,"profile":2225463790103693989,"path":11045411135477691457,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\hashbrown-414d58f220eaf8d7\\dep-lib-hashbrown","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-beaa947221958ecb/dep-lib-hashbrown b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-beaa947221958ecb/dep-lib-hashbrown new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-beaa947221958ecb/dep-lib-hashbrown differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-beaa947221958ecb/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-beaa947221958ecb/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-beaa947221958ecb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-beaa947221958ecb/lib-hashbrown b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-beaa947221958ecb/lib-hashbrown new file mode 100644 index 000000000..803409085 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-beaa947221958ecb/lib-hashbrown @@ -0,0 +1 @@ +32e65425aa1e79cb \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-beaa947221958ecb/lib-hashbrown.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-beaa947221958ecb/lib-hashbrown.json new file mode 100644 index 000000000..8853211d8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/hashbrown-beaa947221958ecb/lib-hashbrown.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"alloc\", \"allocator-api2\", \"core\", \"default\", \"default-hasher\", \"equivalent\", \"inline-more\", \"nightly\", \"raw-entry\", \"rayon\", \"rustc-dep-of-std\", \"rustc-internal-api\", \"serde\"]","target":13796197676120832388,"profile":2225463790103693989,"path":7289561462351506188,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\hashbrown-beaa947221958ecb\\dep-lib-hashbrown","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/heck-5861d8956e72ccbf/dep-lib-heck b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/heck-5861d8956e72ccbf/dep-lib-heck new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/heck-5861d8956e72ccbf/dep-lib-heck differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/heck-5861d8956e72ccbf/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/heck-5861d8956e72ccbf/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/heck-5861d8956e72ccbf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/heck-5861d8956e72ccbf/lib-heck b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/heck-5861d8956e72ccbf/lib-heck new file mode 100644 index 000000000..8389f95cd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/heck-5861d8956e72ccbf/lib-heck @@ -0,0 +1 @@ +6191d07481313a2c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/heck-5861d8956e72ccbf/lib-heck.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/heck-5861d8956e72ccbf/lib-heck.json new file mode 100644 index 000000000..d67a262f4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/heck-5861d8956e72ccbf/lib-heck.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":17886154901722686619,"profile":15657897354478470176,"path":13963606713537524442,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\heck-5861d8956e72ccbf\\dep-lib-heck","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/html5ever-f2f5648e59154ea5/dep-lib-html5ever b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/html5ever-f2f5648e59154ea5/dep-lib-html5ever new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/html5ever-f2f5648e59154ea5/dep-lib-html5ever differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/html5ever-f2f5648e59154ea5/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/html5ever-f2f5648e59154ea5/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/html5ever-f2f5648e59154ea5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/html5ever-f2f5648e59154ea5/lib-html5ever b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/html5ever-f2f5648e59154ea5/lib-html5ever new file mode 100644 index 000000000..513aefa54 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/html5ever-f2f5648e59154ea5/lib-html5ever @@ -0,0 +1 @@ +d09bb631f5feafff \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/html5ever-f2f5648e59154ea5/lib-html5ever.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/html5ever-f2f5648e59154ea5/lib-html5ever.json new file mode 100644 index 000000000..78fce4a4b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/html5ever-f2f5648e59154ea5/lib-html5ever.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"trace_tokenizer\"]","target":12435897276374994342,"profile":2225463790103693989,"path":1909669201818111003,"deps":[[3014687399266724630,"markup5ever",false,10294332542343304195],[10630857666389190470,"log",false,6754411078615141590],[10952224881603935644,"mac",false,1209686851167187827],[14951457887287204579,"match_token",false,1546044921723600767]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\html5ever-f2f5648e59154ea5\\dep-lib-html5ever","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/http-343725807e3adf3d/dep-lib-http b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/http-343725807e3adf3d/dep-lib-http new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/http-343725807e3adf3d/dep-lib-http differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/http-343725807e3adf3d/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/http-343725807e3adf3d/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/http-343725807e3adf3d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/http-343725807e3adf3d/lib-http b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/http-343725807e3adf3d/lib-http new file mode 100644 index 000000000..75dbb865a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/http-343725807e3adf3d/lib-http @@ -0,0 +1 @@ +30fd5d900c9bd87d \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/http-343725807e3adf3d/lib-http.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/http-343725807e3adf3d/lib-http.json new file mode 100644 index 000000000..bcbe766f9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/http-343725807e3adf3d/lib-http.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":4766512060560342653,"profile":15657897354478470176,"path":8877579812911476585,"deps":[[3870702314125662939,"bytes",false,12932831470563491852],[9938278000850417404,"itoa",false,17780313112227028310]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\http-343725807e3adf3d\\dep-lib-http","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ico-f7c2f7f83a96fa9a/dep-lib-ico b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ico-f7c2f7f83a96fa9a/dep-lib-ico new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ico-f7c2f7f83a96fa9a/dep-lib-ico differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ico-f7c2f7f83a96fa9a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ico-f7c2f7f83a96fa9a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ico-f7c2f7f83a96fa9a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ico-f7c2f7f83a96fa9a/lib-ico b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ico-f7c2f7f83a96fa9a/lib-ico new file mode 100644 index 000000000..7c3fbaada --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ico-f7c2f7f83a96fa9a/lib-ico @@ -0,0 +1 @@ +c39fe74f288bbaf6 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ico-f7c2f7f83a96fa9a/lib-ico.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ico-f7c2f7f83a96fa9a/lib-ico.json new file mode 100644 index 000000000..d064b5862 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ico-f7c2f7f83a96fa9a/lib-ico.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"serde\"]","target":8778642514857267873,"profile":2225463790103693989,"path":9220827951154779323,"deps":[[3712811570531045576,"byteorder",false,2615234728112950181],[12687914511023397207,"png",false,10003065366284633312]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\ico-f7c2f7f83a96fa9a\\dep-lib-ico","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-08b3efed2fa2f407/dep-lib-icu_collections b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-08b3efed2fa2f407/dep-lib-icu_collections new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-08b3efed2fa2f407/dep-lib-icu_collections differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-08b3efed2fa2f407/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-08b3efed2fa2f407/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-08b3efed2fa2f407/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-08b3efed2fa2f407/lib-icu_collections b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-08b3efed2fa2f407/lib-icu_collections new file mode 100644 index 000000000..af6235c0d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-08b3efed2fa2f407/lib-icu_collections @@ -0,0 +1 @@ +49d336d739d7f85f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-08b3efed2fa2f407/lib-icu_collections.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-08b3efed2fa2f407/lib-icu_collections.json new file mode 100644 index 000000000..5f6824062 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-08b3efed2fa2f407/lib-icu_collections.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"alloc\", \"databake\", \"serde\"]","target":8741949119514994751,"profile":15657897354478470176,"path":8657942394521859203,"deps":[[697207654067905947,"yoke",false,10731924417458900297],[1847693542725807353,"potential_utf",false,400140077854278076],[5298260564258778412,"displaydoc",false,10274559501707370894],[14563910249377136032,"zerovec",false,1715448149783892678],[17046516144589451410,"zerofrom",false,18431301885998871224]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_collections-08b3efed2fa2f407\\dep-lib-icu_collections","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-d8851f3070410313/dep-lib-icu_collections b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-d8851f3070410313/dep-lib-icu_collections new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-d8851f3070410313/dep-lib-icu_collections differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-d8851f3070410313/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-d8851f3070410313/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-d8851f3070410313/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-d8851f3070410313/lib-icu_collections b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-d8851f3070410313/lib-icu_collections new file mode 100644 index 000000000..bc8de0ca3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-d8851f3070410313/lib-icu_collections @@ -0,0 +1 @@ +72c33af73409d05e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-d8851f3070410313/lib-icu_collections.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-d8851f3070410313/lib-icu_collections.json new file mode 100644 index 000000000..a745ed225 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_collections-d8851f3070410313/lib-icu_collections.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"alloc\", \"databake\", \"serde\"]","target":8741949119514994751,"profile":15657897354478470176,"path":8657942394521859203,"deps":[[697207654067905947,"yoke",false,11006305285911105450],[1847693542725807353,"potential_utf",false,7555260602645218669],[5298260564258778412,"displaydoc",false,10274559501707370894],[14563910249377136032,"zerovec",false,10059502159815721741],[17046516144589451410,"zerofrom",false,18431301885998871224]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_collections-d8851f3070410313\\dep-lib-icu_collections","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-4a139db2b208f39f/dep-lib-icu_locale_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-4a139db2b208f39f/dep-lib-icu_locale_core new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-4a139db2b208f39f/dep-lib-icu_locale_core differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-4a139db2b208f39f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-4a139db2b208f39f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-4a139db2b208f39f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-4a139db2b208f39f/lib-icu_locale_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-4a139db2b208f39f/lib-icu_locale_core new file mode 100644 index 000000000..ac56d42b4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-4a139db2b208f39f/lib-icu_locale_core @@ -0,0 +1 @@ +dc1735ff15ee3b1a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-4a139db2b208f39f/lib-icu_locale_core.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-4a139db2b208f39f/lib-icu_locale_core.json new file mode 100644 index 000000000..cb92fbe95 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-4a139db2b208f39f/lib-icu_locale_core.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"serde\", \"zerovec\"]","target":7234736894702847895,"profile":15657897354478470176,"path":13845532610352364000,"deps":[[5298260564258778412,"displaydoc",false,10274559501707370894],[11782995109291648529,"tinystr",false,7963572864811497773],[13225456964504773423,"writeable",false,17431237196984862354],[13749468390089984218,"litemap",false,14434504983997598233],[14563910249377136032,"zerovec",false,10059502159815721741]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_locale_core-4a139db2b208f39f\\dep-lib-icu_locale_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-eec951fe4b5ea112/dep-lib-icu_locale_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-eec951fe4b5ea112/dep-lib-icu_locale_core new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-eec951fe4b5ea112/dep-lib-icu_locale_core differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-eec951fe4b5ea112/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-eec951fe4b5ea112/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-eec951fe4b5ea112/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-eec951fe4b5ea112/lib-icu_locale_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-eec951fe4b5ea112/lib-icu_locale_core new file mode 100644 index 000000000..b316a0a59 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-eec951fe4b5ea112/lib-icu_locale_core @@ -0,0 +1 @@ +9ea141c11e14a380 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-eec951fe4b5ea112/lib-icu_locale_core.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-eec951fe4b5ea112/lib-icu_locale_core.json new file mode 100644 index 000000000..22e7d8931 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_locale_core-eec951fe4b5ea112/lib-icu_locale_core.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"serde\", \"zerovec\"]","target":7234736894702847895,"profile":15657897354478470176,"path":13845532610352364000,"deps":[[5298260564258778412,"displaydoc",false,10274559501707370894],[11782995109291648529,"tinystr",false,15285278601708676034],[13225456964504773423,"writeable",false,17431237196984862354],[13749468390089984218,"litemap",false,14434504983997598233],[14563910249377136032,"zerovec",false,1715448149783892678]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_locale_core-eec951fe4b5ea112\\dep-lib-icu_locale_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-9984cb90457cfb08/dep-lib-icu_normalizer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-9984cb90457cfb08/dep-lib-icu_normalizer new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-9984cb90457cfb08/dep-lib-icu_normalizer differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-9984cb90457cfb08/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-9984cb90457cfb08/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-9984cb90457cfb08/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-9984cb90457cfb08/lib-icu_normalizer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-9984cb90457cfb08/lib-icu_normalizer new file mode 100644 index 000000000..cde8cea98 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-9984cb90457cfb08/lib-icu_normalizer @@ -0,0 +1 @@ +baed2fa011eb3215 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-9984cb90457cfb08/lib-icu_normalizer.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-9984cb90457cfb08/lib-icu_normalizer.json new file mode 100644 index 000000000..4c1f16351 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-9984cb90457cfb08/lib-icu_normalizer.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"compiled_data\"]","declared_features":"[\"compiled_data\", \"datagen\", \"default\", \"experimental\", \"icu_properties\", \"serde\", \"utf16_iter\", \"utf8_iter\", \"write16\"]","target":4082895731217690114,"profile":16810742592890727785,"path":932297913375485702,"deps":[[3666196340704888985,"smallvec",false,8171192460323762105],[5251024081607271245,"icu_provider",false,6823085672398240247],[8584278803131124045,"icu_normalizer_data",false,3769935763510713721],[14324911895384364736,"icu_collections",false,6915513871251198793],[14563910249377136032,"zerovec",false,1715448149783892678]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_normalizer-9984cb90457cfb08\\dep-lib-icu_normalizer","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-c993d54e89cc108b/dep-lib-icu_normalizer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-c993d54e89cc108b/dep-lib-icu_normalizer new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-c993d54e89cc108b/dep-lib-icu_normalizer differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-c993d54e89cc108b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-c993d54e89cc108b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-c993d54e89cc108b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-c993d54e89cc108b/lib-icu_normalizer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-c993d54e89cc108b/lib-icu_normalizer new file mode 100644 index 000000000..ec4d765f6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-c993d54e89cc108b/lib-icu_normalizer @@ -0,0 +1 @@ +19fff8da63237185 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-c993d54e89cc108b/lib-icu_normalizer.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-c993d54e89cc108b/lib-icu_normalizer.json new file mode 100644 index 000000000..d909bd8e2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer-c993d54e89cc108b/lib-icu_normalizer.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"compiled_data\"]","declared_features":"[\"compiled_data\", \"datagen\", \"default\", \"experimental\", \"icu_properties\", \"serde\", \"utf16_iter\", \"utf8_iter\", \"write16\"]","target":4082895731217690114,"profile":16810742592890727785,"path":932297913375485702,"deps":[[3666196340704888985,"smallvec",false,8171192460323762105],[5251024081607271245,"icu_provider",false,5158327257819579389],[8584278803131124045,"icu_normalizer_data",false,3769935763510713721],[14324911895384364736,"icu_collections",false,6831970757811815282],[14563910249377136032,"zerovec",false,10059502159815721741]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_normalizer-c993d54e89cc108b\\dep-lib-icu_normalizer","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-9a5e27c6c3f862f3/dep-lib-icu_normalizer_data b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-9a5e27c6c3f862f3/dep-lib-icu_normalizer_data new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-9a5e27c6c3f862f3/dep-lib-icu_normalizer_data differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-9a5e27c6c3f862f3/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-9a5e27c6c3f862f3/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-9a5e27c6c3f862f3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-9a5e27c6c3f862f3/lib-icu_normalizer_data b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-9a5e27c6c3f862f3/lib-icu_normalizer_data new file mode 100644 index 000000000..74f1bcd0c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-9a5e27c6c3f862f3/lib-icu_normalizer_data @@ -0,0 +1 @@ +79dd185a9a805134 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-9a5e27c6c3f862f3/lib-icu_normalizer_data.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-9a5e27c6c3f862f3/lib-icu_normalizer_data.json new file mode 100644 index 000000000..b3024e1b1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-9a5e27c6c3f862f3/lib-icu_normalizer_data.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":17980939898269686983,"profile":11659310115634824739,"path":13975135843921753102,"deps":[[8584278803131124045,"build_script_build",false,7073333339018462921]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_normalizer_data-9a5e27c6c3f862f3\\dep-lib-icu_normalizer_data","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-cca3bb706176ac7a/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-cca3bb706176ac7a/build-script-build-script-build new file mode 100644 index 000000000..8c170c2dd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-cca3bb706176ac7a/build-script-build-script-build @@ -0,0 +1 @@ +89a000e41bcc5f5c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-cca3bb706176ac7a/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-cca3bb706176ac7a/build-script-build-script-build.json new file mode 100644 index 000000000..d710a146f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-cca3bb706176ac7a/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":13574669494803281578,"path":13842046753497273468,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_normalizer_data-cca3bb706176ac7a\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-cca3bb706176ac7a/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-cca3bb706176ac7a/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-cca3bb706176ac7a/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-cca3bb706176ac7a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-cca3bb706176ac7a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-cca3bb706176ac7a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-de0cf2248e5d7630/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-de0cf2248e5d7630/run-build-script-build-script-build new file mode 100644 index 000000000..2b1fe13d5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-de0cf2248e5d7630/run-build-script-build-script-build @@ -0,0 +1 @@ +c9861f1a32872962 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-de0cf2248e5d7630/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-de0cf2248e5d7630/run-build-script-build-script-build.json new file mode 100644 index 000000000..64c8c3216 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_normalizer_data-de0cf2248e5d7630/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8584278803131124045,"build_script_build",false,6656263194438312073]],"local":[{"RerunIfEnvChanged":{"var":"ICU4X_DATA_DIR","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-1f456bfec4f387d1/dep-lib-icu_properties b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-1f456bfec4f387d1/dep-lib-icu_properties new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-1f456bfec4f387d1/dep-lib-icu_properties differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-1f456bfec4f387d1/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-1f456bfec4f387d1/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-1f456bfec4f387d1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-1f456bfec4f387d1/lib-icu_properties b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-1f456bfec4f387d1/lib-icu_properties new file mode 100644 index 000000000..2774bf603 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-1f456bfec4f387d1/lib-icu_properties @@ -0,0 +1 @@ +4a0580d0e0a1c8d1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-1f456bfec4f387d1/lib-icu_properties.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-1f456bfec4f387d1/lib-icu_properties.json new file mode 100644 index 000000000..66374e0c8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-1f456bfec4f387d1/lib-icu_properties.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"compiled_data\"]","declared_features":"[\"alloc\", \"compiled_data\", \"datagen\", \"default\", \"serde\", \"unicode_bidi\"]","target":12882061015678277883,"profile":15657897354478470176,"path":9312595388788383637,"deps":[[3966877249195716185,"icu_locale_core",false,1890366246855448540],[5251024081607271245,"icu_provider",false,5158327257819579389],[5858954507332936698,"icu_properties_data",false,17666302997808247259],[6160379875186348458,"zerotrie",false,290139884925315487],[14324911895384364736,"icu_collections",false,6831970757811815282],[14563910249377136032,"zerovec",false,10059502159815721741]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_properties-1f456bfec4f387d1\\dep-lib-icu_properties","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-c662cd58bdff89e5/dep-lib-icu_properties b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-c662cd58bdff89e5/dep-lib-icu_properties new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-c662cd58bdff89e5/dep-lib-icu_properties differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-c662cd58bdff89e5/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-c662cd58bdff89e5/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-c662cd58bdff89e5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-c662cd58bdff89e5/lib-icu_properties b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-c662cd58bdff89e5/lib-icu_properties new file mode 100644 index 000000000..1f6dd62eb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-c662cd58bdff89e5/lib-icu_properties @@ -0,0 +1 @@ +3ed6ef645eb559c1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-c662cd58bdff89e5/lib-icu_properties.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-c662cd58bdff89e5/lib-icu_properties.json new file mode 100644 index 000000000..98637e913 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties-c662cd58bdff89e5/lib-icu_properties.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"compiled_data\"]","declared_features":"[\"alloc\", \"compiled_data\", \"datagen\", \"default\", \"serde\", \"unicode_bidi\"]","target":12882061015678277883,"profile":15657897354478470176,"path":9312595388788383637,"deps":[[3966877249195716185,"icu_locale_core",false,9269274580382491038],[5251024081607271245,"icu_provider",false,6823085672398240247],[5858954507332936698,"icu_properties_data",false,17666302997808247259],[6160379875186348458,"zerotrie",false,4595919375647501136],[14324911895384364736,"icu_collections",false,6915513871251198793],[14563910249377136032,"zerovec",false,1715448149783892678]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_properties-c662cd58bdff89e5\\dep-lib-icu_properties","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-63a161b8f319de4d/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-63a161b8f319de4d/build-script-build-script-build new file mode 100644 index 000000000..f6c3bf38a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-63a161b8f319de4d/build-script-build-script-build @@ -0,0 +1 @@ +87c865459c209c89 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-63a161b8f319de4d/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-63a161b8f319de4d/build-script-build-script-build.json new file mode 100644 index 000000000..dff539f2d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-63a161b8f319de4d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":13574669494803281578,"path":12571974047735342906,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_properties_data-63a161b8f319de4d\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-63a161b8f319de4d/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-63a161b8f319de4d/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-63a161b8f319de4d/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-63a161b8f319de4d/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-63a161b8f319de4d/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-63a161b8f319de4d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-768e9e366a07f8dc/dep-lib-icu_properties_data b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-768e9e366a07f8dc/dep-lib-icu_properties_data new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-768e9e366a07f8dc/dep-lib-icu_properties_data differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-768e9e366a07f8dc/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-768e9e366a07f8dc/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-768e9e366a07f8dc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-768e9e366a07f8dc/lib-icu_properties_data b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-768e9e366a07f8dc/lib-icu_properties_data new file mode 100644 index 000000000..a039bb1b3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-768e9e366a07f8dc/lib-icu_properties_data @@ -0,0 +1 @@ +db71c7f6f9502bf5 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-768e9e366a07f8dc/lib-icu_properties_data.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-768e9e366a07f8dc/lib-icu_properties_data.json new file mode 100644 index 000000000..46c64b487 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-768e9e366a07f8dc/lib-icu_properties_data.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":9037757742335137726,"profile":11659310115634824739,"path":8621047526784044331,"deps":[[5858954507332936698,"build_script_build",false,12122338457210360647]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_properties_data-768e9e366a07f8dc\\dep-lib-icu_properties_data","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-c4b5c393a11743f1/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-c4b5c393a11743f1/run-build-script-build-script-build new file mode 100644 index 000000000..09262acac --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-c4b5c393a11743f1/run-build-script-build-script-build @@ -0,0 +1 @@ +4793149599323ba8 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-c4b5c393a11743f1/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-c4b5c393a11743f1/run-build-script-build-script-build.json new file mode 100644 index 000000000..dc71dd245 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_properties_data-c4b5c393a11743f1/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[5858954507332936698,"build_script_build",false,9915836335114274951]],"local":[{"RerunIfEnvChanged":{"var":"ICU4X_DATA_DIR","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-cab3bba09900fcd4/dep-lib-icu_provider b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-cab3bba09900fcd4/dep-lib-icu_provider new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-cab3bba09900fcd4/dep-lib-icu_provider differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-cab3bba09900fcd4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-cab3bba09900fcd4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-cab3bba09900fcd4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-cab3bba09900fcd4/lib-icu_provider b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-cab3bba09900fcd4/lib-icu_provider new file mode 100644 index 000000000..0dbf1d88f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-cab3bba09900fcd4/lib-icu_provider @@ -0,0 +1 @@ +fd038d9d4f0f9647 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-cab3bba09900fcd4/lib-icu_provider.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-cab3bba09900fcd4/lib-icu_provider.json new file mode 100644 index 000000000..d54cf7b97 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-cab3bba09900fcd4/lib-icu_provider.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"baked\"]","declared_features":"[\"alloc\", \"baked\", \"deserialize_bincode_1\", \"deserialize_json\", \"deserialize_postcard_1\", \"export\", \"logging\", \"serde\", \"std\", \"sync\", \"zerotrie\"]","target":8134314816311233441,"profile":15657897354478470176,"path":4997536805865272449,"deps":[[697207654067905947,"yoke",false,11006305285911105450],[3966877249195716185,"icu_locale_core",false,1890366246855448540],[5298260564258778412,"displaydoc",false,10274559501707370894],[6160379875186348458,"zerotrie",false,290139884925315487],[13225456964504773423,"writeable",false,17431237196984862354],[14563910249377136032,"zerovec",false,10059502159815721741],[17046516144589451410,"zerofrom",false,18431301885998871224]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_provider-cab3bba09900fcd4\\dep-lib-icu_provider","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-eda4f374ec5fff1e/dep-lib-icu_provider b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-eda4f374ec5fff1e/dep-lib-icu_provider new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-eda4f374ec5fff1e/dep-lib-icu_provider differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-eda4f374ec5fff1e/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-eda4f374ec5fff1e/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-eda4f374ec5fff1e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-eda4f374ec5fff1e/lib-icu_provider b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-eda4f374ec5fff1e/lib-icu_provider new file mode 100644 index 000000000..498a4e4b3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-eda4f374ec5fff1e/lib-icu_provider @@ -0,0 +1 @@ +f7b95acf4478b05e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-eda4f374ec5fff1e/lib-icu_provider.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-eda4f374ec5fff1e/lib-icu_provider.json new file mode 100644 index 000000000..60fb945f9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/icu_provider-eda4f374ec5fff1e/lib-icu_provider.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"baked\"]","declared_features":"[\"alloc\", \"baked\", \"deserialize_bincode_1\", \"deserialize_json\", \"deserialize_postcard_1\", \"export\", \"logging\", \"serde\", \"std\", \"sync\", \"zerotrie\"]","target":8134314816311233441,"profile":15657897354478470176,"path":4997536805865272449,"deps":[[697207654067905947,"yoke",false,10731924417458900297],[3966877249195716185,"icu_locale_core",false,9269274580382491038],[5298260564258778412,"displaydoc",false,10274559501707370894],[6160379875186348458,"zerotrie",false,4595919375647501136],[13225456964504773423,"writeable",false,17431237196984862354],[14563910249377136032,"zerovec",false,1715448149783892678],[17046516144589451410,"zerofrom",false,18431301885998871224]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\icu_provider-eda4f374ec5fff1e\\dep-lib-icu_provider","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ident_case-9970b825bab2e96e/dep-lib-ident_case b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ident_case-9970b825bab2e96e/dep-lib-ident_case new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ident_case-9970b825bab2e96e/dep-lib-ident_case differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ident_case-9970b825bab2e96e/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ident_case-9970b825bab2e96e/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ident_case-9970b825bab2e96e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ident_case-9970b825bab2e96e/lib-ident_case b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ident_case-9970b825bab2e96e/lib-ident_case new file mode 100644 index 000000000..81cb29b5c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ident_case-9970b825bab2e96e/lib-ident_case @@ -0,0 +1 @@ +f7ce574325a68df1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ident_case-9970b825bab2e96e/lib-ident_case.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ident_case-9970b825bab2e96e/lib-ident_case.json new file mode 100644 index 000000000..d04495aa6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ident_case-9970b825bab2e96e/lib-ident_case.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5776078485490251590,"profile":2225463790103693989,"path":2824898101562550970,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\ident_case-9970b825bab2e96e\\dep-lib-ident_case","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-85e77865fc110cfe/dep-lib-idna b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-85e77865fc110cfe/dep-lib-idna new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-85e77865fc110cfe/dep-lib-idna differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-85e77865fc110cfe/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-85e77865fc110cfe/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-85e77865fc110cfe/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-85e77865fc110cfe/lib-idna b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-85e77865fc110cfe/lib-idna new file mode 100644 index 000000000..4186427d1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-85e77865fc110cfe/lib-idna @@ -0,0 +1 @@ +d9ceee77e05d29a7 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-85e77865fc110cfe/lib-idna.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-85e77865fc110cfe/lib-idna.json new file mode 100644 index 000000000..872439e34 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-85e77865fc110cfe/lib-idna.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"compiled_data\", \"std\"]","declared_features":"[\"alloc\", \"compiled_data\", \"default\", \"std\"]","target":2602963282308965300,"profile":15657897354478470176,"path":6042617773491247868,"deps":[[3666196340704888985,"smallvec",false,8171192460323762105],[5078124415930854154,"utf8_iter",false,4927367273579247384],[15512052560677395824,"idna_adapter",false,14629478757593391696]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\idna-85e77865fc110cfe\\dep-lib-idna","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-d5c386015c2d799a/dep-lib-idna b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-d5c386015c2d799a/dep-lib-idna new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-d5c386015c2d799a/dep-lib-idna differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-d5c386015c2d799a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-d5c386015c2d799a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-d5c386015c2d799a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-d5c386015c2d799a/lib-idna b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-d5c386015c2d799a/lib-idna new file mode 100644 index 000000000..b30dfba30 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-d5c386015c2d799a/lib-idna @@ -0,0 +1 @@ +bf5e6dbe8587a4e3 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-d5c386015c2d799a/lib-idna.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-d5c386015c2d799a/lib-idna.json new file mode 100644 index 000000000..ac28d4394 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna-d5c386015c2d799a/lib-idna.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"compiled_data\", \"std\"]","declared_features":"[\"alloc\", \"compiled_data\", \"default\", \"std\"]","target":2602963282308965300,"profile":15657897354478470176,"path":6042617773491247868,"deps":[[3666196340704888985,"smallvec",false,8171192460323762105],[5078124415930854154,"utf8_iter",false,4927367273579247384],[15512052560677395824,"idna_adapter",false,15327339489112408111]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\idna-d5c386015c2d799a\\dep-lib-idna","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-07f257b5f65964ba/dep-lib-idna_adapter b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-07f257b5f65964ba/dep-lib-idna_adapter new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-07f257b5f65964ba/dep-lib-idna_adapter differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-07f257b5f65964ba/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-07f257b5f65964ba/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-07f257b5f65964ba/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-07f257b5f65964ba/lib-idna_adapter b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-07f257b5f65964ba/lib-idna_adapter new file mode 100644 index 000000000..b220a7d9c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-07f257b5f65964ba/lib-idna_adapter @@ -0,0 +1 @@ +2fc05cc00ea6b5d4 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-07f257b5f65964ba/lib-idna_adapter.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-07f257b5f65964ba/lib-idna_adapter.json new file mode 100644 index 000000000..2aa51ec28 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-07f257b5f65964ba/lib-idna_adapter.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"compiled_data\"]","declared_features":"[\"compiled_data\"]","target":9682399050268992880,"profile":15657897354478470176,"path":9003261876625388704,"deps":[[13090240085421024152,"icu_normalizer",false,9615505591195205401],[18157230703293167834,"icu_properties",false,15116510136211866954]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\idna_adapter-07f257b5f65964ba\\dep-lib-idna_adapter","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-e06d39430f150ef0/dep-lib-idna_adapter b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-e06d39430f150ef0/dep-lib-idna_adapter new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-e06d39430f150ef0/dep-lib-idna_adapter differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-e06d39430f150ef0/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-e06d39430f150ef0/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-e06d39430f150ef0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-e06d39430f150ef0/lib-idna_adapter b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-e06d39430f150ef0/lib-idna_adapter new file mode 100644 index 000000000..1f9138519 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-e06d39430f150ef0/lib-idna_adapter @@ -0,0 +1 @@ +50227a736b5906cb \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-e06d39430f150ef0/lib-idna_adapter.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-e06d39430f150ef0/lib-idna_adapter.json new file mode 100644 index 000000000..c8590f803 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/idna_adapter-e06d39430f150ef0/lib-idna_adapter.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"compiled_data\"]","declared_features":"[\"compiled_data\"]","target":9682399050268992880,"profile":15657897354478470176,"path":9003261876625388704,"deps":[[13090240085421024152,"icu_normalizer",false,1527541684566486458],[18157230703293167834,"icu_properties",false,13932366339272332862]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\idna_adapter-e06d39430f150ef0\\dep-lib-idna_adapter","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-3a8c8c155e381f3c/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-3a8c8c155e381f3c/run-build-script-build-script-build new file mode 100644 index 000000000..c65f6c3d5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-3a8c8c155e381f3c/run-build-script-build-script-build @@ -0,0 +1 @@ +a6a3a8e7ad756634 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-3a8c8c155e381f3c/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-3a8c8c155e381f3c/run-build-script-build-script-build.json new file mode 100644 index 000000000..32225ff1f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-3a8c8c155e381f3c/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[14923790796823607459,"build_script_build",false,7559200533130707875]],"local":[{"RerunIfChanged":{"output":"debug\\build\\indexmap-3a8c8c155e381f3c\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-6019c038d69044d2/dep-lib-indexmap b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-6019c038d69044d2/dep-lib-indexmap new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-6019c038d69044d2/dep-lib-indexmap differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-6019c038d69044d2/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-6019c038d69044d2/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-6019c038d69044d2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-6019c038d69044d2/lib-indexmap b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-6019c038d69044d2/lib-indexmap new file mode 100644 index 000000000..29433dcda --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-6019c038d69044d2/lib-indexmap @@ -0,0 +1 @@ +98bb966286f7492c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-6019c038d69044d2/lib-indexmap.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-6019c038d69044d2/lib-indexmap.json new file mode 100644 index 000000000..823ee3572 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-6019c038d69044d2/lib-indexmap.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"serde\", \"serde-1\"]","declared_features":"[\"arbitrary\", \"quickcheck\", \"rayon\", \"rustc-rayon\", \"serde\", \"serde-1\", \"std\", \"test_debug\", \"test_low_transition_point\"]","target":7464724397252027387,"profile":2225463790103693989,"path":6585938588418010389,"deps":[[2548171882066012255,"hashbrown",false,12397191777167972102],[13548984313718623784,"serde",false,10784126109130480978],[14923790796823607459,"build_script_build",false,3775834727373120422]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\indexmap-6019c038d69044d2\\dep-lib-indexmap","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-8102e36b11e13b7e/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-8102e36b11e13b7e/build-script-build-script-build new file mode 100644 index 000000000..ab61458b3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-8102e36b11e13b7e/build-script-build-script-build @@ -0,0 +1 @@ +a30333a3d5ace768 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-8102e36b11e13b7e/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-8102e36b11e13b7e/build-script-build-script-build.json new file mode 100644 index 000000000..9f1862c37 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-8102e36b11e13b7e/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"serde\", \"serde-1\"]","declared_features":"[\"arbitrary\", \"quickcheck\", \"rayon\", \"rustc-rayon\", \"serde\", \"serde-1\", \"std\", \"test_debug\", \"test_low_transition_point\"]","target":5408242616063297496,"profile":2225463790103693989,"path":264061007634522807,"deps":[[13927012481677012980,"autocfg",false,2398748014270021169]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\indexmap-8102e36b11e13b7e\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-8102e36b11e13b7e/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-8102e36b11e13b7e/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-8102e36b11e13b7e/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-8102e36b11e13b7e/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-8102e36b11e13b7e/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-8102e36b11e13b7e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-f5532a84b15092e9/dep-lib-indexmap b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-f5532a84b15092e9/dep-lib-indexmap new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-f5532a84b15092e9/dep-lib-indexmap differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-f5532a84b15092e9/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-f5532a84b15092e9/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-f5532a84b15092e9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-f5532a84b15092e9/lib-indexmap b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-f5532a84b15092e9/lib-indexmap new file mode 100644 index 000000000..6660025b2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-f5532a84b15092e9/lib-indexmap @@ -0,0 +1 @@ +48222bff250c0fcd \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-f5532a84b15092e9/lib-indexmap.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-f5532a84b15092e9/lib-indexmap.json new file mode 100644 index 000000000..195f98c7d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/indexmap-f5532a84b15092e9/lib-indexmap.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"arbitrary\", \"borsh\", \"default\", \"quickcheck\", \"rayon\", \"serde\", \"std\", \"sval\", \"test_debug\"]","target":10391229881554802429,"profile":11800664513218926762,"path":11118803128129604025,"deps":[[5230392855116717286,"equivalent",false,9127931168650618524],[17037126617600641945,"hashbrown",false,14661783778000954930]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\indexmap-f5532a84b15092e9\\dep-lib-indexmap","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b693184e8ba57fe/dep-lib-infer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b693184e8ba57fe/dep-lib-infer new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b693184e8ba57fe/dep-lib-infer differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b693184e8ba57fe/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b693184e8ba57fe/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b693184e8ba57fe/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b693184e8ba57fe/lib-infer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b693184e8ba57fe/lib-infer new file mode 100644 index 000000000..3e124bca9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b693184e8ba57fe/lib-infer @@ -0,0 +1 @@ +efa449a28ee3f0d6 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b693184e8ba57fe/lib-infer.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b693184e8ba57fe/lib-infer.json new file mode 100644 index 000000000..05cf0119b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b693184e8ba57fe/lib-infer.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"cfb\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"cfb\", \"default\", \"std\"]","target":17568545270158767465,"profile":15657897354478470176,"path":3620946553211080392,"deps":[[3381430663848060157,"cfb",false,1173839351818968393]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\infer-3b693184e8ba57fe\\dep-lib-infer","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b8348fcad0ade86/dep-lib-infer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b8348fcad0ade86/dep-lib-infer new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b8348fcad0ade86/dep-lib-infer differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b8348fcad0ade86/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b8348fcad0ade86/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b8348fcad0ade86/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b8348fcad0ade86/lib-infer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b8348fcad0ade86/lib-infer new file mode 100644 index 000000000..37956b34c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b8348fcad0ade86/lib-infer @@ -0,0 +1 @@ +e3caec440fbb12bf \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b8348fcad0ade86/lib-infer.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b8348fcad0ade86/lib-infer.json new file mode 100644 index 000000000..81f6fae6f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/infer-3b8348fcad0ade86/lib-infer.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"cfb\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"cfb\", \"default\", \"std\"]","target":17568545270158767465,"profile":15657897354478470176,"path":3620946553211080392,"deps":[[3381430663848060157,"cfb",false,1355840772886592403]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\infer-3b8348fcad0ade86\\dep-lib-infer","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/itoa-479688f6d642518e/dep-lib-itoa b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/itoa-479688f6d642518e/dep-lib-itoa new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/itoa-479688f6d642518e/dep-lib-itoa differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/itoa-479688f6d642518e/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/itoa-479688f6d642518e/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/itoa-479688f6d642518e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/itoa-479688f6d642518e/lib-itoa b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/itoa-479688f6d642518e/lib-itoa new file mode 100644 index 000000000..a66e07db0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/itoa-479688f6d642518e/lib-itoa @@ -0,0 +1 @@ +561d8349925cc0f6 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/itoa-479688f6d642518e/lib-itoa.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/itoa-479688f6d642518e/lib-itoa.json new file mode 100644 index 000000000..f7c4fbc94 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/itoa-479688f6d642518e/lib-itoa.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"no-panic\"]","target":18426369533666673425,"profile":15657897354478470176,"path":12169618535377654999,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\itoa-479688f6d642518e\\dep-lib-itoa","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-77ce2966dc10f79b/dep-lib-json_patch b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-77ce2966dc10f79b/dep-lib-json_patch new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-77ce2966dc10f79b/dep-lib-json_patch differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-77ce2966dc10f79b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-77ce2966dc10f79b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-77ce2966dc10f79b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-77ce2966dc10f79b/lib-json_patch b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-77ce2966dc10f79b/lib-json_patch new file mode 100644 index 000000000..1cea3a8f4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-77ce2966dc10f79b/lib-json_patch @@ -0,0 +1 @@ +571e40d71e342aa0 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-77ce2966dc10f79b/lib-json_patch.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-77ce2966dc10f79b/lib-json_patch.json new file mode 100644 index 000000000..b5368161f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-77ce2966dc10f79b/lib-json_patch.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"diff\"]","declared_features":"[\"default\", \"diff\", \"utoipa\"]","target":14406124900114693622,"profile":15657897354478470176,"path":11440226531296528178,"deps":[[948796966650388991,"jsonptr",false,2851349331942044216],[8008191657135824715,"thiserror",false,17691471341238852245],[13548984313718623784,"serde",false,9531788703992814231],[13795362694956882968,"serde_json",false,18072685002681645329]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\json-patch-77ce2966dc10f79b\\dep-lib-json_patch","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-eedba2d47aed7d4a/dep-lib-json_patch b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-eedba2d47aed7d4a/dep-lib-json_patch new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-eedba2d47aed7d4a/dep-lib-json_patch differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-eedba2d47aed7d4a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-eedba2d47aed7d4a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-eedba2d47aed7d4a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-eedba2d47aed7d4a/lib-json_patch b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-eedba2d47aed7d4a/lib-json_patch new file mode 100644 index 000000000..a0397f8f4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-eedba2d47aed7d4a/lib-json_patch @@ -0,0 +1 @@ +0d9ae502f196029a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-eedba2d47aed7d4a/lib-json_patch.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-eedba2d47aed7d4a/lib-json_patch.json new file mode 100644 index 000000000..e83b98f04 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/json-patch-eedba2d47aed7d4a/lib-json_patch.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"diff\"]","declared_features":"[\"default\", \"diff\", \"utoipa\"]","target":14406124900114693622,"profile":15657897354478470176,"path":11440226531296528178,"deps":[[948796966650388991,"jsonptr",false,16174535008313259222],[8008191657135824715,"thiserror",false,17691471341238852245],[13548984313718623784,"serde",false,10784126109130480978],[13795362694956882968,"serde_json",false,9747708274794738682]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\json-patch-eedba2d47aed7d4a\\dep-lib-json_patch","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-0b064bdc532ab1b8/dep-lib-jsonptr b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-0b064bdc532ab1b8/dep-lib-jsonptr new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-0b064bdc532ab1b8/dep-lib-jsonptr differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-0b064bdc532ab1b8/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-0b064bdc532ab1b8/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-0b064bdc532ab1b8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-0b064bdc532ab1b8/lib-jsonptr b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-0b064bdc532ab1b8/lib-jsonptr new file mode 100644 index 000000000..09047f525 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-0b064bdc532ab1b8/lib-jsonptr @@ -0,0 +1 @@ +d6b4a1c9e47d77e0 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-0b064bdc532ab1b8/lib-jsonptr.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-0b064bdc532ab1b8/lib-jsonptr.json new file mode 100644 index 000000000..e37819b30 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-0b064bdc532ab1b8/lib-jsonptr.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"assign\", \"default\", \"delete\", \"json\", \"resolve\", \"serde\", \"std\"]","declared_features":"[\"assign\", \"default\", \"delete\", \"json\", \"resolve\", \"serde\", \"std\", \"syn\", \"toml\"]","target":6156847923662696184,"profile":15657897354478470176,"path":6689536145225217186,"deps":[[13548984313718623784,"serde",false,10784126109130480978],[13795362694956882968,"serde_json",false,9747708274794738682]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\jsonptr-0b064bdc532ab1b8\\dep-lib-jsonptr","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-13c889824cfa7ccd/dep-lib-jsonptr b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-13c889824cfa7ccd/dep-lib-jsonptr new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-13c889824cfa7ccd/dep-lib-jsonptr differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-13c889824cfa7ccd/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-13c889824cfa7ccd/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-13c889824cfa7ccd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-13c889824cfa7ccd/lib-jsonptr b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-13c889824cfa7ccd/lib-jsonptr new file mode 100644 index 000000000..d1421f255 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-13c889824cfa7ccd/lib-jsonptr @@ -0,0 +1 @@ +38f2f33c1c079227 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-13c889824cfa7ccd/lib-jsonptr.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-13c889824cfa7ccd/lib-jsonptr.json new file mode 100644 index 000000000..33ac1922c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/jsonptr-13c889824cfa7ccd/lib-jsonptr.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"assign\", \"default\", \"delete\", \"json\", \"resolve\", \"serde\", \"std\"]","declared_features":"[\"assign\", \"default\", \"delete\", \"json\", \"resolve\", \"serde\", \"std\", \"syn\", \"toml\"]","target":6156847923662696184,"profile":15657897354478470176,"path":6689536145225217186,"deps":[[13548984313718623784,"serde",false,9531788703992814231],[13795362694956882968,"serde_json",false,18072685002681645329]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\jsonptr-13c889824cfa7ccd\\dep-lib-jsonptr","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/keyboard-types-578083e86443a72f/dep-lib-keyboard_types b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/keyboard-types-578083e86443a72f/dep-lib-keyboard_types new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/keyboard-types-578083e86443a72f/dep-lib-keyboard_types differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/keyboard-types-578083e86443a72f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/keyboard-types-578083e86443a72f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/keyboard-types-578083e86443a72f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/keyboard-types-578083e86443a72f/lib-keyboard_types b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/keyboard-types-578083e86443a72f/lib-keyboard_types new file mode 100644 index 000000000..588c81714 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/keyboard-types-578083e86443a72f/lib-keyboard_types @@ -0,0 +1 @@ +fedde43e55a655bc \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/keyboard-types-578083e86443a72f/lib-keyboard_types.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/keyboard-types-578083e86443a72f/lib-keyboard_types.json new file mode 100644 index 000000000..769ec6941 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/keyboard-types-578083e86443a72f/lib-keyboard_types.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"serde\", \"unicode-segmentation\", \"webdriver\"]","declared_features":"[\"default\", \"serde\", \"unicode-segmentation\", \"webdriver\"]","target":238430233519298225,"profile":15657897354478470176,"path":3001226949396137814,"deps":[[1232198224951696867,"unicode_segmentation",false,459108668580735523],[13548984313718623784,"serde",false,9531788703992814231],[16909888598953886583,"bitflags",false,9124655452897035545]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\keyboard-types-578083e86443a72f\\dep-lib-keyboard_types","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/kuchikiki-67a5e3b1068890b6/dep-lib-kuchikiki b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/kuchikiki-67a5e3b1068890b6/dep-lib-kuchikiki new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/kuchikiki-67a5e3b1068890b6/dep-lib-kuchikiki differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/kuchikiki-67a5e3b1068890b6/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/kuchikiki-67a5e3b1068890b6/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/kuchikiki-67a5e3b1068890b6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/kuchikiki-67a5e3b1068890b6/lib-kuchikiki b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/kuchikiki-67a5e3b1068890b6/lib-kuchikiki new file mode 100644 index 000000000..5f7aefe00 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/kuchikiki-67a5e3b1068890b6/lib-kuchikiki @@ -0,0 +1 @@ +0f5c1f525347a131 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/kuchikiki-67a5e3b1068890b6/lib-kuchikiki.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/kuchikiki-67a5e3b1068890b6/lib-kuchikiki.json new file mode 100644 index 000000000..4a24ccf02 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/kuchikiki-67a5e3b1068890b6/lib-kuchikiki.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":17579143624595397481,"profile":2225463790103693989,"path":6277015217933649536,"deps":[[10747484429498535170,"selectors",false,18231227758336170117],[10831620673236678515,"cssparser",false,4697970604899436579],[12821780872552529316,"indexmap",false,14776042259760226888],[14232843520438415263,"html5ever",false,18424224929650482128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\kuchikiki-67a5e3b1068890b6\\dep-lib-kuchikiki","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-54b6c2fb8ef06ca6/dep-lib-libc b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-54b6c2fb8ef06ca6/dep-lib-libc new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-54b6c2fb8ef06ca6/dep-lib-libc differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-54b6c2fb8ef06ca6/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-54b6c2fb8ef06ca6/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-54b6c2fb8ef06ca6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-54b6c2fb8ef06ca6/lib-libc b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-54b6c2fb8ef06ca6/lib-libc new file mode 100644 index 000000000..068eeab10 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-54b6c2fb8ef06ca6/lib-libc @@ -0,0 +1 @@ +f5cc48f64a0ed933 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-54b6c2fb8ef06ca6/lib-libc.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-54b6c2fb8ef06ca6/lib-libc.json new file mode 100644 index 000000000..4d352a80b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-54b6c2fb8ef06ca6/lib-libc.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":17682796336736096309,"profile":6200076328592068522,"path":16480830722060020096,"deps":[[18365559012052052344,"build_script_build",false,3512850586322887572]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\libc-54b6c2fb8ef06ca6\\dep-lib-libc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-7856334343e23022/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-7856334343e23022/build-script-build-script-build new file mode 100644 index 000000000..e66aecb46 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-7856334343e23022/build-script-build-script-build @@ -0,0 +1 @@ +54f06ece2f34254e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-7856334343e23022/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-7856334343e23022/build-script-build-script-build.json new file mode 100644 index 000000000..1d0f3958e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-7856334343e23022/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"align\", \"const-extern-fn\", \"default\", \"extra_traits\", \"rustc-dep-of-std\", \"rustc-std-workspace-core\", \"std\", \"use_std\"]","target":5408242616063297496,"profile":1565149285177326037,"path":13001822268273548959,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\libc-7856334343e23022\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-7856334343e23022/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-7856334343e23022/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-7856334343e23022/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-7856334343e23022/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-7856334343e23022/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-7856334343e23022/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-958927f72f6a6b39/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-958927f72f6a6b39/run-build-script-build-script-build new file mode 100644 index 000000000..70d153601 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-958927f72f6a6b39/run-build-script-build-script-build @@ -0,0 +1 @@ +9463cc12ff26c030 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-958927f72f6a6b39/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-958927f72f6a6b39/run-build-script-build-script-build.json new file mode 100644 index 000000000..f5bf649c5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/libc-958927f72f6a6b39/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[18365559012052052344,"build_script_build",false,5630964289028157524]],"local":[{"RerunIfChanged":{"output":"debug\\build\\libc-958927f72f6a6b39\\output","paths":["build.rs"]}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_FREEBSD_VERSION","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_MUSL_V1_2_3","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS","val":null}},{"RerunIfEnvChanged":{"var":"RUST_LIBC_UNSTABLE_GNU_TIME_BITS","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/litemap-ddbb3ed29e3a1dfe/dep-lib-litemap b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/litemap-ddbb3ed29e3a1dfe/dep-lib-litemap new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/litemap-ddbb3ed29e3a1dfe/dep-lib-litemap differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/litemap-ddbb3ed29e3a1dfe/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/litemap-ddbb3ed29e3a1dfe/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/litemap-ddbb3ed29e3a1dfe/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/litemap-ddbb3ed29e3a1dfe/lib-litemap b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/litemap-ddbb3ed29e3a1dfe/lib-litemap new file mode 100644 index 000000000..3f0613ec5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/litemap-ddbb3ed29e3a1dfe/lib-litemap @@ -0,0 +1 @@ +194ac83fcea951c8 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/litemap-ddbb3ed29e3a1dfe/lib-litemap.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/litemap-ddbb3ed29e3a1dfe/lib-litemap.json new file mode 100644 index 000000000..d60037150 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/litemap-ddbb3ed29e3a1dfe/lib-litemap.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"testing\", \"yoke\"]","target":6548088149557820361,"profile":15657897354478470176,"path":1057878907572915794,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\litemap-ddbb3ed29e3a1dfe\\dep-lib-litemap","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/lock_api-030d93b541ad9d3a/dep-lib-lock_api b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/lock_api-030d93b541ad9d3a/dep-lib-lock_api new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/lock_api-030d93b541ad9d3a/dep-lib-lock_api differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/lock_api-030d93b541ad9d3a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/lock_api-030d93b541ad9d3a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/lock_api-030d93b541ad9d3a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/lock_api-030d93b541ad9d3a/lib-lock_api b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/lock_api-030d93b541ad9d3a/lib-lock_api new file mode 100644 index 000000000..8573a2af9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/lock_api-030d93b541ad9d3a/lib-lock_api @@ -0,0 +1 @@ +015c1493deef8885 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/lock_api-030d93b541ad9d3a/lib-lock_api.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/lock_api-030d93b541ad9d3a/lib-lock_api.json new file mode 100644 index 000000000..511fcb333 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/lock_api-030d93b541ad9d3a/lib-lock_api.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"atomic_usize\", \"default\"]","declared_features":"[\"arc_lock\", \"atomic_usize\", \"default\", \"nightly\", \"owning_ref\", \"serde\"]","target":16157403318809843794,"profile":15657897354478470176,"path":2314010732798865823,"deps":[[15358414700195712381,"scopeguard",false,8897613611034350231]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\lock_api-030d93b541ad9d3a\\dep-lib-lock_api","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/log-11565696133ecd00/dep-lib-log b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/log-11565696133ecd00/dep-lib-log new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/log-11565696133ecd00/dep-lib-log differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/log-11565696133ecd00/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/log-11565696133ecd00/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/log-11565696133ecd00/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/log-11565696133ecd00/lib-log b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/log-11565696133ecd00/lib-log new file mode 100644 index 000000000..a5f3c2b1b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/log-11565696133ecd00/lib-log @@ -0,0 +1 @@ +d68cd1ef167dbc5d \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/log-11565696133ecd00/lib-log.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/log-11565696133ecd00/lib-log.json new file mode 100644 index 000000000..cddaf16dc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/log-11565696133ecd00/lib-log.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"kv\", \"kv_serde\", \"kv_std\", \"kv_sval\", \"kv_unstable\", \"kv_unstable_serde\", \"kv_unstable_std\", \"kv_unstable_sval\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"serde\", \"serde_core\", \"std\", \"sval\", \"sval_ref\", \"value-bag\"]","target":6550155848337067049,"profile":15657897354478470176,"path":11960129787710772689,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\log-11565696133ecd00\\dep-lib-log","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mac-a0abb79624ece128/dep-lib-mac b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mac-a0abb79624ece128/dep-lib-mac new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mac-a0abb79624ece128/dep-lib-mac differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mac-a0abb79624ece128/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mac-a0abb79624ece128/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mac-a0abb79624ece128/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mac-a0abb79624ece128/lib-mac b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mac-a0abb79624ece128/lib-mac new file mode 100644 index 000000000..1fc9ddc5f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mac-a0abb79624ece128/lib-mac @@ -0,0 +1 @@ +73f3472dc8abc910 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mac-a0abb79624ece128/lib-mac.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mac-a0abb79624ece128/lib-mac.json new file mode 100644 index 000000000..65ef4deee --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mac-a0abb79624ece128/lib-mac.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":4071246351868317718,"profile":2225463790103693989,"path":8429433242218603093,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\mac-a0abb79624ece128\\dep-lib-mac","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-5558946487c37113/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-5558946487c37113/run-build-script-build-script-build new file mode 100644 index 000000000..76a63eece --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-5558946487c37113/run-build-script-build-script-build @@ -0,0 +1 @@ +ad028d03f515479c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-5558946487c37113/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-5558946487c37113/run-build-script-build-script-build.json new file mode 100644 index 000000000..51716e06f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-5558946487c37113/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[3014687399266724630,"build_script_build",false,173825406145110773]],"local":[{"Precalculated":"0.14.1"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-7075332bb12252f4/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-7075332bb12252f4/build-script-build-script-build new file mode 100644 index 000000000..ae80f059a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-7075332bb12252f4/build-script-build-script-build @@ -0,0 +1 @@ +f5a23732498d6902 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-7075332bb12252f4/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-7075332bb12252f4/build-script-build-script-build.json new file mode 100644 index 000000000..e1acf999a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-7075332bb12252f4/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":2225463790103693989,"path":7869193996940333239,"deps":[[1280075590338009456,"phf_codegen",false,10810842141611753506],[11594986142849509546,"string_cache_codegen",false,14508179007757839344]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\markup5ever-7075332bb12252f4\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-7075332bb12252f4/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-7075332bb12252f4/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-7075332bb12252f4/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-7075332bb12252f4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-7075332bb12252f4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-7075332bb12252f4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-dede12dead0ffe08/dep-lib-markup5ever b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-dede12dead0ffe08/dep-lib-markup5ever new file mode 100644 index 000000000..760fcf41e Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-dede12dead0ffe08/dep-lib-markup5ever differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-dede12dead0ffe08/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-dede12dead0ffe08/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-dede12dead0ffe08/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-dede12dead0ffe08/lib-markup5ever b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-dede12dead0ffe08/lib-markup5ever new file mode 100644 index 000000000..c2bd0d62b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-dede12dead0ffe08/lib-markup5ever @@ -0,0 +1 @@ +03d41dd2e7d0dc8e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-dede12dead0ffe08/lib-markup5ever.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-dede12dead0ffe08/lib-markup5ever.json new file mode 100644 index 000000000..321cf945a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/markup5ever-dede12dead0ffe08/lib-markup5ever.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":9033524523824247874,"profile":2225463790103693989,"path":10507385265013696349,"deps":[[2399633497816108991,"tendril",false,9832804652191606419],[3014687399266724630,"build_script_build",false,11260993535333958317],[3791929332532787956,"string_cache",false,7059469570687909152],[10630857666389190470,"log",false,6754411078615141590],[17186037756130803222,"phf",false,13433449140491704190]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\markup5ever-dede12dead0ffe08\\dep-lib-markup5ever","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/match_token-e6ed88856b5b3c12/dep-lib-match_token b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/match_token-e6ed88856b5b3c12/dep-lib-match_token new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/match_token-e6ed88856b5b3c12/dep-lib-match_token differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/match_token-e6ed88856b5b3c12/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/match_token-e6ed88856b5b3c12/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/match_token-e6ed88856b5b3c12/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/match_token-e6ed88856b5b3c12/lib-match_token b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/match_token-e6ed88856b5b3c12/lib-match_token new file mode 100644 index 000000000..845c3f324 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/match_token-e6ed88856b5b3c12/lib-match_token @@ -0,0 +1 @@ +7fbf213eaaa77415 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/match_token-e6ed88856b5b3c12/lib-match_token.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/match_token-e6ed88856b5b3c12/lib-match_token.json new file mode 100644 index 000000000..8cace8853 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/match_token-e6ed88856b5b3c12/lib-match_token.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":10052685573722170702,"profile":2225463790103693989,"path":8969717764867199868,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\match_token-e6ed88856b5b3c12\\dep-lib-match_token","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/matches-318ee57524fb206e/dep-lib-matches b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/matches-318ee57524fb206e/dep-lib-matches new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/matches-318ee57524fb206e/dep-lib-matches differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/matches-318ee57524fb206e/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/matches-318ee57524fb206e/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/matches-318ee57524fb206e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/matches-318ee57524fb206e/lib-matches b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/matches-318ee57524fb206e/lib-matches new file mode 100644 index 000000000..4edf13b00 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/matches-318ee57524fb206e/lib-matches @@ -0,0 +1 @@ +472e9adaf3f50635 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/matches-318ee57524fb206e/lib-matches.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/matches-318ee57524fb206e/lib-matches.json new file mode 100644 index 000000000..64b9014d4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/matches-318ee57524fb206e/lib-matches.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":7574802484889621544,"profile":2225463790103693989,"path":9613525192884670164,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\matches-318ee57524fb206e\\dep-lib-matches","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/memchr-1700c8f0399e475b/dep-lib-memchr b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/memchr-1700c8f0399e475b/dep-lib-memchr new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/memchr-1700c8f0399e475b/dep-lib-memchr differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/memchr-1700c8f0399e475b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/memchr-1700c8f0399e475b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/memchr-1700c8f0399e475b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/memchr-1700c8f0399e475b/lib-memchr b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/memchr-1700c8f0399e475b/lib-memchr new file mode 100644 index 000000000..881b8d703 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/memchr-1700c8f0399e475b/lib-memchr @@ -0,0 +1 @@ +d2f9ea9ebbb0be90 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/memchr-1700c8f0399e475b/lib-memchr.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/memchr-1700c8f0399e475b/lib-memchr.json new file mode 100644 index 000000000..3ddf3fa7c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/memchr-1700c8f0399e475b/lib-memchr.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"core\", \"default\", \"libc\", \"logging\", \"rustc-dep-of-std\", \"std\", \"use_std\"]","target":11745930252914242013,"profile":15657897354478470176,"path":17258227338955592305,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\memchr-1700c8f0399e475b\\dep-lib-memchr","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mime-a54c3b5b992aef2d/dep-lib-mime b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mime-a54c3b5b992aef2d/dep-lib-mime new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mime-a54c3b5b992aef2d/dep-lib-mime differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mime-a54c3b5b992aef2d/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mime-a54c3b5b992aef2d/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mime-a54c3b5b992aef2d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mime-a54c3b5b992aef2d/lib-mime b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mime-a54c3b5b992aef2d/lib-mime new file mode 100644 index 000000000..9c1707a2c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mime-a54c3b5b992aef2d/lib-mime @@ -0,0 +1 @@ +4edf55f30d53ebca \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mime-a54c3b5b992aef2d/lib-mime.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mime-a54c3b5b992aef2d/lib-mime.json new file mode 100644 index 000000000..9e044789f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/mime-a54c3b5b992aef2d/lib-mime.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":2764086469773243511,"profile":15657897354478470176,"path":5819358585251735792,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\mime-a54c3b5b992aef2d\\dep-lib-mime","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/miniz_oxide-c57b0f47195fc309/dep-lib-miniz_oxide b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/miniz_oxide-c57b0f47195fc309/dep-lib-miniz_oxide new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/miniz_oxide-c57b0f47195fc309/dep-lib-miniz_oxide differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/miniz_oxide-c57b0f47195fc309/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/miniz_oxide-c57b0f47195fc309/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/miniz_oxide-c57b0f47195fc309/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/miniz_oxide-c57b0f47195fc309/lib-miniz_oxide b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/miniz_oxide-c57b0f47195fc309/lib-miniz_oxide new file mode 100644 index 000000000..6cc7cdee2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/miniz_oxide-c57b0f47195fc309/lib-miniz_oxide @@ -0,0 +1 @@ +25cfe01ea4e04cba \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/miniz_oxide-c57b0f47195fc309/lib-miniz_oxide.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/miniz_oxide-c57b0f47195fc309/lib-miniz_oxide.json new file mode 100644 index 000000000..6f3807e46 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/miniz_oxide-c57b0f47195fc309/lib-miniz_oxide.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"simd\", \"simd-adler32\", \"with-alloc\"]","declared_features":"[\"alloc\", \"block-boundary\", \"core\", \"default\", \"rustc-dep-of-std\", \"serde\", \"simd\", \"simd-adler32\", \"std\", \"with-alloc\"]","target":8661567070972402511,"profile":9346826069578435451,"path":17797108928789984010,"deps":[[5982862185909702272,"simd_adler32",false,7505669921866377910],[7911289239703230891,"adler2",false,3307800164746107521]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\miniz_oxide-c57b0f47195fc309\\dep-lib-miniz_oxide","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/muda-7eb4a88ba8594de9/dep-lib-muda b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/muda-7eb4a88ba8594de9/dep-lib-muda new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/muda-7eb4a88ba8594de9/dep-lib-muda differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/muda-7eb4a88ba8594de9/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/muda-7eb4a88ba8594de9/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/muda-7eb4a88ba8594de9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/muda-7eb4a88ba8594de9/lib-muda b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/muda-7eb4a88ba8594de9/lib-muda new file mode 100644 index 000000000..3a0904c50 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/muda-7eb4a88ba8594de9/lib-muda @@ -0,0 +1 @@ +5544614bc683f042 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/muda-7eb4a88ba8594de9/lib-muda.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/muda-7eb4a88ba8594de9/lib-muda.json new file mode 100644 index 000000000..8890b8380 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/muda-7eb4a88ba8594de9/lib-muda.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"common-controls-v6\", \"gtk\", \"serde\"]","declared_features":"[\"common-controls-v6\", \"default\", \"gtk\", \"libxdo\", \"serde\"]","target":5140358902516826434,"profile":15657897354478470176,"path":8350239302751958065,"deps":[[2448563160050429386,"thiserror",false,11087210622057152061],[3722963349756955755,"once_cell",false,12341109524702844370],[7263319592666514104,"windows_sys",false,7251791340805133764],[7606335748176206944,"dpi",false,9362547875939283471],[9727213718512686088,"crossbeam_channel",false,808050435545116731],[13548984313718623784,"serde",false,9531788703992814231],[14532484442929614732,"keyboard_types",false,13570935937208475134]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\muda-7eb4a88ba8594de9\\dep-lib-muda","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/new_debug_unreachable-889979829d793b5c/dep-lib-debug_unreachable b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/new_debug_unreachable-889979829d793b5c/dep-lib-debug_unreachable new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/new_debug_unreachable-889979829d793b5c/dep-lib-debug_unreachable differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/new_debug_unreachable-889979829d793b5c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/new_debug_unreachable-889979829d793b5c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/new_debug_unreachable-889979829d793b5c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/new_debug_unreachable-889979829d793b5c/lib-debug_unreachable b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/new_debug_unreachable-889979829d793b5c/lib-debug_unreachable new file mode 100644 index 000000000..60335a10d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/new_debug_unreachable-889979829d793b5c/lib-debug_unreachable @@ -0,0 +1 @@ +565c09cfc0c4fab8 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/new_debug_unreachable-889979829d793b5c/lib-debug_unreachable.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/new_debug_unreachable-889979829d793b5c/lib-debug_unreachable.json new file mode 100644 index 000000000..ce701bb55 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/new_debug_unreachable-889979829d793b5c/lib-debug_unreachable.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":7622437403250301378,"profile":2225463790103693989,"path":2152624627380519626,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\new_debug_unreachable-889979829d793b5c\\dep-lib-debug_unreachable","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/nodrop-e61222ef8f993d82/dep-lib-nodrop b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/nodrop-e61222ef8f993d82/dep-lib-nodrop new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/nodrop-e61222ef8f993d82/dep-lib-nodrop differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/nodrop-e61222ef8f993d82/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/nodrop-e61222ef8f993d82/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/nodrop-e61222ef8f993d82/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/nodrop-e61222ef8f993d82/lib-nodrop b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/nodrop-e61222ef8f993d82/lib-nodrop new file mode 100644 index 000000000..c8888057e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/nodrop-e61222ef8f993d82/lib-nodrop @@ -0,0 +1 @@ +5818ab6838e19a28 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/nodrop-e61222ef8f993d82/lib-nodrop.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/nodrop-e61222ef8f993d82/lib-nodrop.json new file mode 100644 index 000000000..2d1934dce --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/nodrop-e61222ef8f993d82/lib-nodrop.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"nodrop-union\", \"std\", \"use_needs_drop\", \"use_union\"]","target":5952940874479064501,"profile":2225463790103693989,"path":3183405655077673599,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\nodrop-e61222ef8f993d82\\dep-lib-nodrop","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/num-conv-a5c1a73787844956/dep-lib-num_conv b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/num-conv-a5c1a73787844956/dep-lib-num_conv new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/num-conv-a5c1a73787844956/dep-lib-num_conv differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/num-conv-a5c1a73787844956/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/num-conv-a5c1a73787844956/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/num-conv-a5c1a73787844956/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/num-conv-a5c1a73787844956/lib-num_conv b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/num-conv-a5c1a73787844956/lib-num_conv new file mode 100644 index 000000000..5e78324d7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/num-conv-a5c1a73787844956/lib-num_conv @@ -0,0 +1 @@ +2f88e354d145df3f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/num-conv-a5c1a73787844956/lib-num_conv.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/num-conv-a5c1a73787844956/lib-num_conv.json new file mode 100644 index 000000000..02942ef72 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/num-conv-a5c1a73787844956/lib-num_conv.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":8759765779269301280,"profile":308716055695625420,"path":6324399962765924297,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\num-conv-a5c1a73787844956\\dep-lib-num_conv","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/once_cell-0c3a3c223d21dba8/dep-lib-once_cell b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/once_cell-0c3a3c223d21dba8/dep-lib-once_cell new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/once_cell-0c3a3c223d21dba8/dep-lib-once_cell differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/once_cell-0c3a3c223d21dba8/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/once_cell-0c3a3c223d21dba8/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/once_cell-0c3a3c223d21dba8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/once_cell-0c3a3c223d21dba8/lib-once_cell b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/once_cell-0c3a3c223d21dba8/lib-once_cell new file mode 100644 index 000000000..91c4cdc14 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/once_cell-0c3a3c223d21dba8/lib-once_cell @@ -0,0 +1 @@ +d2551a0aba6d44ab \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/once_cell-0c3a3c223d21dba8/lib-once_cell.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/once_cell-0c3a3c223d21dba8/lib-once_cell.json new file mode 100644 index 000000000..707267032 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/once_cell-0c3a3c223d21dba8/lib-once_cell.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"race\", \"std\"]","declared_features":"[\"alloc\", \"atomic-polyfill\", \"critical-section\", \"default\", \"parking_lot\", \"portable-atomic\", \"race\", \"std\", \"unstable\"]","target":17524666916136250164,"profile":15657897354478470176,"path":4168834609343973577,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\once_cell-0c3a3c223d21dba8\\dep-lib-once_cell","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/option-ext-b1405ce20b040236/dep-lib-option_ext b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/option-ext-b1405ce20b040236/dep-lib-option_ext new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/option-ext-b1405ce20b040236/dep-lib-option_ext differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/option-ext-b1405ce20b040236/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/option-ext-b1405ce20b040236/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/option-ext-b1405ce20b040236/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/option-ext-b1405ce20b040236/lib-option_ext b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/option-ext-b1405ce20b040236/lib-option_ext new file mode 100644 index 000000000..365aa6cbb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/option-ext-b1405ce20b040236/lib-option_ext @@ -0,0 +1 @@ +851f39ce72da70e3 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/option-ext-b1405ce20b040236/lib-option_ext.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/option-ext-b1405ce20b040236/lib-option_ext.json new file mode 100644 index 000000000..3dbfe2d33 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/option-ext-b1405ce20b040236/lib-option_ext.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":17153617223804709240,"profile":15657897354478470176,"path":11399072178446923065,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\option-ext-b1405ce20b040236\\dep-lib-option_ext","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot-557c2f31840a2255/dep-lib-parking_lot b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot-557c2f31840a2255/dep-lib-parking_lot new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot-557c2f31840a2255/dep-lib-parking_lot differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot-557c2f31840a2255/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot-557c2f31840a2255/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot-557c2f31840a2255/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot-557c2f31840a2255/lib-parking_lot b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot-557c2f31840a2255/lib-parking_lot new file mode 100644 index 000000000..57845568f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot-557c2f31840a2255/lib-parking_lot @@ -0,0 +1 @@ +3eee87894411a87f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot-557c2f31840a2255/lib-parking_lot.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot-557c2f31840a2255/lib-parking_lot.json new file mode 100644 index 000000000..d61dcd567 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot-557c2f31840a2255/lib-parking_lot.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\"]","declared_features":"[\"arc_lock\", \"deadlock_detection\", \"default\", \"hardware-lock-elision\", \"nightly\", \"owning_ref\", \"send_guard\", \"serde\"]","target":9887373948397848517,"profile":15657897354478470176,"path":18346729452786459797,"deps":[[2555121257709722468,"lock_api",false,9622204343106427905],[6545091685033313457,"parking_lot_core",false,389909410410412783]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\parking_lot-557c2f31840a2255\\dep-lib-parking_lot","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7ad95b3397485f09/dep-lib-parking_lot_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7ad95b3397485f09/dep-lib-parking_lot_core new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7ad95b3397485f09/dep-lib-parking_lot_core differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7ad95b3397485f09/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7ad95b3397485f09/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7ad95b3397485f09/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7ad95b3397485f09/lib-parking_lot_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7ad95b3397485f09/lib-parking_lot_core new file mode 100644 index 000000000..1b90b4097 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7ad95b3397485f09/lib-parking_lot_core @@ -0,0 +1 @@ +ef3a18fe8a3c6905 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7ad95b3397485f09/lib-parking_lot_core.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7ad95b3397485f09/lib-parking_lot_core.json new file mode 100644 index 000000000..d46f6deda --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7ad95b3397485f09/lib-parking_lot_core.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\"]","target":12558056885032795287,"profile":15657897354478470176,"path":8913978652241692997,"deps":[[3666196340704888985,"smallvec",false,8171192460323762105],[6545091685033313457,"build_script_build",false,4182686974688174519],[6959378045035346538,"windows_link",false,8477498329638799626],[7667230146095136825,"cfg_if",false,12313751931663862839]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\parking_lot_core-7ad95b3397485f09\\dep-lib-parking_lot_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7be78fd9d7cb8cf7/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7be78fd9d7cb8cf7/run-build-script-build-script-build new file mode 100644 index 000000000..1d643c5c4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7be78fd9d7cb8cf7/run-build-script-build-script-build @@ -0,0 +1 @@ +b721f184a4e30b3a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7be78fd9d7cb8cf7/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7be78fd9d7cb8cf7/run-build-script-build-script-build.json new file mode 100644 index 000000000..bd60a366d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-7be78fd9d7cb8cf7/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6545091685033313457,"build_script_build",false,1895079959963837256]],"local":[{"RerunIfChanged":{"output":"debug\\build\\parking_lot_core-7be78fd9d7cb8cf7\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-9f9d6a8c2245025f/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-9f9d6a8c2245025f/build-script-build-script-build new file mode 100644 index 000000000..a50b91d7d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-9f9d6a8c2245025f/build-script-build-script-build @@ -0,0 +1 @@ +48239bda2ead4c1a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-9f9d6a8c2245025f/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-9f9d6a8c2245025f/build-script-build-script-build.json new file mode 100644 index 000000000..16f166fc2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-9f9d6a8c2245025f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"backtrace\", \"deadlock_detection\", \"nightly\", \"petgraph\"]","target":5408242616063297496,"profile":2225463790103693989,"path":5698392738858962662,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\parking_lot_core-9f9d6a8c2245025f\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-9f9d6a8c2245025f/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-9f9d6a8c2245025f/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-9f9d6a8c2245025f/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-9f9d6a8c2245025f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-9f9d6a8c2245025f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/parking_lot_core-9f9d6a8c2245025f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-622884574527a3e6/dep-lib-percent_encoding b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-622884574527a3e6/dep-lib-percent_encoding new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-622884574527a3e6/dep-lib-percent_encoding differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-622884574527a3e6/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-622884574527a3e6/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-622884574527a3e6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-622884574527a3e6/lib-percent_encoding b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-622884574527a3e6/lib-percent_encoding new file mode 100644 index 000000000..98e3c3a2b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-622884574527a3e6/lib-percent_encoding @@ -0,0 +1 @@ +85ca5b2daa5c14d1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-622884574527a3e6/lib-percent_encoding.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-622884574527a3e6/lib-percent_encoding.json new file mode 100644 index 000000000..91ad5f6e7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-622884574527a3e6/lib-percent_encoding.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":6219969305134610909,"profile":2225463790103693989,"path":13945239715278329019,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\percent-encoding-622884574527a3e6\\dep-lib-percent_encoding","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-90d6fd36a0e65c1d/dep-lib-percent_encoding b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-90d6fd36a0e65c1d/dep-lib-percent_encoding new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-90d6fd36a0e65c1d/dep-lib-percent_encoding differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-90d6fd36a0e65c1d/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-90d6fd36a0e65c1d/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-90d6fd36a0e65c1d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-90d6fd36a0e65c1d/lib-percent_encoding b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-90d6fd36a0e65c1d/lib-percent_encoding new file mode 100644 index 000000000..198c8a38c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-90d6fd36a0e65c1d/lib-percent_encoding @@ -0,0 +1 @@ +e1073fba67402afb \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-90d6fd36a0e65c1d/lib-percent_encoding.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-90d6fd36a0e65c1d/lib-percent_encoding.json new file mode 100644 index 000000000..057228cdc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/percent-encoding-90d6fd36a0e65c1d/lib-percent_encoding.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":6219969305134610909,"profile":15657897354478470176,"path":13945239715278329019,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\percent-encoding-90d6fd36a0e65c1d\\dep-lib-percent_encoding","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-c2c9d352b50d3414/dep-lib-phf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-c2c9d352b50d3414/dep-lib-phf new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-c2c9d352b50d3414/dep-lib-phf differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-c2c9d352b50d3414/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-c2c9d352b50d3414/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-c2c9d352b50d3414/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-c2c9d352b50d3414/lib-phf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-c2c9d352b50d3414/lib-phf new file mode 100644 index 000000000..c95819281 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-c2c9d352b50d3414/lib-phf @@ -0,0 +1 @@ +ed5afc89c53b2cc8 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-c2c9d352b50d3414/lib-phf.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-c2c9d352b50d3414/lib-phf.json new file mode 100644 index 000000000..711454b28 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-c2c9d352b50d3414/lib-phf.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"macros\", \"phf_macros\", \"proc-macro-hack\", \"std\"]","declared_features":"[\"default\", \"macros\", \"phf_macros\", \"proc-macro-hack\", \"serde\", \"std\", \"uncased\", \"unicase\"]","target":3117898612494421391,"profile":2225463790103693989,"path":9032026699893173086,"deps":[[2132929450596319411,"phf_shared",false,9314352161041319821],[4789512923348697266,"proc_macro_hack",false,3608985052850606909],[16348614515420640917,"phf_macros",false,9810042478807249118]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf-c2c9d352b50d3414\\dep-lib-phf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-ddaf2a3f26b4cc7e/dep-lib-phf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-ddaf2a3f26b4cc7e/dep-lib-phf new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-ddaf2a3f26b4cc7e/dep-lib-phf differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-ddaf2a3f26b4cc7e/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-ddaf2a3f26b4cc7e/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-ddaf2a3f26b4cc7e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-ddaf2a3f26b4cc7e/lib-phf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-ddaf2a3f26b4cc7e/lib-phf new file mode 100644 index 000000000..8b64e7817 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-ddaf2a3f26b4cc7e/lib-phf @@ -0,0 +1 @@ +58f553bd204483b2 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-ddaf2a3f26b4cc7e/lib-phf.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-ddaf2a3f26b4cc7e/lib-phf.json new file mode 100644 index 000000000..16aef2cb2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-ddaf2a3f26b4cc7e/lib-phf.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"macros\", \"phf_macros\", \"std\"]","declared_features":"[\"default\", \"macros\", \"phf_macros\", \"serde\", \"std\", \"uncased\", \"unicase\"]","target":10640910166656384580,"profile":15657897354478470176,"path":7170219831612618791,"deps":[[7564874552398678785,"phf_macros",false,14705084706397990830],[9060940869921439196,"phf_shared",false,9442904987191284981]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf-ddaf2a3f26b4cc7e\\dep-lib-phf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-f34c1e24309ec7b7/dep-lib-phf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-f34c1e24309ec7b7/dep-lib-phf new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-f34c1e24309ec7b7/dep-lib-phf differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-f34c1e24309ec7b7/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-f34c1e24309ec7b7/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-f34c1e24309ec7b7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-f34c1e24309ec7b7/lib-phf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-f34c1e24309ec7b7/lib-phf new file mode 100644 index 000000000..0d05e490e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-f34c1e24309ec7b7/lib-phf @@ -0,0 +1 @@ +7ed748dfd1326dba \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-f34c1e24309ec7b7/lib-phf.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-f34c1e24309ec7b7/lib-phf.json new file mode 100644 index 000000000..ea73f3ce2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-f34c1e24309ec7b7/lib-phf.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"macros\", \"phf_macros\", \"std\"]","declared_features":"[\"default\", \"macros\", \"phf_macros\", \"serde\", \"std\", \"uncased\", \"unicase\"]","target":10640910166656384580,"profile":15657897354478470176,"path":7170219831612618791,"deps":[[7564874552398678785,"phf_macros",false,14705084706397990830],[9060940869921439196,"phf_shared",false,7652226686633621566]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf-f34c1e24309ec7b7\\dep-lib-phf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-fab4add640818e82/dep-lib-phf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-fab4add640818e82/dep-lib-phf new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-fab4add640818e82/dep-lib-phf differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-fab4add640818e82/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-fab4add640818e82/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-fab4add640818e82/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-fab4add640818e82/lib-phf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-fab4add640818e82/lib-phf new file mode 100644 index 000000000..cbe4b37c7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-fab4add640818e82/lib-phf @@ -0,0 +1 @@ +822b512d42460c74 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-fab4add640818e82/lib-phf.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-fab4add640818e82/lib-phf.json new file mode 100644 index 000000000..72c7bcc2c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf-fab4add640818e82/lib-phf.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"macros\", \"phf_macros\", \"proc-macro-hack\", \"std\", \"unicase\"]","target":3117898612494421391,"profile":2225463790103693989,"path":8105062127810003636,"deps":[[525931160294428996,"phf_shared",false,2255986180703257833]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf-fab4add640818e82\\dep-lib-phf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-116192eb00a8049b/dep-lib-phf_codegen b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-116192eb00a8049b/dep-lib-phf_codegen new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-116192eb00a8049b/dep-lib-phf_codegen differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-116192eb00a8049b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-116192eb00a8049b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-116192eb00a8049b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-116192eb00a8049b/lib-phf_codegen b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-116192eb00a8049b/lib-phf_codegen new file mode 100644 index 000000000..9a022e49c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-116192eb00a8049b/lib-phf_codegen @@ -0,0 +1 @@ +2cb13d47364262f9 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-116192eb00a8049b/lib-phf_codegen.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-116192eb00a8049b/lib-phf_codegen.json new file mode 100644 index 000000000..dde06ba45 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-116192eb00a8049b/lib-phf_codegen.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":10627201688748800353,"profile":2225463790103693989,"path":6058862753912025161,"deps":[[525931160294428996,"phf_shared",false,2255986180703257833],[7226051393296904356,"phf_generator",false,3418282480277499687]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf_codegen-116192eb00a8049b\\dep-lib-phf_codegen","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-bfa397c82c3483e9/dep-lib-phf_codegen b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-bfa397c82c3483e9/dep-lib-phf_codegen new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-bfa397c82c3483e9/dep-lib-phf_codegen differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-bfa397c82c3483e9/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-bfa397c82c3483e9/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-bfa397c82c3483e9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-bfa397c82c3483e9/lib-phf_codegen b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-bfa397c82c3483e9/lib-phf_codegen new file mode 100644 index 000000000..b14d08fa2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-bfa397c82c3483e9/lib-phf_codegen @@ -0,0 +1 @@ +22809745a6d30796 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-bfa397c82c3483e9/lib-phf_codegen.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-bfa397c82c3483e9/lib-phf_codegen.json new file mode 100644 index 000000000..29f2fe593 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_codegen-bfa397c82c3483e9/lib-phf_codegen.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":4007019473634205266,"profile":2225463790103693989,"path":17859866377944859142,"deps":[[9060940869921439196,"phf_shared",false,7652226686633621566],[18124350542602697595,"phf_generator",false,12755197479964166414]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf_codegen-bfa397c82c3483e9\\dep-lib-phf_codegen","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-06d7251ad9b9ea8c/dep-lib-phf_generator b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-06d7251ad9b9ea8c/dep-lib-phf_generator new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-06d7251ad9b9ea8c/dep-lib-phf_generator differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-06d7251ad9b9ea8c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-06d7251ad9b9ea8c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-06d7251ad9b9ea8c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-06d7251ad9b9ea8c/lib-phf_generator b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-06d7251ad9b9ea8c/lib-phf_generator new file mode 100644 index 000000000..a104f78d4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-06d7251ad9b9ea8c/lib-phf_generator @@ -0,0 +1 @@ +27afe112ce2d702f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-06d7251ad9b9ea8c/lib-phf_generator.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-06d7251ad9b9ea8c/lib-phf_generator.json new file mode 100644 index 000000000..c53ecf608 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-06d7251ad9b9ea8c/lib-phf_generator.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"criterion\"]","target":10230150387258866563,"profile":2225463790103693989,"path":17847116814269717732,"deps":[[525931160294428996,"phf_shared",false,2255986180703257833],[4731167174326621189,"rand",false,14931678684389349222]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf_generator-06d7251ad9b9ea8c\\dep-lib-phf_generator","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-51e0bde173efa111/dep-lib-phf_generator b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-51e0bde173efa111/dep-lib-phf_generator new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-51e0bde173efa111/dep-lib-phf_generator differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-51e0bde173efa111/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-51e0bde173efa111/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-51e0bde173efa111/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-51e0bde173efa111/lib-phf_generator b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-51e0bde173efa111/lib-phf_generator new file mode 100644 index 000000000..9601d2347 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-51e0bde173efa111/lib-phf_generator @@ -0,0 +1 @@ +50b02c41488cb3d6 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-51e0bde173efa111/lib-phf_generator.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-51e0bde173efa111/lib-phf_generator.json new file mode 100644 index 000000000..28a2e5322 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-51e0bde173efa111/lib-phf_generator.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"criterion\"]","target":10230150387258866563,"profile":2225463790103693989,"path":9905450667621155190,"deps":[[2132929450596319411,"phf_shared",false,9314352161041319821],[13208667028893622512,"rand",false,2038744775048052826]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf_generator-51e0bde173efa111\\dep-lib-phf_generator","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-956d2984f13674bb/dep-lib-phf_generator b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-956d2984f13674bb/dep-lib-phf_generator new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-956d2984f13674bb/dep-lib-phf_generator differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-956d2984f13674bb/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-956d2984f13674bb/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-956d2984f13674bb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-956d2984f13674bb/lib-phf_generator b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-956d2984f13674bb/lib-phf_generator new file mode 100644 index 000000000..c104e87b0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-956d2984f13674bb/lib-phf_generator @@ -0,0 +1 @@ +0ec93831879003b1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-956d2984f13674bb/lib-phf_generator.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-956d2984f13674bb/lib-phf_generator.json new file mode 100644 index 000000000..f6ff1846f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_generator-956d2984f13674bb/lib-phf_generator.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"criterion\"]","target":4203241669981453472,"profile":2225463790103693989,"path":17269169772699446530,"deps":[[9060940869921439196,"phf_shared",false,7652226686633621566],[13208667028893622512,"rand",false,2038744775048052826]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf_generator-956d2984f13674bb\\dep-lib-phf_generator","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-100385eeea50ec12/dep-lib-phf_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-100385eeea50ec12/dep-lib-phf_macros new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-100385eeea50ec12/dep-lib-phf_macros differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-100385eeea50ec12/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-100385eeea50ec12/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-100385eeea50ec12/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-100385eeea50ec12/lib-phf_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-100385eeea50ec12/lib-phf_macros new file mode 100644 index 000000000..3a9cbb1bf --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-100385eeea50ec12/lib-phf_macros @@ -0,0 +1 @@ +aeafe12ca1f412cc \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-100385eeea50ec12/lib-phf_macros.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-100385eeea50ec12/lib-phf_macros.json new file mode 100644 index 000000000..4926c7944 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-100385eeea50ec12/lib-phf_macros.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"unicase\", \"unicase_\"]","target":17891898593638043230,"profile":2225463790103693989,"path":4588284345439968965,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[9060940869921439196,"phf_shared",false,7652226686633621566],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128],[18124350542602697595,"phf_generator",false,12755197479964166414]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf_macros-100385eeea50ec12\\dep-lib-phf_macros","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-c0f1a225012a2c6a/dep-lib-phf_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-c0f1a225012a2c6a/dep-lib-phf_macros new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-c0f1a225012a2c6a/dep-lib-phf_macros differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-c0f1a225012a2c6a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-c0f1a225012a2c6a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-c0f1a225012a2c6a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-c0f1a225012a2c6a/lib-phf_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-c0f1a225012a2c6a/lib-phf_macros new file mode 100644 index 000000000..209879b64 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-c0f1a225012a2c6a/lib-phf_macros @@ -0,0 +1 @@ +de70cc9ca8452488 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-c0f1a225012a2c6a/lib-phf_macros.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-c0f1a225012a2c6a/lib-phf_macros.json new file mode 100644 index 000000000..591652595 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_macros-c0f1a225012a2c6a/lib-phf_macros.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"unicase\", \"unicase_\"]","target":13120984418320091921,"profile":2225463790103693989,"path":12310804450771458718,"deps":[[2132929450596319411,"phf_shared",false,9314352161041319821],[2713742371683562785,"syn",false,12754841406911361440],[4289358735036141001,"proc_macro2",false,3635241377792335322],[4789512923348697266,"proc_macro_hack",false,3608985052850606909],[13111758008314797071,"quote",false,4999842116374801128],[15690706847525356077,"phf_generator",false,15470863386906767440]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf_macros-c0f1a225012a2c6a\\dep-lib-phf_macros","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-0fad382921533860/dep-lib-phf_shared b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-0fad382921533860/dep-lib-phf_shared new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-0fad382921533860/dep-lib-phf_shared differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-0fad382921533860/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-0fad382921533860/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-0fad382921533860/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-0fad382921533860/lib-phf_shared b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-0fad382921533860/lib-phf_shared new file mode 100644 index 000000000..20418400b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-0fad382921533860/lib-phf_shared @@ -0,0 +1 @@ +f5144d210ef00b83 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-0fad382921533860/lib-phf_shared.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-0fad382921533860/lib-phf_shared.json new file mode 100644 index 000000000..87c52c4c4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-0fad382921533860/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":13191988717353488301,"profile":15657897354478470176,"path":1261910445375724208,"deps":[[6052281619638306186,"siphasher",false,8283497243862867969]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf_shared-0fad382921533860\\dep-lib-phf_shared","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-25e6ff7ef215b15c/dep-lib-phf_shared b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-25e6ff7ef215b15c/dep-lib-phf_shared new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-25e6ff7ef215b15c/dep-lib-phf_shared differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-25e6ff7ef215b15c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-25e6ff7ef215b15c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-25e6ff7ef215b15c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-25e6ff7ef215b15c/lib-phf_shared b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-25e6ff7ef215b15c/lib-phf_shared new file mode 100644 index 000000000..2a6e805eb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-25e6ff7ef215b15c/lib-phf_shared @@ -0,0 +1 @@ +8d87c2dff0394381 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-25e6ff7ef215b15c/lib-phf_shared.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-25e6ff7ef215b15c/lib-phf_shared.json new file mode 100644 index 000000000..eace00a15 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-25e6ff7ef215b15c/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":886472421596331379,"profile":2225463790103693989,"path":8523812090488316718,"deps":[[8079500665534101559,"siphasher",false,4014924845692734040]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf_shared-25e6ff7ef215b15c\\dep-lib-phf_shared","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-2d58b7bb152fd2b3/dep-lib-phf_shared b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-2d58b7bb152fd2b3/dep-lib-phf_shared new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-2d58b7bb152fd2b3/dep-lib-phf_shared differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-2d58b7bb152fd2b3/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-2d58b7bb152fd2b3/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-2d58b7bb152fd2b3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-2d58b7bb152fd2b3/lib-phf_shared b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-2d58b7bb152fd2b3/lib-phf_shared new file mode 100644 index 000000000..61ac26c73 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-2d58b7bb152fd2b3/lib-phf_shared @@ -0,0 +1 @@ +e90402877adf4e1f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-2d58b7bb152fd2b3/lib-phf_shared.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-2d58b7bb152fd2b3/lib-phf_shared.json new file mode 100644 index 000000000..bad97cb2c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-2d58b7bb152fd2b3/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\", \"unicase\"]","target":886472421596331379,"profile":2225463790103693989,"path":17222529826715823490,"deps":[[8079500665534101559,"siphasher",false,4014924845692734040]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf_shared-2d58b7bb152fd2b3\\dep-lib-phf_shared","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-ffc6687178f39fb9/dep-lib-phf_shared b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-ffc6687178f39fb9/dep-lib-phf_shared new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-ffc6687178f39fb9/dep-lib-phf_shared differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-ffc6687178f39fb9/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-ffc6687178f39fb9/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-ffc6687178f39fb9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-ffc6687178f39fb9/lib-phf_shared b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-ffc6687178f39fb9/lib-phf_shared new file mode 100644 index 000000000..81677911e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-ffc6687178f39fb9/lib-phf_shared @@ -0,0 +1 @@ +3eb88fd5a02b326a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-ffc6687178f39fb9/lib-phf_shared.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-ffc6687178f39fb9/lib-phf_shared.json new file mode 100644 index 000000000..6192ce5f9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/phf_shared-ffc6687178f39fb9/lib-phf_shared.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\", \"uncased\", \"unicase\"]","target":13191988717353488301,"profile":2225463790103693989,"path":1261910445375724208,"deps":[[6052281619638306186,"siphasher",false,8283497243862867969]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\phf_shared-ffc6687178f39fb9\\dep-lib-phf_shared","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/pin-project-lite-5a75a2e00b7248cd/dep-lib-pin_project_lite b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/pin-project-lite-5a75a2e00b7248cd/dep-lib-pin_project_lite new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/pin-project-lite-5a75a2e00b7248cd/dep-lib-pin_project_lite differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/pin-project-lite-5a75a2e00b7248cd/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/pin-project-lite-5a75a2e00b7248cd/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/pin-project-lite-5a75a2e00b7248cd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/pin-project-lite-5a75a2e00b7248cd/lib-pin_project_lite b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/pin-project-lite-5a75a2e00b7248cd/lib-pin_project_lite new file mode 100644 index 000000000..26cd8a21d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/pin-project-lite-5a75a2e00b7248cd/lib-pin_project_lite @@ -0,0 +1 @@ +f681aca4c960adc1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/pin-project-lite-5a75a2e00b7248cd/lib-pin_project_lite.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/pin-project-lite-5a75a2e00b7248cd/lib-pin_project_lite.json new file mode 100644 index 000000000..f948b204b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/pin-project-lite-5a75a2e00b7248cd/lib-pin_project_lite.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":7529200858990304138,"profile":11656033981596501846,"path":3169451095554983722,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\pin-project-lite-5a75a2e00b7248cd\\dep-lib-pin_project_lite","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/png-930252c45238a668/dep-lib-png b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/png-930252c45238a668/dep-lib-png new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/png-930252c45238a668/dep-lib-png differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/png-930252c45238a668/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/png-930252c45238a668/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/png-930252c45238a668/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/png-930252c45238a668/lib-png b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/png-930252c45238a668/lib-png new file mode 100644 index 000000000..9827d0acc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/png-930252c45238a668/lib-png @@ -0,0 +1 @@ +e08468bef306d28a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/png-930252c45238a668/lib-png.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/png-930252c45238a668/lib-png.json new file mode 100644 index 000000000..f0860b423 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/png-930252c45238a668/lib-png.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"benchmarks\", \"unstable\"]","target":10945199330268633162,"profile":9346826069578435451,"path":6654328776985451900,"deps":[[3389776682256874761,"fdeflate",false,15505254186618881093],[7312356825837975969,"crc32fast",false,10918626859547111751],[7636735136738807108,"miniz_oxide",false,13424351584781913893],[10435729446543529114,"bitflags",false,12323201682998925273],[10456045882549826531,"flate2",false,3215267293847009830]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\png-930252c45238a668\\dep-lib-png","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-936f7705d3236cc9/dep-lib-potential_utf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-936f7705d3236cc9/dep-lib-potential_utf new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-936f7705d3236cc9/dep-lib-potential_utf differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-936f7705d3236cc9/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-936f7705d3236cc9/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-936f7705d3236cc9/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-936f7705d3236cc9/lib-potential_utf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-936f7705d3236cc9/lib-potential_utf new file mode 100644 index 000000000..94ef3e622 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-936f7705d3236cc9/lib-potential_utf @@ -0,0 +1 @@ +bcc1e6e047958d05 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-936f7705d3236cc9/lib-potential_utf.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-936f7705d3236cc9/lib-potential_utf.json new file mode 100644 index 000000000..c0ee5c717 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-936f7705d3236cc9/lib-potential_utf.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"writeable\", \"zerovec\"]","target":16089386906944150126,"profile":15657897354478470176,"path":12735940259428872649,"deps":[[14563910249377136032,"zerovec",false,1715448149783892678]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\potential_utf-936f7705d3236cc9\\dep-lib-potential_utf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-9746b19a2e142c05/dep-lib-potential_utf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-9746b19a2e142c05/dep-lib-potential_utf new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-9746b19a2e142c05/dep-lib-potential_utf differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-9746b19a2e142c05/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-9746b19a2e142c05/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-9746b19a2e142c05/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-9746b19a2e142c05/lib-potential_utf b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-9746b19a2e142c05/lib-potential_utf new file mode 100644 index 000000000..e538bfbae --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-9746b19a2e142c05/lib-potential_utf @@ -0,0 +1 @@ +6d052c167dadd968 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-9746b19a2e142c05/lib-potential_utf.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-9746b19a2e142c05/lib-potential_utf.json new file mode 100644 index 000000000..5d6d4a473 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/potential_utf-9746b19a2e142c05/lib-potential_utf.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"writeable\", \"zerovec\"]","target":16089386906944150126,"profile":15657897354478470176,"path":12735940259428872649,"deps":[[14563910249377136032,"zerovec",false,10059502159815721741]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\potential_utf-9746b19a2e142c05\\dep-lib-potential_utf","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/powerfmt-8269943e70c5ad3d/dep-lib-powerfmt b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/powerfmt-8269943e70c5ad3d/dep-lib-powerfmt new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/powerfmt-8269943e70c5ad3d/dep-lib-powerfmt differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/powerfmt-8269943e70c5ad3d/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/powerfmt-8269943e70c5ad3d/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/powerfmt-8269943e70c5ad3d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/powerfmt-8269943e70c5ad3d/lib-powerfmt b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/powerfmt-8269943e70c5ad3d/lib-powerfmt new file mode 100644 index 000000000..b656f7199 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/powerfmt-8269943e70c5ad3d/lib-powerfmt @@ -0,0 +1 @@ +4de0c3fed46528f0 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/powerfmt-8269943e70c5ad3d/lib-powerfmt.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/powerfmt-8269943e70c5ad3d/lib-powerfmt.json new file mode 100644 index 000000000..3823eff28 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/powerfmt-8269943e70c5ad3d/lib-powerfmt.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"alloc\", \"default\", \"macros\", \"std\"]","target":3190409771209632544,"profile":15657897354478470176,"path":14436476237807659890,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\powerfmt-8269943e70c5ad3d\\dep-lib-powerfmt","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ppv-lite86-72a8bff35470726a/dep-lib-ppv_lite86 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ppv-lite86-72a8bff35470726a/dep-lib-ppv_lite86 new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ppv-lite86-72a8bff35470726a/dep-lib-ppv_lite86 differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ppv-lite86-72a8bff35470726a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ppv-lite86-72a8bff35470726a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ppv-lite86-72a8bff35470726a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ppv-lite86-72a8bff35470726a/lib-ppv_lite86 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ppv-lite86-72a8bff35470726a/lib-ppv_lite86 new file mode 100644 index 000000000..33b6eac60 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ppv-lite86-72a8bff35470726a/lib-ppv_lite86 @@ -0,0 +1 @@ +e132e144c9a850c7 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ppv-lite86-72a8bff35470726a/lib-ppv_lite86.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ppv-lite86-72a8bff35470726a/lib-ppv_lite86.json new file mode 100644 index 000000000..6810bb518 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/ppv-lite86-72a8bff35470726a/lib-ppv_lite86.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"simd\", \"std\"]","declared_features":"[\"default\", \"no_simd\", \"simd\", \"std\"]","target":2607852365283500179,"profile":2225463790103693989,"path":5075217497702626326,"deps":[[17375358419629610217,"zerocopy",false,17908889821138912187]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\ppv-lite86-72a8bff35470726a\\dep-lib-ppv_lite86","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/precomputed-hash-634c828c56dc7d76/dep-lib-precomputed_hash b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/precomputed-hash-634c828c56dc7d76/dep-lib-precomputed_hash new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/precomputed-hash-634c828c56dc7d76/dep-lib-precomputed_hash differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/precomputed-hash-634c828c56dc7d76/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/precomputed-hash-634c828c56dc7d76/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/precomputed-hash-634c828c56dc7d76/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/precomputed-hash-634c828c56dc7d76/lib-precomputed_hash b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/precomputed-hash-634c828c56dc7d76/lib-precomputed_hash new file mode 100644 index 000000000..5af2faff3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/precomputed-hash-634c828c56dc7d76/lib-precomputed_hash @@ -0,0 +1 @@ +e556b4334f477d30 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/precomputed-hash-634c828c56dc7d76/lib-precomputed_hash.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/precomputed-hash-634c828c56dc7d76/lib-precomputed_hash.json new file mode 100644 index 000000000..00e50c99f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/precomputed-hash-634c828c56dc7d76/lib-precomputed_hash.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":18034549675578888011,"profile":2225463790103693989,"path":7301776205334335007,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\precomputed-hash-634c828c56dc7d76\\dep-lib-precomputed_hash","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-51d70a37c357b76f/dep-lib-proc_macro_hack b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-51d70a37c357b76f/dep-lib-proc_macro_hack new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-51d70a37c357b76f/dep-lib-proc_macro_hack differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-51d70a37c357b76f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-51d70a37c357b76f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-51d70a37c357b76f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-51d70a37c357b76f/lib-proc_macro_hack b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-51d70a37c357b76f/lib-proc_macro_hack new file mode 100644 index 000000000..b0bf36dbf --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-51d70a37c357b76f/lib-proc_macro_hack @@ -0,0 +1 @@ +3dd3dacac8b01532 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-51d70a37c357b76f/lib-proc_macro_hack.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-51d70a37c357b76f/lib-proc_macro_hack.json new file mode 100644 index 000000000..c8aa23306 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-51d70a37c357b76f/lib-proc_macro_hack.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":11228376381502837825,"profile":2225463790103693989,"path":1835590449881674418,"deps":[[4789512923348697266,"build_script_build",false,12654857728695664119]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\proc-macro-hack-51d70a37c357b76f\\dep-lib-proc_macro_hack","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-7bd31827dd681ea7/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-7bd31827dd681ea7/run-build-script-build-script-build new file mode 100644 index 000000000..7b3387e03 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-7bd31827dd681ea7/run-build-script-build-script-build @@ -0,0 +1 @@ +f7fd02520e169faf \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-7bd31827dd681ea7/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-7bd31827dd681ea7/run-build-script-build-script-build.json new file mode 100644 index 000000000..cfaefd242 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-7bd31827dd681ea7/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4789512923348697266,"build_script_build",false,16288576216858510850]],"local":[{"Precalculated":"0.5.20+deprecated"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-cbd312777f663418/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-cbd312777f663418/build-script-build-script-build new file mode 100644 index 000000000..44875f0e3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-cbd312777f663418/build-script-build-script-build @@ -0,0 +1 @@ +0246bac6c4a50ce2 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-cbd312777f663418/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-cbd312777f663418/build-script-build-script-build.json new file mode 100644 index 000000000..3da6d219c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-cbd312777f663418/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":17883862002600103897,"profile":2225463790103693989,"path":9665615226742190404,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\proc-macro-hack-cbd312777f663418\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-cbd312777f663418/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-cbd312777f663418/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-cbd312777f663418/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-cbd312777f663418/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-cbd312777f663418/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro-hack-cbd312777f663418/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-06dc2396c1f197e2/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-06dc2396c1f197e2/build-script-build-script-build new file mode 100644 index 000000000..e570df10a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-06dc2396c1f197e2/build-script-build-script-build @@ -0,0 +1 @@ +21303e03bd592cbf \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-06dc2396c1f197e2/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-06dc2396c1f197e2/build-script-build-script-build.json new file mode 100644 index 000000000..d2a6cbe3c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-06dc2396c1f197e2/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"proc-macro\", \"span-locations\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":5408242616063297496,"profile":2225463790103693989,"path":16564485349682515027,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\proc-macro2-06dc2396c1f197e2\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-06dc2396c1f197e2/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-06dc2396c1f197e2/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-06dc2396c1f197e2/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-06dc2396c1f197e2/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-06dc2396c1f197e2/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-06dc2396c1f197e2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-130e4624f300a408/dep-lib-proc_macro2 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-130e4624f300a408/dep-lib-proc_macro2 new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-130e4624f300a408/dep-lib-proc_macro2 differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-130e4624f300a408/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-130e4624f300a408/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-130e4624f300a408/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-130e4624f300a408/lib-proc_macro2 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-130e4624f300a408/lib-proc_macro2 new file mode 100644 index 000000000..d57b233ee --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-130e4624f300a408/lib-proc_macro2 @@ -0,0 +1 @@ +da1d1dd4c5f87232 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-130e4624f300a408/lib-proc_macro2.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-130e4624f300a408/lib-proc_macro2.json new file mode 100644 index 000000000..93695771c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-130e4624f300a408/lib-proc_macro2.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"proc-macro\", \"span-locations\"]","declared_features":"[\"default\", \"nightly\", \"proc-macro\", \"span-locations\"]","target":369203346396300798,"profile":2225463790103693989,"path":15376483118218332788,"deps":[[4289358735036141001,"build_script_build",false,10722715718425614844],[8901712065508858692,"unicode_ident",false,7321725533401207332]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\proc-macro2-130e4624f300a408\\dep-lib-proc_macro2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-ae48c250ff580eb1/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-ae48c250ff580eb1/run-build-script-build-script-build new file mode 100644 index 000000000..72a32e6c6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-ae48c250ff580eb1/run-build-script-build-script-build @@ -0,0 +1 @@ +fc99417022bdce94 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-ae48c250ff580eb1/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-ae48c250ff580eb1/run-build-script-build-script-build.json new file mode 100644 index 000000000..5e2d29767 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/proc-macro2-ae48c250ff580eb1/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4289358735036141001,"build_script_build",false,13775484028557602849]],"local":[{"RerunIfChanged":{"output":"debug\\build\\proc-macro2-ae48c250ff580eb1\\output","paths":["src/probe/proc_macro_span.rs","src/probe/proc_macro_span_location.rs","src/probe/proc_macro_span_file.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-177ac2d7e07a0db1/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-177ac2d7e07a0db1/build-script-build-script-build new file mode 100644 index 000000000..cfe7d5efb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-177ac2d7e07a0db1/build-script-build-script-build @@ -0,0 +1 @@ +c5124bc7e1b377eb \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-177ac2d7e07a0db1/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-177ac2d7e07a0db1/build-script-build-script-build.json new file mode 100644 index 000000000..3317690fa --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-177ac2d7e07a0db1/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":5408242616063297496,"profile":2225463790103693989,"path":5363967362097243239,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\quote-177ac2d7e07a0db1\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-177ac2d7e07a0db1/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-177ac2d7e07a0db1/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-177ac2d7e07a0db1/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-177ac2d7e07a0db1/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-177ac2d7e07a0db1/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-177ac2d7e07a0db1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-1dc63a65512a0ff8/dep-lib-quote b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-1dc63a65512a0ff8/dep-lib-quote new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-1dc63a65512a0ff8/dep-lib-quote differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-1dc63a65512a0ff8/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-1dc63a65512a0ff8/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-1dc63a65512a0ff8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-1dc63a65512a0ff8/lib-quote b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-1dc63a65512a0ff8/lib-quote new file mode 100644 index 000000000..f1cf97eef --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-1dc63a65512a0ff8/lib-quote @@ -0,0 +1 @@ +e8aa8e1fea016345 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-1dc63a65512a0ff8/lib-quote.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-1dc63a65512a0ff8/lib-quote.json new file mode 100644 index 000000000..868b263da --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-1dc63a65512a0ff8/lib-quote.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":8313845041260779044,"profile":2225463790103693989,"path":17719241676523408522,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[13111758008314797071,"build_script_build",false,1313673812657934056]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\quote-1dc63a65512a0ff8\\dep-lib-quote","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-390f36d92becc034/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-390f36d92becc034/run-build-script-build-script-build new file mode 100644 index 000000000..48cb24b17 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-390f36d92becc034/run-build-script-build-script-build @@ -0,0 +1 @@ +e88e355a5f1b3b12 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-390f36d92becc034/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-390f36d92becc034/run-build-script-build-script-build.json new file mode 100644 index 000000000..f29dc8500 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/quote-390f36d92becc034/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13111758008314797071,"build_script_build",false,16967227903434232517]],"local":[{"RerunIfChanged":{"output":"debug\\build\\quote-390f36d92becc034\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-1541a52ebed50ac1/dep-lib-rand b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-1541a52ebed50ac1/dep-lib-rand new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-1541a52ebed50ac1/dep-lib-rand differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-1541a52ebed50ac1/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-1541a52ebed50ac1/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-1541a52ebed50ac1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-1541a52ebed50ac1/lib-rand b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-1541a52ebed50ac1/lib-rand new file mode 100644 index 000000000..66db5c891 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-1541a52ebed50ac1/lib-rand @@ -0,0 +1 @@ +66974ceba6fa37cf \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-1541a52ebed50ac1/lib-rand.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-1541a52ebed50ac1/lib-rand.json new file mode 100644 index 000000000..fe10ddc0c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-1541a52ebed50ac1/lib-rand.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"getrandom\", \"getrandom_package\", \"libc\", \"rand_pcg\", \"small_rng\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"getrandom_package\", \"libc\", \"log\", \"nightly\", \"packed_simd\", \"rand_pcg\", \"serde1\", \"simd_support\", \"small_rng\", \"std\", \"stdweb\", \"wasm-bindgen\"]","target":8827111241893198906,"profile":2225463790103693989,"path":17353945466822604369,"deps":[[1333041802001714747,"rand_chacha",false,1452852427749939958],[1740877332521282793,"rand_core",false,17706602523864114966],[5170503507811329045,"getrandom_package",false,9679936679722264438],[9875507072765444643,"rand_pcg",false,6982746133497761251]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\rand-1541a52ebed50ac1\\dep-lib-rand","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-2523e6887457d4a3/dep-lib-rand b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-2523e6887457d4a3/dep-lib-rand new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-2523e6887457d4a3/dep-lib-rand differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-2523e6887457d4a3/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-2523e6887457d4a3/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-2523e6887457d4a3/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-2523e6887457d4a3/lib-rand b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-2523e6887457d4a3/lib-rand new file mode 100644 index 000000000..f7292e286 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-2523e6887457d4a3/lib-rand @@ -0,0 +1 @@ +5a406c3892134b1c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-2523e6887457d4a3/lib-rand.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-2523e6887457d4a3/lib-rand.json new file mode 100644 index 000000000..d0a2af212 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand-2523e6887457d4a3/lib-rand.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"rand_chacha\", \"small_rng\", \"std\", \"std_rng\"]","declared_features":"[\"alloc\", \"default\", \"getrandom\", \"libc\", \"log\", \"min_const_gen\", \"nightly\", \"packed_simd\", \"rand_chacha\", \"serde\", \"serde1\", \"simd_support\", \"small_rng\", \"std\", \"std_rng\"]","target":8827111241893198906,"profile":2225463790103693989,"path":17170236596967214865,"deps":[[1573238666360410412,"rand_chacha",false,16780057919574626512],[18130209639506977569,"rand_core",false,17366407521499342718]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\rand-2523e6887457d4a3\\dep-lib-rand","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-08e15bfd4b8ce3cd/dep-lib-rand_chacha b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-08e15bfd4b8ce3cd/dep-lib-rand_chacha new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-08e15bfd4b8ce3cd/dep-lib-rand_chacha differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-08e15bfd4b8ce3cd/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-08e15bfd4b8ce3cd/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-08e15bfd4b8ce3cd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-08e15bfd4b8ce3cd/lib-rand_chacha b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-08e15bfd4b8ce3cd/lib-rand_chacha new file mode 100644 index 000000000..595091c9b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-08e15bfd4b8ce3cd/lib-rand_chacha @@ -0,0 +1 @@ +d0d0b9f6c5bddee8 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-08e15bfd4b8ce3cd/lib-rand_chacha.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-08e15bfd4b8ce3cd/lib-rand_chacha.json new file mode 100644 index 000000000..8ac26dd0b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-08e15bfd4b8ce3cd/lib-rand_chacha.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"std\"]","declared_features":"[\"default\", \"serde\", \"serde1\", \"simd\", \"std\"]","target":15766068575093147603,"profile":2225463790103693989,"path":14428508748283593480,"deps":[[12919011715531272606,"ppv_lite86",false,14362164794082013921],[18130209639506977569,"rand_core",false,17366407521499342718]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\rand_chacha-08e15bfd4b8ce3cd\\dep-lib-rand_chacha","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-9141beb506c961ef/dep-lib-rand_chacha b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-9141beb506c961ef/dep-lib-rand_chacha new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-9141beb506c961ef/dep-lib-rand_chacha differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-9141beb506c961ef/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-9141beb506c961ef/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-9141beb506c961ef/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-9141beb506c961ef/lib-rand_chacha b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-9141beb506c961ef/lib-rand_chacha new file mode 100644 index 000000000..a18a7930d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-9141beb506c961ef/lib-rand_chacha @@ -0,0 +1 @@ +f65a19e395912914 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-9141beb506c961ef/lib-rand_chacha.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-9141beb506c961ef/lib-rand_chacha.json new file mode 100644 index 000000000..a6be1310d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_chacha-9141beb506c961ef/lib-rand_chacha.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"std\"]","declared_features":"[\"default\", \"simd\", \"std\"]","target":15766068575093147603,"profile":2225463790103693989,"path":5030894472243673215,"deps":[[1740877332521282793,"rand_core",false,17706602523864114966],[12919011715531272606,"ppv_lite86",false,14362164794082013921]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\rand_chacha-9141beb506c961ef\\dep-lib-rand_chacha","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-7102df04978dd644/dep-lib-rand_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-7102df04978dd644/dep-lib-rand_core new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-7102df04978dd644/dep-lib-rand_core differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-7102df04978dd644/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-7102df04978dd644/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-7102df04978dd644/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-7102df04978dd644/lib-rand_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-7102df04978dd644/lib-rand_core new file mode 100644 index 000000000..cfea363a4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-7102df04978dd644/lib-rand_core @@ -0,0 +1 @@ +7ee7a32fa1df01f1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-7102df04978dd644/lib-rand_core.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-7102df04978dd644/lib-rand_core.json new file mode 100644 index 000000000..a980c819a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-7102df04978dd644/lib-rand_core.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"getrandom\", \"std\"]","declared_features":"[\"alloc\", \"getrandom\", \"serde\", \"serde1\", \"std\"]","target":13770603672348587087,"profile":2225463790103693989,"path":5907048732844304272,"deps":[[11023519408959114924,"getrandom",false,12176216983940594991]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\rand_core-7102df04978dd644\\dep-lib-rand_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-c6d419aca9e9182b/dep-lib-rand_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-c6d419aca9e9182b/dep-lib-rand_core new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-c6d419aca9e9182b/dep-lib-rand_core differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-c6d419aca9e9182b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-c6d419aca9e9182b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-c6d419aca9e9182b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-c6d419aca9e9182b/lib-rand_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-c6d419aca9e9182b/lib-rand_core new file mode 100644 index 000000000..9bb6e2020 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-c6d419aca9e9182b/lib-rand_core @@ -0,0 +1 @@ +16a7f48d2e7dbaf5 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-c6d419aca9e9182b/lib-rand_core.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-c6d419aca9e9182b/lib-rand_core.json new file mode 100644 index 000000000..a1176c7f6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_core-c6d419aca9e9182b/lib-rand_core.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"getrandom\", \"std\"]","declared_features":"[\"alloc\", \"getrandom\", \"serde\", \"serde1\", \"std\"]","target":13770603672348587087,"profile":2225463790103693989,"path":11765701522438213014,"deps":[[5170503507811329045,"getrandom",false,9679936679722264438]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\rand_core-c6d419aca9e9182b\\dep-lib-rand_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_pcg-6333e113d8f6ad58/dep-lib-rand_pcg b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_pcg-6333e113d8f6ad58/dep-lib-rand_pcg new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_pcg-6333e113d8f6ad58/dep-lib-rand_pcg differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_pcg-6333e113d8f6ad58/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_pcg-6333e113d8f6ad58/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_pcg-6333e113d8f6ad58/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_pcg-6333e113d8f6ad58/lib-rand_pcg b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_pcg-6333e113d8f6ad58/lib-rand_pcg new file mode 100644 index 000000000..c0abb3818 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_pcg-6333e113d8f6ad58/lib-rand_pcg @@ -0,0 +1 @@ +e3cdddbb9cb2e760 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_pcg-6333e113d8f6ad58/lib-rand_pcg.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_pcg-6333e113d8f6ad58/lib-rand_pcg.json new file mode 100644 index 000000000..ae5d2ebea --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rand_pcg-6333e113d8f6ad58/lib-rand_pcg.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"serde\", \"serde1\"]","target":15639958921810889256,"profile":2225463790103693989,"path":2266870732748773411,"deps":[[1740877332521282793,"rand_core",false,17706602523864114966]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\rand_pcg-6333e113d8f6ad58\\dep-lib-rand_pcg","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/raw-window-handle-b839a26496cfbf9a/dep-lib-raw_window_handle b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/raw-window-handle-b839a26496cfbf9a/dep-lib-raw_window_handle new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/raw-window-handle-b839a26496cfbf9a/dep-lib-raw_window_handle differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/raw-window-handle-b839a26496cfbf9a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/raw-window-handle-b839a26496cfbf9a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/raw-window-handle-b839a26496cfbf9a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/raw-window-handle-b839a26496cfbf9a/lib-raw_window_handle b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/raw-window-handle-b839a26496cfbf9a/lib-raw_window_handle new file mode 100644 index 000000000..b4626b48c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/raw-window-handle-b839a26496cfbf9a/lib-raw_window_handle @@ -0,0 +1 @@ +fead9dbf469f51da \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/raw-window-handle-b839a26496cfbf9a/lib-raw_window_handle.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/raw-window-handle-b839a26496cfbf9a/lib-raw_window_handle.json new file mode 100644 index 000000000..356271555 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/raw-window-handle-b839a26496cfbf9a/lib-raw_window_handle.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"std\", \"wasm-bindgen\", \"wasm-bindgen-0-2\"]","target":10454692504300247140,"profile":15657897354478470176,"path":10389008872212130779,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\raw-window-handle-b839a26496cfbf9a\\dep-lib-raw_window_handle","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-automata-2c684312c39ea968/dep-lib-regex_automata b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-automata-2c684312c39ea968/dep-lib-regex_automata new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-automata-2c684312c39ea968/dep-lib-regex_automata differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-automata-2c684312c39ea968/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-automata-2c684312c39ea968/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-automata-2c684312c39ea968/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-automata-2c684312c39ea968/lib-regex_automata b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-automata-2c684312c39ea968/lib-regex_automata new file mode 100644 index 000000000..2c7467a59 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-automata-2c684312c39ea968/lib-regex_automata @@ -0,0 +1 @@ +e875fa4ba2313d31 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-automata-2c684312c39ea968/lib-regex_automata.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-automata-2c684312c39ea968/lib-regex_automata.json new file mode 100644 index 000000000..147fa9c80 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-automata-2c684312c39ea968/lib-regex_automata.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"dfa-onepass\", \"hybrid\", \"meta\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","declared_features":"[\"alloc\", \"default\", \"dfa\", \"dfa-build\", \"dfa-onepass\", \"dfa-search\", \"hybrid\", \"internal-instrument\", \"internal-instrument-pikevm\", \"logging\", \"meta\", \"nfa\", \"nfa-backtrack\", \"nfa-pikevm\", \"nfa-thompson\", \"perf\", \"perf-inline\", \"perf-literal\", \"perf-literal-multisubstring\", \"perf-literal-substring\", \"std\", \"syntax\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unicode-word-boundary\"]","target":4726246767843925232,"profile":18440009518878700890,"path":11645540331167303839,"deps":[[1363051979936526615,"memchr",false,10429968106908219858],[13473492399833278124,"regex_syntax",false,14753753428809187098],[15324871377471570981,"aho_corasick",false,11522576525720053512]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\regex-automata-2c684312c39ea968\\dep-lib-regex_automata","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-f9e102cc08839ffb/dep-lib-regex b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-f9e102cc08839ffb/dep-lib-regex new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-f9e102cc08839ffb/dep-lib-regex differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-f9e102cc08839ffb/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-f9e102cc08839ffb/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-f9e102cc08839ffb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-f9e102cc08839ffb/lib-regex b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-f9e102cc08839ffb/lib-regex new file mode 100644 index 000000000..be5170c5c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-f9e102cc08839ffb/lib-regex @@ -0,0 +1 @@ +e8fe5b8d5ec12916 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-f9e102cc08839ffb/lib-regex.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-f9e102cc08839ffb/lib-regex.json new file mode 100644 index 000000000..b1d298b3a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-f9e102cc08839ffb/lib-regex.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"default\", \"logging\", \"pattern\", \"perf\", \"perf-backtrack\", \"perf-cache\", \"perf-dfa\", \"perf-dfa-full\", \"perf-inline\", \"perf-literal\", \"perf-onepass\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\", \"unstable\", \"use_std\"]","target":5796931310894148030,"profile":18440009518878700890,"path":635820853834246261,"deps":[[1363051979936526615,"memchr",false,10429968106908219858],[3621165330500844947,"regex_automata",false,3548046654566987240],[13473492399833278124,"regex_syntax",false,14753753428809187098],[15324871377471570981,"aho_corasick",false,11522576525720053512]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\regex-f9e102cc08839ffb\\dep-lib-regex","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-syntax-35b8eea190baa77c/dep-lib-regex_syntax b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-syntax-35b8eea190baa77c/dep-lib-regex_syntax new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-syntax-35b8eea190baa77c/dep-lib-regex_syntax differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-syntax-35b8eea190baa77c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-syntax-35b8eea190baa77c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-syntax-35b8eea190baa77c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-syntax-35b8eea190baa77c/lib-regex_syntax b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-syntax-35b8eea190baa77c/lib-regex_syntax new file mode 100644 index 000000000..764fe3922 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-syntax-35b8eea190baa77c/lib-regex_syntax @@ -0,0 +1 @@ +1a7fdf2393dcbfcc \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-syntax-35b8eea190baa77c/lib-regex_syntax.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-syntax-35b8eea190baa77c/lib-regex_syntax.json new file mode 100644 index 000000000..705a36a6e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/regex-syntax-35b8eea190baa77c/lib-regex_syntax.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","declared_features":"[\"arbitrary\", \"default\", \"std\", \"unicode\", \"unicode-age\", \"unicode-bool\", \"unicode-case\", \"unicode-gencat\", \"unicode-perl\", \"unicode-script\", \"unicode-segment\"]","target":742186494246220192,"profile":18440009518878700890,"path":14113226911849239252,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\regex-syntax-35b8eea190baa77c\\dep-lib-regex_syntax","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rustc_version-fe2534ca1d526761/dep-lib-rustc_version b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rustc_version-fe2534ca1d526761/dep-lib-rustc_version new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rustc_version-fe2534ca1d526761/dep-lib-rustc_version differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rustc_version-fe2534ca1d526761/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rustc_version-fe2534ca1d526761/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rustc_version-fe2534ca1d526761/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rustc_version-fe2534ca1d526761/lib-rustc_version b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rustc_version-fe2534ca1d526761/lib-rustc_version new file mode 100644 index 000000000..1c83e5a52 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rustc_version-fe2534ca1d526761/lib-rustc_version @@ -0,0 +1 @@ +5deb36cad871ab19 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rustc_version-fe2534ca1d526761/lib-rustc_version.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rustc_version-fe2534ca1d526761/lib-rustc_version.json new file mode 100644 index 000000000..2cd943935 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/rustc_version-fe2534ca1d526761/lib-rustc_version.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":18294139061885094686,"profile":2225463790103693989,"path":18355543491322037304,"deps":[[18361894353739432590,"semver",false,17711502904129342382]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\rustc_version-fe2534ca1d526761\\dep-lib-rustc_version","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-8aaacfd38df0eee5/dep-lib-same_file b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-8aaacfd38df0eee5/dep-lib-same_file new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-8aaacfd38df0eee5/dep-lib-same_file differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-8aaacfd38df0eee5/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-8aaacfd38df0eee5/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-8aaacfd38df0eee5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-8aaacfd38df0eee5/lib-same_file b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-8aaacfd38df0eee5/lib-same_file new file mode 100644 index 000000000..cf0461566 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-8aaacfd38df0eee5/lib-same_file @@ -0,0 +1 @@ +589023ecb4c6741f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-8aaacfd38df0eee5/lib-same_file.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-8aaacfd38df0eee5/lib-same_file.json new file mode 100644 index 000000000..79375fe86 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-8aaacfd38df0eee5/lib-same_file.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5850851708384281287,"profile":15657897354478470176,"path":12059925373796035741,"deps":[[5785418864289862565,"winapi_util",false,3521003771871303467]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\same-file-8aaacfd38df0eee5\\dep-lib-same_file","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-aaefc9eb42b74382/dep-lib-same_file b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-aaefc9eb42b74382/dep-lib-same_file new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-aaefc9eb42b74382/dep-lib-same_file differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-aaefc9eb42b74382/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-aaefc9eb42b74382/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-aaefc9eb42b74382/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-aaefc9eb42b74382/lib-same_file b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-aaefc9eb42b74382/lib-same_file new file mode 100644 index 000000000..6101359be --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-aaefc9eb42b74382/lib-same_file @@ -0,0 +1 @@ +5e8021f61650b909 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-aaefc9eb42b74382/lib-same_file.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-aaefc9eb42b74382/lib-same_file.json new file mode 100644 index 000000000..0d31c9270 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/same-file-aaefc9eb42b74382/lib-same_file.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5850851708384281287,"profile":15657897354478470176,"path":12059925373796035741,"deps":[[5785418864289862565,"winapi_util",false,14330402745913706728]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\same-file-aaefc9eb42b74382\\dep-lib-same_file","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-3c0923b9dd1cd48d/dep-lib-schemars b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-3c0923b9dd1cd48d/dep-lib-schemars new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-3c0923b9dd1cd48d/dep-lib-schemars differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-3c0923b9dd1cd48d/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-3c0923b9dd1cd48d/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-3c0923b9dd1cd48d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-3c0923b9dd1cd48d/lib-schemars b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-3c0923b9dd1cd48d/lib-schemars new file mode 100644 index 000000000..018962195 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-3c0923b9dd1cd48d/lib-schemars @@ -0,0 +1 @@ +b25ba374b6cc2ede \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-3c0923b9dd1cd48d/lib-schemars.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-3c0923b9dd1cd48d/lib-schemars.json new file mode 100644 index 000000000..deb8a371c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-3c0923b9dd1cd48d/lib-schemars.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"derive\", \"indexmap\", \"preserve_order\", \"schemars_derive\", \"url\", \"uuid1\"]","declared_features":"[\"arrayvec\", \"arrayvec05\", \"arrayvec07\", \"bigdecimal\", \"bigdecimal03\", \"bigdecimal04\", \"bytes\", \"chrono\", \"default\", \"derive\", \"derive_json_schema\", \"either\", \"enumset\", \"impl_json_schema\", \"indexmap\", \"indexmap1\", \"indexmap2\", \"preserve_order\", \"raw_value\", \"rust_decimal\", \"schemars_derive\", \"semver\", \"smallvec\", \"smol_str\", \"ui_test\", \"url\", \"uuid\", \"uuid08\", \"uuid1\"]","target":11155677158530064643,"profile":2225463790103693989,"path":8055070965020710009,"deps":[[1528297757488249563,"url",false,7803269967486532229],[6804519996442711849,"uuid1",false,10954108970332273032],[6913375703034175521,"build_script_build",false,6136009111705506674],[6982418085031928086,"dyn_clone",false,9356618668232728761],[13548984313718623784,"serde",false,10784126109130480978],[13795362694956882968,"serde_json",false,9747708274794738682],[14923790796823607459,"indexmap",false,3191353967520431000],[16071897500792579091,"schemars_derive",false,11903474007242928749]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\schemars-3c0923b9dd1cd48d\\dep-lib-schemars","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-63f73b39a3508167/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-63f73b39a3508167/build-script-build-script-build new file mode 100644 index 000000000..3905f075d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-63f73b39a3508167/build-script-build-script-build @@ -0,0 +1 @@ +7036ca7c231cc1b1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-63f73b39a3508167/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-63f73b39a3508167/build-script-build-script-build.json new file mode 100644 index 000000000..f4770b720 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-63f73b39a3508167/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"derive\", \"indexmap\", \"preserve_order\", \"schemars_derive\", \"url\", \"uuid1\"]","declared_features":"[\"arrayvec\", \"arrayvec05\", \"arrayvec07\", \"bigdecimal\", \"bigdecimal03\", \"bigdecimal04\", \"bytes\", \"chrono\", \"default\", \"derive\", \"derive_json_schema\", \"either\", \"enumset\", \"impl_json_schema\", \"indexmap\", \"indexmap1\", \"indexmap2\", \"preserve_order\", \"raw_value\", \"rust_decimal\", \"schemars_derive\", \"semver\", \"smallvec\", \"smol_str\", \"ui_test\", \"url\", \"uuid\", \"uuid08\", \"uuid1\"]","target":5408242616063297496,"profile":2225463790103693989,"path":9133118619963377391,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\schemars-63f73b39a3508167\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-63f73b39a3508167/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-63f73b39a3508167/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-63f73b39a3508167/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-63f73b39a3508167/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-63f73b39a3508167/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-63f73b39a3508167/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-a63b649eac11e308/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-a63b649eac11e308/run-build-script-build-script-build new file mode 100644 index 000000000..e2f9ae003 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-a63b649eac11e308/run-build-script-build-script-build @@ -0,0 +1 @@ +7253c4f1c67b2755 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-a63b649eac11e308/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-a63b649eac11e308/run-build-script-build-script-build.json new file mode 100644 index 000000000..f40ffa7e5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars-a63b649eac11e308/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6913375703034175521,"build_script_build",false,12808549753961461360]],"local":[{"Precalculated":"0.8.22"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars_derive-21aef295145b59f4/dep-lib-schemars_derive b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars_derive-21aef295145b59f4/dep-lib-schemars_derive new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars_derive-21aef295145b59f4/dep-lib-schemars_derive differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars_derive-21aef295145b59f4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars_derive-21aef295145b59f4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars_derive-21aef295145b59f4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars_derive-21aef295145b59f4/lib-schemars_derive b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars_derive-21aef295145b59f4/lib-schemars_derive new file mode 100644 index 000000000..62e7eb165 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars_derive-21aef295145b59f4/lib-schemars_derive @@ -0,0 +1 @@ +6d72cfd28aa231a5 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars_derive-21aef295145b59f4/lib-schemars_derive.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars_derive-21aef295145b59f4/lib-schemars_derive.json new file mode 100644 index 000000000..2978c8614 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/schemars_derive-21aef295145b59f4/lib-schemars_derive.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":2937790071811063934,"profile":2225463790103693989,"path":12117449589097131757,"deps":[[3972868919765946583,"serde_derive_internals",false,12332823059394080359],[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\schemars_derive-21aef295145b59f4\\dep-lib-schemars_derive","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/scopeguard-cd3b1f2c1ab035dc/dep-lib-scopeguard b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/scopeguard-cd3b1f2c1ab035dc/dep-lib-scopeguard new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/scopeguard-cd3b1f2c1ab035dc/dep-lib-scopeguard differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/scopeguard-cd3b1f2c1ab035dc/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/scopeguard-cd3b1f2c1ab035dc/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/scopeguard-cd3b1f2c1ab035dc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/scopeguard-cd3b1f2c1ab035dc/lib-scopeguard b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/scopeguard-cd3b1f2c1ab035dc/lib-scopeguard new file mode 100644 index 000000000..27d2fa4bd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/scopeguard-cd3b1f2c1ab035dc/lib-scopeguard @@ -0,0 +1 @@ +9712620a70ac7a7b \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/scopeguard-cd3b1f2c1ab035dc/lib-scopeguard.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/scopeguard-cd3b1f2c1ab035dc/lib-scopeguard.json new file mode 100644 index 000000000..2743d4334 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/scopeguard-cd3b1f2c1ab035dc/lib-scopeguard.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"default\", \"use_std\"]","target":3556356971060988614,"profile":15657897354478470176,"path":11426285163927870172,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\scopeguard-cd3b1f2c1ab035dc\\dep-lib-scopeguard","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-09e1029d70cb48c4/dep-lib-selectors b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-09e1029d70cb48c4/dep-lib-selectors new file mode 100644 index 000000000..f3e3d0996 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-09e1029d70cb48c4/dep-lib-selectors differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-09e1029d70cb48c4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-09e1029d70cb48c4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-09e1029d70cb48c4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-09e1029d70cb48c4/lib-selectors b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-09e1029d70cb48c4/lib-selectors new file mode 100644 index 000000000..41649a61d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-09e1029d70cb48c4/lib-selectors @@ -0,0 +1 @@ +8558de920d5502fd \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-09e1029d70cb48c4/lib-selectors.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-09e1029d70cb48c4/lib-selectors.json new file mode 100644 index 000000000..2879abcf0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-09e1029d70cb48c4/lib-selectors.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"bench\", \"shmem\"]","target":18301272685162166244,"profile":2225463790103693989,"path":5333292931832316021,"deps":[[1385250427201060255,"phf",false,8362135858162248578],[3666196340704888985,"smallvec",false,8171192460323762105],[4507814606446700547,"servo_arc",false,4142505285150423585],[6995234255362136112,"precomputed_hash",false,3494027291404818149],[7521345276086848634,"fxhash",false,17646494316630609071],[9504753771229857410,"derive_more",false,2301084535823927411],[10435729446543529114,"bitflags",false,12323201682998925273],[10630857666389190470,"log",false,6754411078615141590],[10747484429498535170,"build_script_build",false,8202990269146886166],[10831620673236678515,"cssparser",false,4697970604899436579]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\selectors-09e1029d70cb48c4\\dep-lib-selectors","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-edd7f85c9aeaf2c8/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-edd7f85c9aeaf2c8/build-script-build-script-build new file mode 100644 index 000000000..dd4b85f18 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-edd7f85c9aeaf2c8/build-script-build-script-build @@ -0,0 +1 @@ +c8bc99aa1ac30171 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-edd7f85c9aeaf2c8/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-edd7f85c9aeaf2c8/build-script-build-script-build.json new file mode 100644 index 000000000..9d090e534 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-edd7f85c9aeaf2c8/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"bench\", \"shmem\"]","target":12318548087768197662,"profile":2225463790103693989,"path":833793772225910538,"deps":[[9113429570280746572,"phf_codegen",false,17969998264052592940]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\selectors-edd7f85c9aeaf2c8\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-edd7f85c9aeaf2c8/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-edd7f85c9aeaf2c8/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-edd7f85c9aeaf2c8/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-edd7f85c9aeaf2c8/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-edd7f85c9aeaf2c8/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-edd7f85c9aeaf2c8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-fce5eba830a58ce6/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-fce5eba830a58ce6/run-build-script-build-script-build new file mode 100644 index 000000000..6d1c77e37 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-fce5eba830a58ce6/run-build-script-build-script-build @@ -0,0 +1 @@ +16707c4030e0d671 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-fce5eba830a58ce6/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-fce5eba830a58ce6/run-build-script-build-script-build.json new file mode 100644 index 000000000..6cc6c0091 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/selectors-fce5eba830a58ce6/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10747484429498535170,"build_script_build",false,8143004120561335496]],"local":[{"Precalculated":"0.24.0"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-3dabfe97c9af649c/dep-lib-semver b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-3dabfe97c9af649c/dep-lib-semver new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-3dabfe97c9af649c/dep-lib-semver differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-3dabfe97c9af649c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-3dabfe97c9af649c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-3dabfe97c9af649c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-3dabfe97c9af649c/lib-semver b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-3dabfe97c9af649c/lib-semver new file mode 100644 index 000000000..1bb83be4c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-3dabfe97c9af649c/lib-semver @@ -0,0 +1 @@ +716825f01ee2df48 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-3dabfe97c9af649c/lib-semver.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-3dabfe97c9af649c/lib-semver.json new file mode 100644 index 000000000..0563e9d06 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-3dabfe97c9af649c/lib-semver.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"std\"]","target":10123455430689237779,"profile":15657897354478470176,"path":253304248856524811,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\semver-3dabfe97c9af649c\\dep-lib-semver","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-eb63fba3c0e078ec/dep-lib-semver b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-eb63fba3c0e078ec/dep-lib-semver new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-eb63fba3c0e078ec/dep-lib-semver differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-eb63fba3c0e078ec/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-eb63fba3c0e078ec/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-eb63fba3c0e078ec/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-eb63fba3c0e078ec/lib-semver b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-eb63fba3c0e078ec/lib-semver new file mode 100644 index 000000000..b3ff279b4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-eb63fba3c0e078ec/lib-semver @@ -0,0 +1 @@ +aecbed3e0de6cbf5 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-eb63fba3c0e078ec/lib-semver.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-eb63fba3c0e078ec/lib-semver.json new file mode 100644 index 000000000..f8395d8e6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/semver-eb63fba3c0e078ec/lib-semver.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"serde\", \"std\"]","declared_features":"[\"default\", \"serde\", \"std\"]","target":10123455430689237779,"profile":2225463790103693989,"path":253304248856524811,"deps":[[11899261697793765154,"serde",false,3505665340476166092]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\semver-eb63fba3c0e078ec\\dep-lib-semver","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-440a9404905b8cd6/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-440a9404905b8cd6/build-script-build-script-build new file mode 100644 index 000000000..83ad75d0e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-440a9404905b8cd6/build-script-build-script-build @@ -0,0 +1 @@ +e92347c46851d0b1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-440a9404905b8cd6/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-440a9404905b8cd6/build-script-build-script-build.json new file mode 100644 index 000000000..e62530fb7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-440a9404905b8cd6/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":8603905200153917654,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde-440a9404905b8cd6\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-440a9404905b8cd6/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-440a9404905b8cd6/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-440a9404905b8cd6/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-440a9404905b8cd6/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-440a9404905b8cd6/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-440a9404905b8cd6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-64f714cb3b5017d6/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-64f714cb3b5017d6/run-build-script-build-script-build new file mode 100644 index 000000000..f66876428 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-64f714cb3b5017d6/run-build-script-build-script-build @@ -0,0 +1 @@ +3f82f240311b468f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-64f714cb3b5017d6/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-64f714cb3b5017d6/run-build-script-build-script-build.json new file mode 100644 index 000000000..8bc5ab45f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-64f714cb3b5017d6/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13548984313718623784,"build_script_build",false,2705035010834186539]],"local":[{"RerunIfChanged":{"output":"debug\\build\\serde-64f714cb3b5017d6\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-6b174072b396341e/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-6b174072b396341e/build-script-build-script-build new file mode 100644 index 000000000..01ba86668 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-6b174072b396341e/build-script-build-script-build @@ -0,0 +1 @@ +2b41c4ad02378a25 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-6b174072b396341e/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-6b174072b396341e/build-script-build-script-build.json new file mode 100644 index 000000000..91aa1b6a4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-6b174072b396341e/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":8603905200153917654,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde-6b174072b396341e\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-6b174072b396341e/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-6b174072b396341e/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-6b174072b396341e/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-6b174072b396341e/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-6b174072b396341e/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-6b174072b396341e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-7c0180aaad07a848/dep-lib-serde b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-7c0180aaad07a848/dep-lib-serde new file mode 100644 index 000000000..c98f93dca Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-7c0180aaad07a848/dep-lib-serde differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-7c0180aaad07a848/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-7c0180aaad07a848/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-7c0180aaad07a848/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-7c0180aaad07a848/lib-serde b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-7c0180aaad07a848/lib-serde new file mode 100644 index 000000000..34ccbde6c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-7c0180aaad07a848/lib-serde @@ -0,0 +1 @@ +52ddbc3b8fe9a895 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-7c0180aaad07a848/lib-serde.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-7c0180aaad07a848/lib-serde.json new file mode 100644 index 000000000..f095958dc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-7c0180aaad07a848/lib-serde.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"derive\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":2225463790103693989,"path":17616384125635228284,"deps":[[3051629642231505422,"serde_derive",false,13301726810596061484],[11899261697793765154,"serde_core",false,3505665340476166092],[13548984313718623784,"build_script_build",false,9324641529994284219]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde-7c0180aaad07a848\\dep-lib-serde","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-9a759df03ce1f899/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-9a759df03ce1f899/run-build-script-build-script-build new file mode 100644 index 000000000..80da672e4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-9a759df03ce1f899/run-build-script-build-script-build @@ -0,0 +1 @@ +bb0c2a4511c86781 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-9a759df03ce1f899/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-9a759df03ce1f899/run-build-script-build-script-build.json new file mode 100644 index 000000000..1e434a3ba --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-9a759df03ce1f899/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13548984313718623784,"build_script_build",false,12812830450280506345]],"local":[{"RerunIfChanged":{"output":"debug\\build\\serde-9a759df03ce1f899\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-c78755c8adddb80a/dep-lib-serde b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-c78755c8adddb80a/dep-lib-serde new file mode 100644 index 000000000..d937cf674 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-c78755c8adddb80a/dep-lib-serde differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-c78755c8adddb80a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-c78755c8adddb80a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-c78755c8adddb80a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-c78755c8adddb80a/lib-serde b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-c78755c8adddb80a/lib-serde new file mode 100644 index 000000000..63d5e7890 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-c78755c8adddb80a/lib-serde @@ -0,0 +1 @@ +979a921f53b74784 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-c78755c8adddb80a/lib-serde.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-c78755c8adddb80a/lib-serde.json new file mode 100644 index 000000000..7ba5b085a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-c78755c8adddb80a/lib-serde.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"rc\", \"serde_derive\", \"std\", \"unstable\"]","target":11327258112168116673,"profile":15657897354478470176,"path":17616384125635228284,"deps":[[3051629642231505422,"serde_derive",false,13301726810596061484],[11899261697793765154,"serde_core",false,6500342841086748373],[13548984313718623784,"build_script_build",false,10323969094150423103]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde-c78755c8adddb80a\\dep-lib-serde","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-70bde21753e7add4/dep-lib-serde_untagged b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-70bde21753e7add4/dep-lib-serde_untagged new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-70bde21753e7add4/dep-lib-serde_untagged differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-70bde21753e7add4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-70bde21753e7add4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-70bde21753e7add4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-70bde21753e7add4/lib-serde_untagged b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-70bde21753e7add4/lib-serde_untagged new file mode 100644 index 000000000..9fbcfb18e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-70bde21753e7add4/lib-serde_untagged @@ -0,0 +1 @@ +898a623a16036a2f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-70bde21753e7add4/lib-serde_untagged.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-70bde21753e7add4/lib-serde_untagged.json new file mode 100644 index 000000000..1603babb0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-70bde21753e7add4/lib-serde_untagged.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":2358135196393990836,"profile":15657897354478470176,"path":8539973490188554399,"deps":[[8520300126860023267,"erased_serde",false,5987715889451911783],[11899261697793765154,"serde_core",false,6500342841086748373],[15068722234341947584,"typeid",false,13778317046250746840]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde-untagged-70bde21753e7add4\\dep-lib-serde_untagged","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-f67814991a3a51ca/dep-lib-serde_untagged b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-f67814991a3a51ca/dep-lib-serde_untagged new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-f67814991a3a51ca/dep-lib-serde_untagged differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-f67814991a3a51ca/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-f67814991a3a51ca/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-f67814991a3a51ca/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-f67814991a3a51ca/lib-serde_untagged b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-f67814991a3a51ca/lib-serde_untagged new file mode 100644 index 000000000..51d35b302 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-f67814991a3a51ca/lib-serde_untagged @@ -0,0 +1 @@ +4de9fbc22dad9d14 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-f67814991a3a51ca/lib-serde_untagged.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-f67814991a3a51ca/lib-serde_untagged.json new file mode 100644 index 000000000..5604829b9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde-untagged-f67814991a3a51ca/lib-serde_untagged.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":2358135196393990836,"profile":15657897354478470176,"path":8539973490188554399,"deps":[[8520300126860023267,"erased_serde",false,8483706945372698936],[11899261697793765154,"serde_core",false,3505665340476166092],[15068722234341947584,"typeid",false,13778317046250746840]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde-untagged-f67814991a3a51ca\\dep-lib-serde_untagged","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-4a47d51ec6358fad/dep-lib-serde_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-4a47d51ec6358fad/dep-lib-serde_core new file mode 100644 index 000000000..faabfbddc Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-4a47d51ec6358fad/dep-lib-serde_core differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-4a47d51ec6358fad/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-4a47d51ec6358fad/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-4a47d51ec6358fad/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-4a47d51ec6358fad/lib-serde_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-4a47d51ec6358fad/lib-serde_core new file mode 100644 index 000000000..ad8ebf0cc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-4a47d51ec6358fad/lib-serde_core @@ -0,0 +1 @@ +cc0f7ba80da0a630 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-4a47d51ec6358fad/lib-serde_core.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-4a47d51ec6358fad/lib-serde_core.json new file mode 100644 index 000000000..802115f5e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-4a47d51ec6358fad/lib-serde_core.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":2225463790103693989,"path":1417281071035837299,"deps":[[11899261697793765154,"build_script_build",false,9358212966012257824]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_core-4a47d51ec6358fad\\dep-lib-serde_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-6c3316979245b5e1/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-6c3316979245b5e1/build-script-build-script-build new file mode 100644 index 000000000..8fd15f810 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-6c3316979245b5e1/build-script-build-script-build @@ -0,0 +1 @@ +dd2c289e56a926e1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-6c3316979245b5e1/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-6c3316979245b5e1/build-script-build-script-build.json new file mode 100644 index 000000000..277ea4a4a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-6c3316979245b5e1/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":10116158168712399019,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_core-6c3316979245b5e1\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-6c3316979245b5e1/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-6c3316979245b5e1/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-6c3316979245b5e1/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-6c3316979245b5e1/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-6c3316979245b5e1/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-6c3316979245b5e1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-989c22ab68e2590d/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-989c22ab68e2590d/run-build-script-build-script-build new file mode 100644 index 000000000..08a0c92d6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-989c22ab68e2590d/run-build-script-build-script-build @@ -0,0 +1 @@ +20869d531c0ddf81 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-989c22ab68e2590d/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-989c22ab68e2590d/run-build-script-build-script-build.json new file mode 100644 index 000000000..87a2c746c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-989c22ab68e2590d/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11899261697793765154,"build_script_build",false,16223840897134505181]],"local":[{"RerunIfChanged":{"output":"debug\\build\\serde_core-989c22ab68e2590d\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-b75b5279c65f060a/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-b75b5279c65f060a/build-script-build-script-build new file mode 100644 index 000000000..57e0a30dc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-b75b5279c65f060a/build-script-build-script-build @@ -0,0 +1 @@ +451b83e384c620bd \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-b75b5279c65f060a/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-b75b5279c65f060a/build-script-build-script-build.json new file mode 100644 index 000000000..81459ace9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-b75b5279c65f060a/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"rc\", \"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":5408242616063297496,"profile":2225463790103693989,"path":10116158168712399019,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_core-b75b5279c65f060a\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-b75b5279c65f060a/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-b75b5279c65f060a/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-b75b5279c65f060a/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-b75b5279c65f060a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-b75b5279c65f060a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-b75b5279c65f060a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e385eb753ad9083f/dep-lib-serde_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e385eb753ad9083f/dep-lib-serde_core new file mode 100644 index 000000000..42992c3be Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e385eb753ad9083f/dep-lib-serde_core differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e385eb753ad9083f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e385eb753ad9083f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e385eb753ad9083f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e385eb753ad9083f/lib-serde_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e385eb753ad9083f/lib-serde_core new file mode 100644 index 000000000..2fdccf781 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e385eb753ad9083f/lib-serde_core @@ -0,0 +1 @@ +d5a63aa95fdb355a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e385eb753ad9083f/lib-serde_core.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e385eb753ad9083f/lib-serde_core.json new file mode 100644 index 000000000..c0ba029ac --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e385eb753ad9083f/lib-serde_core.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"rc\", \"result\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"rc\", \"result\", \"std\", \"unstable\"]","target":6810695588070812737,"profile":15657897354478470176,"path":1417281071035837299,"deps":[[11899261697793765154,"build_script_build",false,13693129261135339729]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_core-e385eb753ad9083f\\dep-lib-serde_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e836fc67a62c17b5/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e836fc67a62c17b5/run-build-script-build-script-build new file mode 100644 index 000000000..eabae89f4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e836fc67a62c17b5/run-build-script-build-script-build @@ -0,0 +1 @@ +d1a07a8183c407be \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e836fc67a62c17b5/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e836fc67a62c17b5/run-build-script-build-script-build.json new file mode 100644 index 000000000..2510efeed --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_core-e836fc67a62c17b5/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[11899261697793765154,"build_script_build",false,13628110746478123845]],"local":[{"RerunIfChanged":{"output":"debug\\build\\serde_core-e836fc67a62c17b5\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive-8139bdb0b4fb8323/dep-lib-serde_derive b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive-8139bdb0b4fb8323/dep-lib-serde_derive new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive-8139bdb0b4fb8323/dep-lib-serde_derive differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive-8139bdb0b4fb8323/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive-8139bdb0b4fb8323/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive-8139bdb0b4fb8323/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive-8139bdb0b4fb8323/lib-serde_derive b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive-8139bdb0b4fb8323/lib-serde_derive new file mode 100644 index 000000000..e369dda2d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive-8139bdb0b4fb8323/lib-serde_derive @@ -0,0 +1 @@ +2c31de040f3a99b8 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive-8139bdb0b4fb8323/lib-serde_derive.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive-8139bdb0b4fb8323/lib-serde_derive.json new file mode 100644 index 000000000..f04af59a2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive-8139bdb0b4fb8323/lib-serde_derive.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\"]","declared_features":"[\"default\", \"deserialize_in_place\"]","target":13076129734743110817,"profile":2225463790103693989,"path":11526977292582539922,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_derive-8139bdb0b4fb8323\\dep-lib-serde_derive","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive_internals-7e88f070ca5bab92/dep-lib-serde_derive_internals b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive_internals-7e88f070ca5bab92/dep-lib-serde_derive_internals new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive_internals-7e88f070ca5bab92/dep-lib-serde_derive_internals differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive_internals-7e88f070ca5bab92/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive_internals-7e88f070ca5bab92/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive_internals-7e88f070ca5bab92/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive_internals-7e88f070ca5bab92/lib-serde_derive_internals b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive_internals-7e88f070ca5bab92/lib-serde_derive_internals new file mode 100644 index 000000000..f0b6eb294 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive_internals-7e88f070ca5bab92/lib-serde_derive_internals @@ -0,0 +1 @@ +672eeefc3afd26ab \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive_internals-7e88f070ca5bab92/lib-serde_derive_internals.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive_internals-7e88f070ca5bab92/lib-serde_derive_internals.json new file mode 100644 index 000000000..4311ad15a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_derive_internals-7e88f070ca5bab92/lib-serde_derive_internals.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":16466561219022746191,"profile":2225463790103693989,"path":15025355716517935881,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_derive_internals-7e88f070ca5bab92\\dep-lib-serde_derive_internals","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-27d38dcd87faae99/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-27d38dcd87faae99/run-build-script-build-script-build new file mode 100644 index 000000000..fa4e888f7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-27d38dcd87faae99/run-build-script-build-script-build @@ -0,0 +1 @@ +5316d48cb24a0d62 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-27d38dcd87faae99/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-27d38dcd87faae99/run-build-script-build-script-build.json new file mode 100644 index 000000000..ce03dedff --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-27d38dcd87faae99/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13795362694956882968,"build_script_build",false,9949527471508794763]],"local":[{"RerunIfChanged":{"output":"debug\\build\\serde_json-27d38dcd87faae99\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-677a7201199c10f5/dep-lib-serde_json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-677a7201199c10f5/dep-lib-serde_json new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-677a7201199c10f5/dep-lib-serde_json differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-677a7201199c10f5/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-677a7201199c10f5/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-677a7201199c10f5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-677a7201199c10f5/lib-serde_json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-677a7201199c10f5/lib-serde_json new file mode 100644 index 000000000..b1737c486 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-677a7201199c10f5/lib-serde_json @@ -0,0 +1 @@ +fab346c507d14687 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-677a7201199c10f5/lib-serde_json.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-677a7201199c10f5/lib-serde_json.json new file mode 100644 index 000000000..ea2afb438 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-677a7201199c10f5/lib-serde_json.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"std\", \"unbounded_depth\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":9592559880233824070,"profile":2225463790103693989,"path":8420582919630277255,"deps":[[1363051979936526615,"memchr",false,10429968106908219858],[9938278000850417404,"itoa",false,17780313112227028310],[11899261697793765154,"serde_core",false,3505665340476166092],[12347024475581975995,"zmij",false,9385241012586741792],[13795362694956882968,"build_script_build",false,7065385521141519955]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_json-677a7201199c10f5\\dep-lib-serde_json","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-abf804a479e896cf/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-abf804a479e896cf/build-script-build-script-build new file mode 100644 index 000000000..a12abb2ed --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-abf804a479e896cf/build-script-build-script-build @@ -0,0 +1 @@ +556d9e6c712c43b6 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-abf804a479e896cf/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-abf804a479e896cf/build-script-build-script-build.json new file mode 100644 index 000000000..7a01e0680 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-abf804a479e896cf/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"raw_value\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":5408242616063297496,"profile":2225463790103693989,"path":9131568685184680023,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_json-abf804a479e896cf\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-abf804a479e896cf/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-abf804a479e896cf/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-abf804a479e896cf/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-abf804a479e896cf/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-abf804a479e896cf/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-abf804a479e896cf/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-bd22c8bcc5f98e54/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-bd22c8bcc5f98e54/build-script-build-script-build new file mode 100644 index 000000000..7171a273b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-bd22c8bcc5f98e54/build-script-build-script-build @@ -0,0 +1 @@ +8bad453e85d2138a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-bd22c8bcc5f98e54/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-bd22c8bcc5f98e54/build-script-build-script-build.json new file mode 100644 index 000000000..db4a03065 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-bd22c8bcc5f98e54/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"std\", \"unbounded_depth\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":5408242616063297496,"profile":2225463790103693989,"path":9131568685184680023,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_json-bd22c8bcc5f98e54\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-bd22c8bcc5f98e54/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-bd22c8bcc5f98e54/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-bd22c8bcc5f98e54/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-bd22c8bcc5f98e54/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-bd22c8bcc5f98e54/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-bd22c8bcc5f98e54/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-e3cb22b9d1fc047a/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-e3cb22b9d1fc047a/run-build-script-build-script-build new file mode 100644 index 000000000..198be4548 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-e3cb22b9d1fc047a/run-build-script-build-script-build @@ -0,0 +1 @@ +9548386e7ee0cd32 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-e3cb22b9d1fc047a/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-e3cb22b9d1fc047a/run-build-script-build-script-build.json new file mode 100644 index 000000000..65af3acb2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-e3cb22b9d1fc047a/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13795362694956882968,"build_script_build",false,13133389804007746901]],"local":[{"RerunIfChanged":{"output":"debug\\build\\serde_json-e3cb22b9d1fc047a\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-f8208f41bd1e42f4/dep-lib-serde_json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-f8208f41bd1e42f4/dep-lib-serde_json new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-f8208f41bd1e42f4/dep-lib-serde_json differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-f8208f41bd1e42f4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-f8208f41bd1e42f4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-f8208f41bd1e42f4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-f8208f41bd1e42f4/lib-serde_json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-f8208f41bd1e42f4/lib-serde_json new file mode 100644 index 000000000..a2783eb7a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-f8208f41bd1e42f4/lib-serde_json @@ -0,0 +1 @@ +11795eba4113cffa \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-f8208f41bd1e42f4/lib-serde_json.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-f8208f41bd1e42f4/lib-serde_json.json new file mode 100644 index 000000000..e9fab1891 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_json-f8208f41bd1e42f4/lib-serde_json.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"raw_value\", \"std\"]","declared_features":"[\"alloc\", \"arbitrary_precision\", \"default\", \"float_roundtrip\", \"indexmap\", \"preserve_order\", \"raw_value\", \"std\", \"unbounded_depth\"]","target":9592559880233824070,"profile":15657897354478470176,"path":8420582919630277255,"deps":[[1363051979936526615,"memchr",false,10429968106908219858],[9938278000850417404,"itoa",false,17780313112227028310],[11899261697793765154,"serde_core",false,6500342841086748373],[12347024475581975995,"zmij",false,9385241012586741792],[13795362694956882968,"build_script_build",false,3660828905741764757]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_json-f8208f41bd1e42f4\\dep-lib-serde_json","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_repr-6f73aa9ccfa76ec5/dep-lib-serde_repr b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_repr-6f73aa9ccfa76ec5/dep-lib-serde_repr new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_repr-6f73aa9ccfa76ec5/dep-lib-serde_repr differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_repr-6f73aa9ccfa76ec5/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_repr-6f73aa9ccfa76ec5/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_repr-6f73aa9ccfa76ec5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_repr-6f73aa9ccfa76ec5/lib-serde_repr b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_repr-6f73aa9ccfa76ec5/lib-serde_repr new file mode 100644 index 000000000..fd99bcfa2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_repr-6f73aa9ccfa76ec5/lib-serde_repr @@ -0,0 +1 @@ +35fdf4b0da24452a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_repr-6f73aa9ccfa76ec5/lib-serde_repr.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_repr-6f73aa9ccfa76ec5/lib-serde_repr.json new file mode 100644 index 000000000..315375391 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_repr-6f73aa9ccfa76ec5/lib-serde_repr.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":2224606167758444834,"profile":2225463790103693989,"path":15192759597508897038,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_repr-6f73aa9ccfa76ec5\\dep-lib-serde_repr","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-9cda34879e8a9a77/dep-lib-serde_spanned b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-9cda34879e8a9a77/dep-lib-serde_spanned new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-9cda34879e8a9a77/dep-lib-serde_spanned differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-9cda34879e8a9a77/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-9cda34879e8a9a77/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-9cda34879e8a9a77/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-9cda34879e8a9a77/lib-serde_spanned b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-9cda34879e8a9a77/lib-serde_spanned new file mode 100644 index 000000000..b228c6e3f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-9cda34879e8a9a77/lib-serde_spanned @@ -0,0 +1 @@ +b4df5eb0e7a28644 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-9cda34879e8a9a77/lib-serde_spanned.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-9cda34879e8a9a77/lib-serde_spanned.json new file mode 100644 index 000000000..8d8a72111 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-9cda34879e8a9a77/lib-serde_spanned.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"serde\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"serde\", \"std\"]","target":5212962411116207836,"profile":13732153304298165373,"path":6675727085357587198,"deps":[[11899261697793765154,"serde_core",false,6500342841086748373]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_spanned-9cda34879e8a9a77\\dep-lib-serde_spanned","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-d9a44f7eee58d908/dep-lib-serde_spanned b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-d9a44f7eee58d908/dep-lib-serde_spanned new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-d9a44f7eee58d908/dep-lib-serde_spanned differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-d9a44f7eee58d908/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-d9a44f7eee58d908/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-d9a44f7eee58d908/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-d9a44f7eee58d908/lib-serde_spanned b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-d9a44f7eee58d908/lib-serde_spanned new file mode 100644 index 000000000..1151837cd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-d9a44f7eee58d908/lib-serde_spanned @@ -0,0 +1 @@ +9e17ab706efe180d \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-d9a44f7eee58d908/lib-serde_spanned.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-d9a44f7eee58d908/lib-serde_spanned.json new file mode 100644 index 000000000..db1873548 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_spanned-d9a44f7eee58d908/lib-serde_spanned.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"serde\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"serde\", \"std\"]","target":5212962411116207836,"profile":13732153304298165373,"path":6675727085357587198,"deps":[[11899261697793765154,"serde_core",false,3505665340476166092]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_spanned-d9a44f7eee58d908\\dep-lib-serde_spanned","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-5624c03357c4a34a/dep-lib-serde_with b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-5624c03357c4a34a/dep-lib-serde_with new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-5624c03357c4a34a/dep-lib-serde_with differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-5624c03357c4a34a/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-5624c03357c4a34a/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-5624c03357c4a34a/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-5624c03357c4a34a/lib-serde_with b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-5624c03357c4a34a/lib-serde_with new file mode 100644 index 000000000..11d8e01d0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-5624c03357c4a34a/lib-serde_with @@ -0,0 +1 @@ +a1c0b263ba4e3574 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-5624c03357c4a34a/lib-serde_with.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-5624c03357c4a34a/lib-serde_with.json new file mode 100644 index 000000000..04f787e00 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-5624c03357c4a34a/lib-serde_with.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"macros\", \"std\"]","declared_features":"[\"alloc\", \"base64\", \"chrono\", \"chrono_0_4\", \"default\", \"guide\", \"hashbrown_0_14\", \"hashbrown_0_15\", \"hashbrown_0_16\", \"hex\", \"indexmap\", \"indexmap_1\", \"indexmap_2\", \"json\", \"macros\", \"schemars_0_8\", \"schemars_0_9\", \"schemars_1\", \"smallvec_1\", \"std\", \"time_0_3\"]","target":10448421281463538527,"profile":5290030462671737236,"path":12077693305017600629,"deps":[[6162696371404276033,"serde_with_macros",false,2119864243515560335],[11899261697793765154,"serde_core",false,3505665340476166092]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_with-5624c03357c4a34a\\dep-lib-serde_with","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-85f5d23c8a6b19e1/dep-lib-serde_with b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-85f5d23c8a6b19e1/dep-lib-serde_with new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-85f5d23c8a6b19e1/dep-lib-serde_with differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-85f5d23c8a6b19e1/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-85f5d23c8a6b19e1/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-85f5d23c8a6b19e1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-85f5d23c8a6b19e1/lib-serde_with b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-85f5d23c8a6b19e1/lib-serde_with new file mode 100644 index 000000000..4403bab5c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-85f5d23c8a6b19e1/lib-serde_with @@ -0,0 +1 @@ +d922aadae2a9fa2f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-85f5d23c8a6b19e1/lib-serde_with.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-85f5d23c8a6b19e1/lib-serde_with.json new file mode 100644 index 000000000..23e145651 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with-85f5d23c8a6b19e1/lib-serde_with.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"macros\", \"std\"]","declared_features":"[\"alloc\", \"base64\", \"chrono\", \"chrono_0_4\", \"default\", \"guide\", \"hashbrown_0_14\", \"hashbrown_0_15\", \"hashbrown_0_16\", \"hex\", \"indexmap\", \"indexmap_1\", \"indexmap_2\", \"json\", \"macros\", \"schemars_0_8\", \"schemars_0_9\", \"schemars_1\", \"smallvec_1\", \"std\", \"time_0_3\"]","target":10448421281463538527,"profile":5290030462671737236,"path":12077693305017600629,"deps":[[6162696371404276033,"serde_with_macros",false,2119864243515560335],[11899261697793765154,"serde_core",false,6500342841086748373]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_with-85f5d23c8a6b19e1\\dep-lib-serde_with","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with_macros-a7d587160a5c0e58/dep-lib-serde_with_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with_macros-a7d587160a5c0e58/dep-lib-serde_with_macros new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with_macros-a7d587160a5c0e58/dep-lib-serde_with_macros differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with_macros-a7d587160a5c0e58/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with_macros-a7d587160a5c0e58/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with_macros-a7d587160a5c0e58/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with_macros-a7d587160a5c0e58/lib-serde_with_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with_macros-a7d587160a5c0e58/lib-serde_with_macros new file mode 100644 index 000000000..ef5add6b6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with_macros-a7d587160a5c0e58/lib-serde_with_macros @@ -0,0 +1 @@ +8f11cc464c456b1d \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with_macros-a7d587160a5c0e58/lib-serde_with_macros.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with_macros-a7d587160a5c0e58/lib-serde_with_macros.json new file mode 100644 index 000000000..359360a85 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serde_with_macros-a7d587160a5c0e58/lib-serde_with_macros.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"schemars_0_8\", \"schemars_0_9\", \"schemars_1\"]","target":14768362389397495844,"profile":6834063317110192372,"path":17245648131274101829,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[7883159415651330740,"darling",false,6774681290444058251],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serde_with_macros-a7d587160a5c0e58\\dep-lib-serde_with_macros","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-34987bb36a1c4b14/dep-lib-serialize_to_javascript b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-34987bb36a1c4b14/dep-lib-serialize_to_javascript new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-34987bb36a1c4b14/dep-lib-serialize_to_javascript differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-34987bb36a1c4b14/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-34987bb36a1c4b14/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-34987bb36a1c4b14/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-34987bb36a1c4b14/lib-serialize_to_javascript b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-34987bb36a1c4b14/lib-serialize_to_javascript new file mode 100644 index 000000000..665a3b7b6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-34987bb36a1c4b14/lib-serialize_to_javascript @@ -0,0 +1 @@ +86f4ab1e8d62217f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-34987bb36a1c4b14/lib-serialize_to_javascript.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-34987bb36a1c4b14/lib-serialize_to_javascript.json new file mode 100644 index 000000000..291e70a46 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-34987bb36a1c4b14/lib-serialize_to_javascript.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":16417436978838615422,"profile":15657897354478470176,"path":17533107904375315769,"deps":[[12483577693366551583,"serialize_to_javascript_impl",false,2941925320535841943],[13548984313718623784,"serde",false,9531788703992814231],[13795362694956882968,"serde_json",false,18072685002681645329]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serialize-to-javascript-34987bb36a1c4b14\\dep-lib-serialize_to_javascript","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-impl-6aecc8b6f499b8bb/dep-lib-serialize_to_javascript_impl b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-impl-6aecc8b6f499b8bb/dep-lib-serialize_to_javascript_impl new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-impl-6aecc8b6f499b8bb/dep-lib-serialize_to_javascript_impl differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-impl-6aecc8b6f499b8bb/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-impl-6aecc8b6f499b8bb/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-impl-6aecc8b6f499b8bb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-impl-6aecc8b6f499b8bb/lib-serialize_to_javascript_impl b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-impl-6aecc8b6f499b8bb/lib-serialize_to_javascript_impl new file mode 100644 index 000000000..9cfeb97ef --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-impl-6aecc8b6f499b8bb/lib-serialize_to_javascript_impl @@ -0,0 +1 @@ +971c44f67dd1d328 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-impl-6aecc8b6f499b8bb/lib-serialize_to_javascript_impl.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-impl-6aecc8b6f499b8bb/lib-serialize_to_javascript_impl.json new file mode 100644 index 000000000..6fddc5f0e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/serialize-to-javascript-impl-6aecc8b6f499b8bb/lib-serialize_to_javascript_impl.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":6284077866247677416,"profile":2225463790103693989,"path":11139834186499381250,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\serialize-to-javascript-impl-6aecc8b6f499b8bb\\dep-lib-serialize_to_javascript_impl","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/servo_arc-4668c23122b5859c/dep-lib-servo_arc b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/servo_arc-4668c23122b5859c/dep-lib-servo_arc new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/servo_arc-4668c23122b5859c/dep-lib-servo_arc differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/servo_arc-4668c23122b5859c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/servo_arc-4668c23122b5859c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/servo_arc-4668c23122b5859c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/servo_arc-4668c23122b5859c/lib-servo_arc b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/servo_arc-4668c23122b5859c/lib-servo_arc new file mode 100644 index 000000000..9a38bac24 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/servo_arc-4668c23122b5859c/lib-servo_arc @@ -0,0 +1 @@ +21ba91e19b227d39 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/servo_arc-4668c23122b5859c/lib-servo_arc.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/servo_arc-4668c23122b5859c/lib-servo_arc.json new file mode 100644 index 000000000..db26ac44d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/servo_arc-4668c23122b5859c/lib-servo_arc.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"gecko_refcount_logging\", \"serde\", \"servo\"]","target":7827887664671662080,"profile":2225463790103693989,"path":2455398463625853792,"deps":[[266877937798793199,"nodrop",false,2925898540321019992],[12669569555400633618,"stable_deref_trait",false,7343225806084967440]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\servo_arc-4668c23122b5859c\\dep-lib-servo_arc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/sha2-d28fe03bbf9b73be/dep-lib-sha2 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/sha2-d28fe03bbf9b73be/dep-lib-sha2 new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/sha2-d28fe03bbf9b73be/dep-lib-sha2 differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/sha2-d28fe03bbf9b73be/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/sha2-d28fe03bbf9b73be/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/sha2-d28fe03bbf9b73be/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/sha2-d28fe03bbf9b73be/lib-sha2 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/sha2-d28fe03bbf9b73be/lib-sha2 new file mode 100644 index 000000000..a0fa3b934 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/sha2-d28fe03bbf9b73be/lib-sha2 @@ -0,0 +1 @@ +e74a19faaee8496e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/sha2-d28fe03bbf9b73be/lib-sha2.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/sha2-d28fe03bbf9b73be/lib-sha2.json new file mode 100644 index 000000000..c46a079e3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/sha2-d28fe03bbf9b73be/lib-sha2.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"asm\", \"asm-aarch64\", \"compress\", \"default\", \"force-soft\", \"force-soft-compact\", \"loongarch64_asm\", \"oid\", \"sha2-asm\", \"std\"]","target":9593554856174113207,"profile":2225463790103693989,"path":1428086439486223962,"deps":[[7667230146095136825,"cfg_if",false,12313751931663862839],[17475753849556516473,"digest",false,11938989498103337042],[17620084158052398167,"cpufeatures",false,2530360623982460036]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\sha2-d28fe03bbf9b73be\\dep-lib-sha2","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/shlex-d72cb1e9a55c65a7/dep-lib-shlex b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/shlex-d72cb1e9a55c65a7/dep-lib-shlex new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/shlex-d72cb1e9a55c65a7/dep-lib-shlex differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/shlex-d72cb1e9a55c65a7/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/shlex-d72cb1e9a55c65a7/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/shlex-d72cb1e9a55c65a7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/shlex-d72cb1e9a55c65a7/lib-shlex b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/shlex-d72cb1e9a55c65a7/lib-shlex new file mode 100644 index 000000000..126154f94 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/shlex-d72cb1e9a55c65a7/lib-shlex @@ -0,0 +1 @@ +043e665b214983e8 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/shlex-d72cb1e9a55c65a7/lib-shlex.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/shlex-d72cb1e9a55c65a7/lib-shlex.json new file mode 100644 index 000000000..3617a8ffb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/shlex-d72cb1e9a55c65a7/lib-shlex.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":929485496544747924,"profile":2225463790103693989,"path":16928523850127253760,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\shlex-d72cb1e9a55c65a7\\dep-lib-shlex","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/simd-adler32-9cf57061cbb2119b/dep-lib-simd_adler32 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/simd-adler32-9cf57061cbb2119b/dep-lib-simd_adler32 new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/simd-adler32-9cf57061cbb2119b/dep-lib-simd_adler32 differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/simd-adler32-9cf57061cbb2119b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/simd-adler32-9cf57061cbb2119b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/simd-adler32-9cf57061cbb2119b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/simd-adler32-9cf57061cbb2119b/lib-simd_adler32 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/simd-adler32-9cf57061cbb2119b/lib-simd_adler32 new file mode 100644 index 000000000..d4cf46e35 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/simd-adler32-9cf57061cbb2119b/lib-simd_adler32 @@ -0,0 +1 @@ +b6ea2df6067f2968 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/simd-adler32-9cf57061cbb2119b/lib-simd_adler32.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/simd-adler32-9cf57061cbb2119b/lib-simd_adler32.json new file mode 100644 index 000000000..fe89e14d0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/simd-adler32-9cf57061cbb2119b/lib-simd_adler32.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"const-generics\", \"default\", \"std\"]","declared_features":"[\"const-generics\", \"default\", \"nightly\", \"std\"]","target":13480744403352105069,"profile":2225463790103693989,"path":16918976940413741265,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\simd-adler32-9cf57061cbb2119b\\dep-lib-simd_adler32","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-043a5a2584f377a1/dep-lib-siphasher b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-043a5a2584f377a1/dep-lib-siphasher new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-043a5a2584f377a1/dep-lib-siphasher differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-043a5a2584f377a1/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-043a5a2584f377a1/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-043a5a2584f377a1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-043a5a2584f377a1/lib-siphasher b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-043a5a2584f377a1/lib-siphasher new file mode 100644 index 000000000..5b4adc35b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-043a5a2584f377a1/lib-siphasher @@ -0,0 +1 @@ +01a05ffedae4f472 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-043a5a2584f377a1/lib-siphasher.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-043a5a2584f377a1/lib-siphasher.json new file mode 100644 index 000000000..ef8e85bfc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-043a5a2584f377a1/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":4119152769974956727,"profile":15657897354478470176,"path":13815257328928106115,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\siphasher-043a5a2584f377a1\\dep-lib-siphasher","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-0c86352b62696053/dep-lib-siphasher b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-0c86352b62696053/dep-lib-siphasher new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-0c86352b62696053/dep-lib-siphasher differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-0c86352b62696053/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-0c86352b62696053/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-0c86352b62696053/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-0c86352b62696053/lib-siphasher b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-0c86352b62696053/lib-siphasher new file mode 100644 index 000000000..a22e6e7cf --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-0c86352b62696053/lib-siphasher @@ -0,0 +1 @@ +58ca670be0e0b737 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-0c86352b62696053/lib-siphasher.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-0c86352b62696053/lib-siphasher.json new file mode 100644 index 000000000..cb2b42b96 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/siphasher-0c86352b62696053/lib-siphasher.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"serde\", \"serde_json\", \"serde_no_std\", \"serde_std\", \"std\"]","target":6846127388476139628,"profile":2225463790103693989,"path":5917257071653777910,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\siphasher-0c86352b62696053\\dep-lib-siphasher","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/smallvec-74d81dcb7bcd4d62/dep-lib-smallvec b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/smallvec-74d81dcb7bcd4d62/dep-lib-smallvec new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/smallvec-74d81dcb7bcd4d62/dep-lib-smallvec differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/smallvec-74d81dcb7bcd4d62/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/smallvec-74d81dcb7bcd4d62/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/smallvec-74d81dcb7bcd4d62/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/smallvec-74d81dcb7bcd4d62/lib-smallvec b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/smallvec-74d81dcb7bcd4d62/lib-smallvec new file mode 100644 index 000000000..33f5c86b6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/smallvec-74d81dcb7bcd4d62/lib-smallvec @@ -0,0 +1 @@ +b9aff2f43fe86571 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/smallvec-74d81dcb7bcd4d62/lib-smallvec.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/smallvec-74d81dcb7bcd4d62/lib-smallvec.json new file mode 100644 index 000000000..5854d026e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/smallvec-74d81dcb7bcd4d62/lib-smallvec.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"const_generics\"]","declared_features":"[\"arbitrary\", \"bincode\", \"const_generics\", \"const_new\", \"debugger_visualizer\", \"drain_filter\", \"drain_keep_rest\", \"impl_bincode\", \"malloc_size_of\", \"may_dangle\", \"serde\", \"specialization\", \"union\", \"unty\", \"write\"]","target":9091769176333489034,"profile":15657897354478470176,"path":10156556352591387645,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\smallvec-74d81dcb7bcd4d62\\dep-lib-smallvec","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/softbuffer-605ac2398c214693/dep-lib-softbuffer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/softbuffer-605ac2398c214693/dep-lib-softbuffer new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/softbuffer-605ac2398c214693/dep-lib-softbuffer differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/softbuffer-605ac2398c214693/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/softbuffer-605ac2398c214693/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/softbuffer-605ac2398c214693/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/softbuffer-605ac2398c214693/lib-softbuffer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/softbuffer-605ac2398c214693/lib-softbuffer new file mode 100644 index 000000000..c6ec31b82 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/softbuffer-605ac2398c214693/lib-softbuffer @@ -0,0 +1 @@ +f783cc4a9e4f0222 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/softbuffer-605ac2398c214693/lib-softbuffer.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/softbuffer-605ac2398c214693/lib-softbuffer.json new file mode 100644 index 000000000..4accdd7db --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/softbuffer-605ac2398c214693/lib-softbuffer.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"as-raw-xcb-connection\", \"bytemuck\", \"default\", \"drm\", \"fastrand\", \"kms\", \"memmap2\", \"rustix\", \"tiny-xlib\", \"wayland\", \"wayland-backend\", \"wayland-client\", \"wayland-dlopen\", \"wayland-sys\", \"x11\", \"x11-dlopen\", \"x11rb\"]","target":9174284484934603102,"profile":15657897354478470176,"path":9549223911594375875,"deps":[[4143744114649553716,"raw_window_handle",false,15731530099593162238],[6568467691589961976,"windows_sys",false,5124779585545402889],[14757622794040968908,"tracing",false,9132858397152281564]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\softbuffer-605ac2398c214693\\dep-lib-softbuffer","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-2109d0463108247c/dep-lib-stable_deref_trait b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-2109d0463108247c/dep-lib-stable_deref_trait new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-2109d0463108247c/dep-lib-stable_deref_trait differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-2109d0463108247c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-2109d0463108247c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-2109d0463108247c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-2109d0463108247c/lib-stable_deref_trait b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-2109d0463108247c/lib-stable_deref_trait new file mode 100644 index 000000000..8991469cb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-2109d0463108247c/lib-stable_deref_trait @@ -0,0 +1 @@ +100c2dedf660e865 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-2109d0463108247c/lib-stable_deref_trait.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-2109d0463108247c/lib-stable_deref_trait.json new file mode 100644 index 000000000..fa6e9c09e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-2109d0463108247c/lib-stable_deref_trait.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"default\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":5616890217583455155,"profile":2225463790103693989,"path":11744579372948136704,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\stable_deref_trait-2109d0463108247c\\dep-lib-stable_deref_trait","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-43eda3c73c719237/dep-lib-stable_deref_trait b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-43eda3c73c719237/dep-lib-stable_deref_trait new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-43eda3c73c719237/dep-lib-stable_deref_trait differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-43eda3c73c719237/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-43eda3c73c719237/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-43eda3c73c719237/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-43eda3c73c719237/lib-stable_deref_trait b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-43eda3c73c719237/lib-stable_deref_trait new file mode 100644 index 000000000..0ef2e9b90 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-43eda3c73c719237/lib-stable_deref_trait @@ -0,0 +1 @@ +95a3d887acc0724a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-43eda3c73c719237/lib-stable_deref_trait.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-43eda3c73c719237/lib-stable_deref_trait.json new file mode 100644 index 000000000..1029fff8c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/stable_deref_trait-43eda3c73c719237/lib-stable_deref_trait.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":5616890217583455155,"profile":15657897354478470176,"path":11744579372948136704,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\stable_deref_trait-43eda3c73c719237\\dep-lib-stable_deref_trait","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache-1735a9acffdc20c8/dep-lib-string_cache b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache-1735a9acffdc20c8/dep-lib-string_cache new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache-1735a9acffdc20c8/dep-lib-string_cache differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache-1735a9acffdc20c8/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache-1735a9acffdc20c8/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache-1735a9acffdc20c8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache-1735a9acffdc20c8/lib-string_cache b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache-1735a9acffdc20c8/lib-string_cache new file mode 100644 index 000000000..11b333400 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache-1735a9acffdc20c8/lib-string_cache @@ -0,0 +1 @@ +203d88ff2b46f861 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache-1735a9acffdc20c8/lib-string_cache.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache-1735a9acffdc20c8/lib-string_cache.json new file mode 100644 index 000000000..f2f72ea1d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache-1735a9acffdc20c8/lib-string_cache.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"serde\", \"serde_support\"]","declared_features":"[\"default\", \"malloc_size_of\", \"serde\", \"serde_support\"]","target":8038205195467990777,"profile":2225463790103693989,"path":7981984157267567128,"deps":[[2687729594444538932,"debug_unreachable",false,13329182379542666326],[6995234255362136112,"precomputed_hash",false,3494027291404818149],[9060940869921439196,"phf_shared",false,7652226686633621566],[12459942763388630573,"parking_lot",false,9198621224967073342],[13548984313718623784,"serde",false,10784126109130480978]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\string_cache-1735a9acffdc20c8\\dep-lib-string_cache","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache_codegen-3896436421b65785/dep-lib-string_cache_codegen b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache_codegen-3896436421b65785/dep-lib-string_cache_codegen new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache_codegen-3896436421b65785/dep-lib-string_cache_codegen differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache_codegen-3896436421b65785/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache_codegen-3896436421b65785/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache_codegen-3896436421b65785/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache_codegen-3896436421b65785/lib-string_cache_codegen b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache_codegen-3896436421b65785/lib-string_cache_codegen new file mode 100644 index 000000000..700f36926 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache_codegen-3896436421b65785/lib-string_cache_codegen @@ -0,0 +1 @@ +f06b2f9ff06757c9 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache_codegen-3896436421b65785/lib-string_cache_codegen.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache_codegen-3896436421b65785/lib-string_cache_codegen.json new file mode 100644 index 000000000..58ccfd411 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/string_cache_codegen-3896436421b65785/lib-string_cache_codegen.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":4822312724886654266,"profile":2225463790103693989,"path":16992940904103943244,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[9060940869921439196,"phf_shared",false,7652226686633621566],[13111758008314797071,"quote",false,4999842116374801128],[18124350542602697595,"phf_generator",false,12755197479964166414]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\string_cache_codegen-3896436421b65785\\dep-lib-string_cache_codegen","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/strsim-c3569a40962efe20/dep-lib-strsim b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/strsim-c3569a40962efe20/dep-lib-strsim new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/strsim-c3569a40962efe20/dep-lib-strsim differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/strsim-c3569a40962efe20/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/strsim-c3569a40962efe20/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/strsim-c3569a40962efe20/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/strsim-c3569a40962efe20/lib-strsim b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/strsim-c3569a40962efe20/lib-strsim new file mode 100644 index 000000000..1eecaa07e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/strsim-c3569a40962efe20/lib-strsim @@ -0,0 +1 @@ +bc057fb5e22d8a59 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/strsim-c3569a40962efe20/lib-strsim.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/strsim-c3569a40962efe20/lib-strsim.json new file mode 100644 index 000000000..6db55473d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/strsim-c3569a40962efe20/lib-strsim.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":14520901741915772287,"profile":2225463790103693989,"path":14435270065758941393,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\strsim-c3569a40962efe20\\dep-lib-strsim","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-175186d7e4b50b46/dep-lib-syn b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-175186d7e4b50b46/dep-lib-syn new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-175186d7e4b50b46/dep-lib-syn differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-175186d7e4b50b46/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-175186d7e4b50b46/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-175186d7e4b50b46/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-175186d7e4b50b46/lib-syn b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-175186d7e4b50b46/lib-syn new file mode 100644 index 000000000..863447bc8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-175186d7e4b50b46/lib-syn @@ -0,0 +1 @@ +f57d9e2940a6e768 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-175186d7e4b50b46/lib-syn.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-175186d7e4b50b46/lib-syn.json new file mode 100644 index 000000000..1f7d741e6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-175186d7e4b50b46/lib-syn.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"visit\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"test\", \"visit\", \"visit-mut\"]","target":9442126953582868550,"profile":2225463790103693989,"path":5331209439035421026,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[8901712065508858692,"unicode_ident",false,7321725533401207332],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\syn-175186d7e4b50b46\\dep-lib-syn","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-20572db5a3451155/dep-lib-syn b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-20572db5a3451155/dep-lib-syn new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-20572db5a3451155/dep-lib-syn differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-20572db5a3451155/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-20572db5a3451155/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-20572db5a3451155/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-20572db5a3451155/lib-syn b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-20572db5a3451155/lib-syn new file mode 100644 index 000000000..ae7ba2eb8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-20572db5a3451155/lib-syn @@ -0,0 +1 @@ +a0316579ae4c02b1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-20572db5a3451155/lib-syn.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-20572db5a3451155/lib-syn.json new file mode 100644 index 000000000..8f5a06d64 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-20572db5a3451155/lib-syn.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"quote\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"quote\", \"test\", \"visit\", \"visit-mut\"]","target":11103975901103234717,"profile":2225463790103693989,"path":1827853084464967061,"deps":[[2713742371683562785,"build_script_build",false,12002407714704947684],[4289358735036141001,"proc_macro2",false,3635241377792335322],[8901712065508858692,"unicode_ident",false,7321725533401207332],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\syn-20572db5a3451155\\dep-lib-syn","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-26a7b2b40b62e5c2/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-26a7b2b40b62e5c2/run-build-script-build-script-build new file mode 100644 index 000000000..2c086a018 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-26a7b2b40b62e5c2/run-build-script-build-script-build @@ -0,0 +1 @@ +e479659c391e91a6 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-26a7b2b40b62e5c2/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-26a7b2b40b62e5c2/run-build-script-build-script-build.json new file mode 100644 index 000000000..7a4558ba6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-26a7b2b40b62e5c2/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[2713742371683562785,"build_script_build",false,13981164433607945194]],"local":[{"Precalculated":"1.0.109"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-f372d0c4d1e7d498/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-f372d0c4d1e7d498/build-script-build-script-build new file mode 100644 index 000000000..39dca6033 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-f372d0c4d1e7d498/build-script-build-script-build @@ -0,0 +1 @@ +eaeb861bfa1207c2 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-f372d0c4d1e7d498/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-f372d0c4d1e7d498/build-script-build-script-build.json new file mode 100644 index 000000000..58aab6eb4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-f372d0c4d1e7d498/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"quote\"]","declared_features":"[\"clone-impls\", \"default\", \"derive\", \"extra-traits\", \"fold\", \"full\", \"parsing\", \"printing\", \"proc-macro\", \"quote\", \"test\", \"visit\", \"visit-mut\"]","target":17883862002600103897,"profile":2225463790103693989,"path":2903047321199254960,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\syn-f372d0c4d1e7d498\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-f372d0c4d1e7d498/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-f372d0c4d1e7d498/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-f372d0c4d1e7d498/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-f372d0c4d1e7d498/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-f372d0c4d1e7d498/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/syn-f372d0c4d1e7d498/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/synstructure-aee07ce144bd1223/dep-lib-synstructure b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/synstructure-aee07ce144bd1223/dep-lib-synstructure new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/synstructure-aee07ce144bd1223/dep-lib-synstructure differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/synstructure-aee07ce144bd1223/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/synstructure-aee07ce144bd1223/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/synstructure-aee07ce144bd1223/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/synstructure-aee07ce144bd1223/lib-synstructure b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/synstructure-aee07ce144bd1223/lib-synstructure new file mode 100644 index 000000000..ffddd0fc6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/synstructure-aee07ce144bd1223/lib-synstructure @@ -0,0 +1 @@ +1f64a0455ede7fab \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/synstructure-aee07ce144bd1223/lib-synstructure.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/synstructure-aee07ce144bd1223/lib-synstructure.json new file mode 100644 index 000000000..8292b85fe --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/synstructure-aee07ce144bd1223/lib-synstructure.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"proc-macro\"]","declared_features":"[\"default\", \"proc-macro\"]","target":14291004384071580589,"profile":2225463790103693989,"path":9319883691522744415,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\synstructure-aee07ce144bd1223\\dep-lib-synstructure","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tao-debe11fdf5f84c3b/dep-lib-tao b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tao-debe11fdf5f84c3b/dep-lib-tao new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tao-debe11fdf5f84c3b/dep-lib-tao differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tao-debe11fdf5f84c3b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tao-debe11fdf5f84c3b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tao-debe11fdf5f84c3b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tao-debe11fdf5f84c3b/lib-tao b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tao-debe11fdf5f84c3b/lib-tao new file mode 100644 index 000000000..d652288dd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tao-debe11fdf5f84c3b/lib-tao @@ -0,0 +1 @@ +80c3ce409f50ef52 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tao-debe11fdf5f84c3b/lib-tao.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tao-debe11fdf5f84c3b/lib-tao.json new file mode 100644 index 000000000..44969f327 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tao-debe11fdf5f84c3b/lib-tao.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"rwh_06\", \"x11\"]","declared_features":"[\"default\", \"rwh_04\", \"rwh_05\", \"rwh_06\", \"serde\", \"x11\"]","target":18280640111509826504,"profile":15657897354478470176,"path":2192465884527892273,"deps":[[1232198224951696867,"unicode_segmentation",false,459108668580735523],[1528297757488249563,"url",false,14942242089227637828],[3722963349756955755,"once_cell",false,12341109524702844370],[4143744114649553716,"rwh_06",false,15731530099593162238],[5628259161083531273,"windows_core",false,1564442099389724938],[7606335748176206944,"dpi",false,9362547875939283471],[9727213718512686088,"crossbeam_channel",false,808050435545116731],[10630857666389190470,"log",false,6754411078615141590],[12459942763388630573,"parking_lot",false,9198621224967073342],[13129119782722264640,"windows_version",false,10731455328532410827],[14585479307175734061,"windows",false,3415978176206528813],[16909888598953886583,"bitflags",false,9124655452897035545],[18365559012052052344,"libc",false,3736033081002872053]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tao-debe11fdf5f84c3b\\dep-lib-tao","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-90e324d6f57db812/dep-lib-tauri b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-90e324d6f57db812/dep-lib-tauri new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-90e324d6f57db812/dep-lib-tauri differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-90e324d6f57db812/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-90e324d6f57db812/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-90e324d6f57db812/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-90e324d6f57db812/lib-tauri b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-90e324d6f57db812/lib-tauri new file mode 100644 index 000000000..6bc6065c1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-90e324d6f57db812/lib-tauri @@ -0,0 +1 @@ +4ac86ec7d0fa0efa \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-90e324d6f57db812/lib-tauri.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-90e324d6f57db812/lib-tauri.json new file mode 100644 index 000000000..5d6ce4e59 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-90e324d6f57db812/lib-tauri.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"common-controls-v6\", \"compression\", \"default\", \"dynamic-acl\", \"tauri-runtime-wry\", \"webkit2gtk\", \"webview2-com\", \"wry\", \"x11\"]","declared_features":"[\"common-controls-v6\", \"compression\", \"config-json5\", \"config-toml\", \"custom-protocol\", \"data-url\", \"default\", \"devtools\", \"dynamic-acl\", \"http-range\", \"image\", \"image-ico\", \"image-png\", \"isolation\", \"linux-libxdo\", \"macos-private-api\", \"macos-proxy\", \"native-tls\", \"native-tls-vendored\", \"objc-exception\", \"process-relaunch-dangerous-allow-symlink-macos\", \"protocol-asset\", \"rustls-tls\", \"specta\", \"tauri-runtime-wry\", \"test\", \"tracing\", \"tray-icon\", \"unstable\", \"uuid\", \"webkit2gtk\", \"webview-data-url\", \"webview2-com\", \"wry\", \"x11\"]","target":12223948975794516716,"profile":15657897354478470176,"path":4290381470926453665,"deps":[[776188902721909695,"tauri_utils",false,14039461016261258076],[1260461579271933187,"serialize_to_javascript",false,9160711475292796038],[1528297757488249563,"url",false,14942242089227637828],[1967864351173319501,"muda",false,4823500088605230165],[2448563160050429386,"thiserror",false,11087210622057152061],[2620434475832828286,"http",false,9068168327974485296],[4143744114649553716,"raw_window_handle",false,15731530099593162238],[6111127215204891552,"tauri_runtime",false,2805041154063006088],[6803352382179706244,"percent_encoding",false,18098348866792261601],[6937133435259274751,"tauri_macros",false,12141410574699891327],[9293239362693504808,"glob",false,4861282959002930901],[10229185211513642314,"mime",false,14621871934570618702],[10347147913401555331,"tauri_runtime_wry",false,13012287664744209834],[10630857666389190470,"log",false,6754411078615141590],[10781831454009427734,"webview2_com",false,5091479544109681465],[11989259058781683633,"dunce",false,18279171911562756100],[12478428894219133322,"anyhow",false,10119181572751020656],[12565293087094287914,"window_vibrancy",false,7331584054313501594],[12986574360607194341,"serde_repr",false,3045881244676324661],[13077543566650298139,"heck",false,3186914118398415201],[13298363700532491723,"tokio",false,14605866356986302999],[13548984313718623784,"serde",false,9531788703992814231],[13795362694956882968,"serde_json",false,18072685002681645329],[14261240476176424521,"build_script_build",false,16874681479352317322],[14585479307175734061,"windows",false,3415978176206528813],[16727543399706004146,"cookie",false,13525943706754713949],[16928111194414003569,"dirs",false,821286391557191351],[18408407127522236545,"getrandom",false,17577093460725341681]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-90e324d6f57db812\\dep-lib-tauri","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-ba8c46fca752eabc/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-ba8c46fca752eabc/run-build-script-build-script-build new file mode 100644 index 000000000..fe068a3be --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-ba8c46fca752eabc/run-build-script-build-script-build @@ -0,0 +1 @@ +8a75a84a66e92eea \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-ba8c46fca752eabc/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-ba8c46fca752eabc/run-build-script-build-script-build.json new file mode 100644 index 000000000..3e00937ca --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-ba8c46fca752eabc/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[14261240476176424521,"build_script_build",false,2652024781027406221]],"local":[{"RerunIfEnvChanged":{"var":"REMOVE_UNUSED_COMMANDS","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-bda43ffff7efbb0f/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-bda43ffff7efbb0f/build-script-build-script-build new file mode 100644 index 000000000..84e97c2c7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-bda43ffff7efbb0f/build-script-build-script-build @@ -0,0 +1 @@ +8df1abc07ce2cd24 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-bda43ffff7efbb0f/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-bda43ffff7efbb0f/build-script-build-script-build.json new file mode 100644 index 000000000..ed264c1ad --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-bda43ffff7efbb0f/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"common-controls-v6\", \"compression\", \"default\", \"dynamic-acl\", \"tauri-runtime-wry\", \"webkit2gtk\", \"webview2-com\", \"wry\", \"x11\"]","declared_features":"[\"common-controls-v6\", \"compression\", \"config-json5\", \"config-toml\", \"custom-protocol\", \"data-url\", \"default\", \"devtools\", \"dynamic-acl\", \"http-range\", \"image\", \"image-ico\", \"image-png\", \"isolation\", \"linux-libxdo\", \"macos-private-api\", \"macos-proxy\", \"native-tls\", \"native-tls-vendored\", \"objc-exception\", \"process-relaunch-dangerous-allow-symlink-macos\", \"protocol-asset\", \"rustls-tls\", \"specta\", \"tauri-runtime-wry\", \"test\", \"tracing\", \"tray-icon\", \"unstable\", \"uuid\", \"webkit2gtk\", \"webview-data-url\", \"webview2-com\", \"wry\", \"x11\"]","target":5408242616063297496,"profile":2225463790103693989,"path":946579871797813679,"deps":[[776188902721909695,"tauri_utils",false,9479417519293812561],[9293239362693504808,"glob",false,4861282959002930901],[13077543566650298139,"heck",false,3186914118398415201],[18136372462481365331,"tauri_build",false,12087442299222363448]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-bda43ffff7efbb0f\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-bda43ffff7efbb0f/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-bda43ffff7efbb0f/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-bda43ffff7efbb0f/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-bda43ffff7efbb0f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-bda43ffff7efbb0f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-bda43ffff7efbb0f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-build-29bd8a461a4c57dc/dep-lib-tauri_build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-build-29bd8a461a4c57dc/dep-lib-tauri_build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-build-29bd8a461a4c57dc/dep-lib-tauri_build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-build-29bd8a461a4c57dc/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-build-29bd8a461a4c57dc/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-build-29bd8a461a4c57dc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-build-29bd8a461a4c57dc/lib-tauri_build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-build-29bd8a461a4c57dc/lib-tauri_build new file mode 100644 index 000000000..5904ca32e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-build-29bd8a461a4c57dc/lib-tauri_build @@ -0,0 +1 @@ +380d2ea8ba38bfa7 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-build-29bd8a461a4c57dc/lib-tauri_build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-build-29bd8a461a4c57dc/lib-tauri_build.json new file mode 100644 index 000000000..0efaa51d1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-build-29bd8a461a4c57dc/lib-tauri_build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"codegen\", \"config-json\", \"config-json5\", \"config-toml\", \"default\", \"isolation\", \"quote\", \"tauri-codegen\"]","target":1006236803848883740,"profile":2225463790103693989,"path":1959134921270413798,"deps":[[776188902721909695,"tauri_utils",false,9479417519293812561],[4824857623768494398,"cargo_toml",false,1160831596511807663],[6913375703034175521,"schemars",false,16009958809361669042],[7170110829644101142,"json_patch",false,11097598393674209805],[9293239362693504808,"glob",false,4861282959002930901],[12176723955989927267,"toml",false,4732353750388681305],[12478428894219133322,"anyhow",false,10119181572751020656],[13077543566650298139,"heck",false,3186914118398415201],[13548984313718623784,"serde",false,10784126109130480978],[13795362694956882968,"serde_json",false,9747708274794738682],[14806469453183769777,"tauri_winres",false,8203112017923417542],[15622660310229662834,"walkdir",false,18283700243666572597],[16928111194414003569,"dirs",false,1097251552935762824],[18361894353739432590,"semver",false,17711502904129342382]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-build-29bd8a461a4c57dc\\dep-lib-tauri_build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-codegen-30e10e5986797c5b/dep-lib-tauri_codegen b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-codegen-30e10e5986797c5b/dep-lib-tauri_codegen new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-codegen-30e10e5986797c5b/dep-lib-tauri_codegen differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-codegen-30e10e5986797c5b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-codegen-30e10e5986797c5b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-codegen-30e10e5986797c5b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-codegen-30e10e5986797c5b/lib-tauri_codegen b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-codegen-30e10e5986797c5b/lib-tauri_codegen new file mode 100644 index 000000000..77f68a33a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-codegen-30e10e5986797c5b/lib-tauri_codegen @@ -0,0 +1 @@ +518b431f2ef2accb \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-codegen-30e10e5986797c5b/lib-tauri_codegen.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-codegen-30e10e5986797c5b/lib-tauri_codegen.json new file mode 100644 index 000000000..6a62b9eb1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-codegen-30e10e5986797c5b/lib-tauri_codegen.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"brotli\", \"compression\"]","declared_features":"[\"brotli\", \"compression\", \"config-json5\", \"config-toml\", \"isolation\"]","target":17460618180909919773,"profile":2225463790103693989,"path":4841507807411465663,"deps":[[776188902721909695,"tauri_utils",false,9479417519293812561],[1528297757488249563,"url",false,7803269967486532229],[1678291836268844980,"brotli",false,18358366477526841670],[2448563160050429386,"thiserror",false,11087210622057152061],[4289358735036141001,"proc_macro2",false,3635241377792335322],[6804519996442711849,"uuid",false,10954108970332273032],[7170110829644101142,"json_patch",false,11097598393674209805],[9857275760291862238,"sha2",false,7947138855689865959],[10420560437213941093,"syn",false,7559193294071037429],[12687914511023397207,"png",false,10003065366284633312],[13077212702700853852,"base64",false,1775708333510296620],[13111758008314797071,"quote",false,4999842116374801128],[13548984313718623784,"serde",false,10784126109130480978],[13795362694956882968,"serde_json",false,9747708274794738682],[15622660310229662834,"walkdir",false,18283700243666572597],[17429718509320614511,"ico",false,17778675484253986755],[18361894353739432590,"semver",false,17711502904129342382]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-codegen-30e10e5986797c5b\\dep-lib-tauri_codegen","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-macros-ba105c66ce02d7d4/dep-lib-tauri_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-macros-ba105c66ce02d7d4/dep-lib-tauri_macros new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-macros-ba105c66ce02d7d4/dep-lib-tauri_macros differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-macros-ba105c66ce02d7d4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-macros-ba105c66ce02d7d4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-macros-ba105c66ce02d7d4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-macros-ba105c66ce02d7d4/lib-tauri_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-macros-ba105c66ce02d7d4/lib-tauri_macros new file mode 100644 index 000000000..684c1fedc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-macros-ba105c66ce02d7d4/lib-tauri_macros @@ -0,0 +1 @@ +7f8a28f996f47ea8 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-macros-ba105c66ce02d7d4/lib-tauri_macros.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-macros-ba105c66ce02d7d4/lib-tauri_macros.json new file mode 100644 index 000000000..f77c15ed2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-macros-ba105c66ce02d7d4/lib-tauri_macros.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"compression\"]","declared_features":"[\"compression\", \"config-json5\", \"config-toml\", \"custom-protocol\", \"isolation\", \"tracing\"]","target":4649449654257170297,"profile":2225463790103693989,"path":14985480053610218076,"deps":[[776188902721909695,"tauri_utils",false,9479417519293812561],[2018054805683020038,"tauri_codegen",false,14676371565600541521],[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13077543566650298139,"heck",false,3186914118398415201],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-macros-ba105c66ce02d7d4\\dep-lib-tauri_macros","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-11233ba9303eca86/dep-lib-tauri_plugin b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-11233ba9303eca86/dep-lib-tauri_plugin new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-11233ba9303eca86/dep-lib-tauri_plugin differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-11233ba9303eca86/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-11233ba9303eca86/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-11233ba9303eca86/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-11233ba9303eca86/lib-tauri_plugin b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-11233ba9303eca86/lib-tauri_plugin new file mode 100644 index 000000000..5a3f8c845 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-11233ba9303eca86/lib-tauri_plugin @@ -0,0 +1 @@ +bbf3868e65181424 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-11233ba9303eca86/lib-tauri_plugin.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-11233ba9303eca86/lib-tauri_plugin.json new file mode 100644 index 000000000..cdd127188 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-11233ba9303eca86/lib-tauri_plugin.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"build\"]","declared_features":"[\"build\", \"runtime\"]","target":15996119522804316622,"profile":2225463790103693989,"path":8644912258445079483,"deps":[[776188902721909695,"tauri_utils",false,9479417519293812561],[6913375703034175521,"schemars",false,16009958809361669042],[9293239362693504808,"glob",false,4861282959002930901],[12176723955989927267,"toml",false,4732353750388681305],[12478428894219133322,"anyhow",false,10119181572751020656],[13548984313718623784,"serde",false,10784126109130480978],[13795362694956882968,"serde_json",false,9747708274794738682],[15622660310229662834,"walkdir",false,18283700243666572597]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-plugin-11233ba9303eca86\\dep-lib-tauri_plugin","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-39d9942324396471/dep-test-lib-tauri_plugin_splashscreen b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-39d9942324396471/dep-test-lib-tauri_plugin_splashscreen new file mode 100644 index 000000000..543dcd512 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-39d9942324396471/dep-test-lib-tauri_plugin_splashscreen differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-39d9942324396471/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-39d9942324396471/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-39d9942324396471/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-39d9942324396471/test-lib-tauri_plugin_splashscreen b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-39d9942324396471/test-lib-tauri_plugin_splashscreen new file mode 100644 index 000000000..bd25b714f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-39d9942324396471/test-lib-tauri_plugin_splashscreen @@ -0,0 +1 @@ +e9c4445607689e74 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-39d9942324396471/test-lib-tauri_plugin_splashscreen.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-39d9942324396471/test-lib-tauri_plugin_splashscreen.json new file mode 100644 index 000000000..3a6fc3777 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-39d9942324396471/test-lib-tauri_plugin_splashscreen.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":17974612496410072285,"profile":1722584277633009122,"path":10763286916239946207,"deps":[[374574947154630294,"build_script_build",false,4455301649905630973],[2448563160050429386,"thiserror",false,11087210622057152061],[13548984313718623784,"serde",false,9531788703992814231],[14261240476176424521,"tauri",false,18018614933762000970]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-plugin-splashscreen-39d9942324396471\\dep-test-lib-tauri_plugin_splashscreen","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5e61eae64b24b61b/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5e61eae64b24b61b/run-build-script-build-script-build new file mode 100644 index 000000000..ad9d4ef3b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5e61eae64b24b61b/run-build-script-build-script-build @@ -0,0 +1 @@ +fd3ed6d13e69d43d \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5e61eae64b24b61b/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5e61eae64b24b61b/run-build-script-build-script-build.json new file mode 100644 index 000000000..b4228be0e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5e61eae64b24b61b/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[14261240476176424521,"build_script_build",false,16874681479352317322],[374574947154630294,"build_script_build",false,8581362375538085839]],"local":[{"RerunIfChanged":{"output":"debug\\build\\tauri-plugin-splashscreen-5e61eae64b24b61b\\output","paths":["permissions"]}},{"RerunIfEnvChanged":{"var":"REMOVE_UNUSED_COMMANDS","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5ff71c3b237dd818/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5ff71c3b237dd818/build-script-build-script-build new file mode 100644 index 000000000..422c76542 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5ff71c3b237dd818/build-script-build-script-build @@ -0,0 +1 @@ +cf8fd9529d1f1777 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5ff71c3b237dd818/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5ff71c3b237dd818/build-script-build-script-build.json new file mode 100644 index 000000000..cbd1c59f3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5ff71c3b237dd818/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":7409704062750675268,"path":13767053534773805487,"deps":[[12985028376309037298,"tauri_plugin",false,2599729709361591227]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-plugin-splashscreen-5ff71c3b237dd818\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5ff71c3b237dd818/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5ff71c3b237dd818/dep-build-script-build-script-build new file mode 100644 index 000000000..b7bf9e238 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5ff71c3b237dd818/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5ff71c3b237dd818/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5ff71c3b237dd818/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-5ff71c3b237dd818/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-7cbbdeb947d71027/dep-lib-tauri_plugin_splashscreen b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-7cbbdeb947d71027/dep-lib-tauri_plugin_splashscreen new file mode 100644 index 000000000..c351b5ea1 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-7cbbdeb947d71027/dep-lib-tauri_plugin_splashscreen differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-7cbbdeb947d71027/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-7cbbdeb947d71027/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-7cbbdeb947d71027/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-7cbbdeb947d71027/lib-tauri_plugin_splashscreen b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-7cbbdeb947d71027/lib-tauri_plugin_splashscreen new file mode 100644 index 000000000..de8d17d18 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-7cbbdeb947d71027/lib-tauri_plugin_splashscreen @@ -0,0 +1 @@ +ad5ae0ad3b643481 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-7cbbdeb947d71027/lib-tauri_plugin_splashscreen.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-7cbbdeb947d71027/lib-tauri_plugin_splashscreen.json new file mode 100644 index 000000000..0ac13c2b2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-plugin-splashscreen-7cbbdeb947d71027/lib-tauri_plugin_splashscreen.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":17974612496410072285,"profile":8731458305071235362,"path":10763286916239946207,"deps":[[374574947154630294,"build_script_build",false,4455301649905630973],[2448563160050429386,"thiserror",false,11087210622057152061],[13548984313718623784,"serde",false,9531788703992814231],[14261240476176424521,"tauri",false,18018614933762000970]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-plugin-splashscreen-7cbbdeb947d71027\\dep-lib-tauri_plugin_splashscreen","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-21edc10ad883d0ee/dep-lib-tauri_runtime b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-21edc10ad883d0ee/dep-lib-tauri_runtime new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-21edc10ad883d0ee/dep-lib-tauri_runtime differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-21edc10ad883d0ee/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-21edc10ad883d0ee/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-21edc10ad883d0ee/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-21edc10ad883d0ee/lib-tauri_runtime b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-21edc10ad883d0ee/lib-tauri_runtime new file mode 100644 index 000000000..e4ae2c065 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-21edc10ad883d0ee/lib-tauri_runtime @@ -0,0 +1 @@ +88f946601182ed26 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-21edc10ad883d0ee/lib-tauri_runtime.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-21edc10ad883d0ee/lib-tauri_runtime.json new file mode 100644 index 000000000..0a69d877f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-21edc10ad883d0ee/lib-tauri_runtime.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"devtools\", \"macos-private-api\"]","target":10306386172444932100,"profile":15657897354478470176,"path":12633272673307707514,"deps":[[776188902721909695,"tauri_utils",false,14039461016261258076],[1528297757488249563,"url",false,14942242089227637828],[2448563160050429386,"thiserror",false,11087210622057152061],[2620434475832828286,"http",false,9068168327974485296],[4143744114649553716,"raw_window_handle",false,15731530099593162238],[6111127215204891552,"build_script_build",false,14915636918550755847],[7606335748176206944,"dpi",false,9362547875939283471],[10781831454009427734,"webview2_com",false,5091479544109681465],[13548984313718623784,"serde",false,9531788703992814231],[13795362694956882968,"serde_json",false,18072685002681645329],[14585479307175734061,"windows",false,3415978176206528813],[16727543399706004146,"cookie",false,13525943706754713949]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-runtime-21edc10ad883d0ee\\dep-lib-tauri_runtime","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-dc21f9b685e3b0e7/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-dc21f9b685e3b0e7/build-script-build-script-build new file mode 100644 index 000000000..ccd4ea5a5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-dc21f9b685e3b0e7/build-script-build-script-build @@ -0,0 +1 @@ +2c6578f57ef519a1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-dc21f9b685e3b0e7/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-dc21f9b685e3b0e7/build-script-build-script-build.json new file mode 100644 index 000000000..ae63d85d4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-dc21f9b685e3b0e7/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"devtools\", \"macos-private-api\"]","target":5408242616063297496,"profile":2225463790103693989,"path":626090248980898815,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-runtime-dc21f9b685e3b0e7\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-dc21f9b685e3b0e7/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-dc21f9b685e3b0e7/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-dc21f9b685e3b0e7/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-dc21f9b685e3b0e7/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-dc21f9b685e3b0e7/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-dc21f9b685e3b0e7/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-f21ebb8244979367/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-f21ebb8244979367/run-build-script-build-script-build new file mode 100644 index 000000000..99c30e013 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-f21ebb8244979367/run-build-script-build-script-build @@ -0,0 +1 @@ +077aeb40c0fcfece \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-f21ebb8244979367/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-f21ebb8244979367/run-build-script-build-script-build.json new file mode 100644 index 000000000..1608a02d0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-f21ebb8244979367/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6111127215204891552,"build_script_build",false,11608579440157156652]],"local":[{"Precalculated":"2.10.1"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-2ab824a47ce68d11/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-2ab824a47ce68d11/run-build-script-build-script-build new file mode 100644 index 000000000..5973cc567 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-2ab824a47ce68d11/run-build-script-build-script-build @@ -0,0 +1 @@ +d8c857631d760d14 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-2ab824a47ce68d11/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-2ab824a47ce68d11/run-build-script-build-script-build.json new file mode 100644 index 000000000..6e738a39a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-2ab824a47ce68d11/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[10347147913401555331,"build_script_build",false,5381098625624877830]],"local":[{"Precalculated":"2.10.1"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-75e8df657bad3982/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-75e8df657bad3982/build-script-build-script-build new file mode 100644 index 000000000..d7d1f58d4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-75e8df657bad3982/build-script-build-script-build @@ -0,0 +1 @@ +06abb691b080ad4a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-75e8df657bad3982/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-75e8df657bad3982/build-script-build-script-build.json new file mode 100644 index 000000000..3b251ab31 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-75e8df657bad3982/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"common-controls-v6\", \"x11\"]","declared_features":"[\"common-controls-v6\", \"default\", \"devtools\", \"macos-private-api\", \"macos-proxy\", \"objc-exception\", \"tracing\", \"unstable\", \"x11\"]","target":5408242616063297496,"profile":2225463790103693989,"path":10974899184904154776,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-runtime-wry-75e8df657bad3982\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-75e8df657bad3982/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-75e8df657bad3982/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-75e8df657bad3982/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-75e8df657bad3982/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-75e8df657bad3982/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-75e8df657bad3982/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-8de4016b99698719/dep-lib-tauri_runtime_wry b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-8de4016b99698719/dep-lib-tauri_runtime_wry new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-8de4016b99698719/dep-lib-tauri_runtime_wry differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-8de4016b99698719/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-8de4016b99698719/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-8de4016b99698719/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-8de4016b99698719/lib-tauri_runtime_wry b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-8de4016b99698719/lib-tauri_runtime_wry new file mode 100644 index 000000000..0ec266f78 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-8de4016b99698719/lib-tauri_runtime_wry @@ -0,0 +1 @@ +aa9d4664b0ee94b4 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-8de4016b99698719/lib-tauri_runtime_wry.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-8de4016b99698719/lib-tauri_runtime_wry.json new file mode 100644 index 000000000..f6048c327 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-runtime-wry-8de4016b99698719/lib-tauri_runtime_wry.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"common-controls-v6\", \"x11\"]","declared_features":"[\"common-controls-v6\", \"default\", \"devtools\", \"macos-private-api\", \"macos-proxy\", \"objc-exception\", \"tracing\", \"unstable\", \"x11\"]","target":1901661049345253480,"profile":15657897354478470176,"path":4578630545964112237,"deps":[[776188902721909695,"tauri_utils",false,14039461016261258076],[1528297757488249563,"url",false,14942242089227637828],[2620434475832828286,"http",false,9068168327974485296],[3722963349756955755,"once_cell",false,12341109524702844370],[4143744114649553716,"raw_window_handle",false,15731530099593162238],[6111127215204891552,"tauri_runtime",false,2805041154063006088],[10347147913401555331,"build_script_build",false,1444940924048623832],[10630857666389190470,"log",false,6754411078615141590],[10781831454009427734,"webview2_com",false,5091479544109681465],[11569599376686263750,"tao",false,5976083875461251968],[12180580867954830311,"softbuffer",false,2450608688521315319],[14585479307175734061,"windows",false,3415978176206528813],[16786561127329063945,"wry",false,3151923622143810462]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-runtime-wry-8de4016b99698719\\dep-lib-tauri_runtime_wry","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-0122e440ac27f0ed/dep-lib-tauri_utils b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-0122e440ac27f0ed/dep-lib-tauri_utils new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-0122e440ac27f0ed/dep-lib-tauri_utils differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-0122e440ac27f0ed/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-0122e440ac27f0ed/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-0122e440ac27f0ed/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-0122e440ac27f0ed/lib-tauri_utils b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-0122e440ac27f0ed/lib-tauri_utils new file mode 100644 index 000000000..33081d0d4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-0122e440ac27f0ed/lib-tauri_utils @@ -0,0 +1 @@ +514f1f7b02a88d83 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-0122e440ac27f0ed/lib-tauri_utils.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-0122e440ac27f0ed/lib-tauri_utils.json new file mode 100644 index 000000000..878a8155d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-0122e440ac27f0ed/lib-tauri_utils.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"brotli\", \"build\", \"cargo_metadata\", \"compression\", \"html-manipulation\", \"proc-macro2\", \"quote\", \"resources\", \"schema\", \"schemars\", \"swift-rs\", \"walkdir\"]","declared_features":"[\"aes-gcm\", \"brotli\", \"build\", \"cargo_metadata\", \"compression\", \"config-json5\", \"config-toml\", \"getrandom\", \"html-manipulation\", \"isolation\", \"json5\", \"proc-macro2\", \"process-relaunch-dangerous-allow-symlink-macos\", \"quote\", \"resources\", \"schema\", \"schemars\", \"serialize-to-javascript\", \"swift-rs\", \"walkdir\"]","target":7530130812022395703,"profile":2225463790103693989,"path":1429195984649378335,"deps":[[1200537532907108615,"urlpattern",false,8498854849593312989],[1363051979936526615,"memchr",false,10429968106908219858],[1528297757488249563,"url",false,7803269967486532229],[1678291836268844980,"brotli",false,18358366477526841670],[2448563160050429386,"thiserror",false,11087210622057152061],[2620434475832828286,"http",false,9068168327974485296],[4289358735036141001,"proc_macro2",false,3635241377792335322],[6606131838865521726,"ctor",false,5736815731785450211],[6804519996442711849,"uuid",false,10954108970332273032],[6913375703034175521,"schemars",false,16009958809361669042],[7170110829644101142,"json_patch",false,11097598393674209805],[9086780327361459375,"serde_untagged",false,1485533864158554445],[9293239362693504808,"glob",false,4861282959002930901],[9763978540932877961,"serde_with",false,8373685644608848033],[10630857666389190470,"log",false,6754411078615141590],[11655476559277113544,"cargo_metadata",false,16838918775619303155],[11989259058781683633,"dunce",false,18279171911562756100],[12176723955989927267,"toml",false,4732353750388681305],[12478428894219133322,"anyhow",false,10119181572751020656],[13111758008314797071,"quote",false,4999842116374801128],[13548984313718623784,"serde",false,10784126109130480978],[13795362694956882968,"serde_json",false,9747708274794738682],[14232843520438415263,"html5ever",false,18424224929650482128],[15088007382495681292,"kuchiki",false,3576218002294529039],[15622660310229662834,"walkdir",false,18283700243666572597],[17109794424245468765,"regex",false,1597020154722254568],[17146114186171651583,"infer",false,15488129320274732271],[17186037756130803222,"phf",false,13433449140491704190],[18361894353739432590,"semver",false,17711502904129342382]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-utils-0122e440ac27f0ed\\dep-lib-tauri_utils","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-4d010c7ebd7d68b0/dep-lib-tauri_utils b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-4d010c7ebd7d68b0/dep-lib-tauri_utils new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-4d010c7ebd7d68b0/dep-lib-tauri_utils differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-4d010c7ebd7d68b0/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-4d010c7ebd7d68b0/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-4d010c7ebd7d68b0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-4d010c7ebd7d68b0/lib-tauri_utils b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-4d010c7ebd7d68b0/lib-tauri_utils new file mode 100644 index 000000000..2b6706dce --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-4d010c7ebd7d68b0/lib-tauri_utils @@ -0,0 +1 @@ +5c6b32f8682fd6c2 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-4d010c7ebd7d68b0/lib-tauri_utils.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-4d010c7ebd7d68b0/lib-tauri_utils.json new file mode 100644 index 000000000..c7bfe28c9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-utils-4d010c7ebd7d68b0/lib-tauri_utils.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"brotli\", \"compression\", \"resources\", \"walkdir\"]","declared_features":"[\"aes-gcm\", \"brotli\", \"build\", \"cargo_metadata\", \"compression\", \"config-json5\", \"config-toml\", \"getrandom\", \"html-manipulation\", \"isolation\", \"json5\", \"proc-macro2\", \"process-relaunch-dangerous-allow-symlink-macos\", \"quote\", \"resources\", \"schema\", \"schemars\", \"serialize-to-javascript\", \"swift-rs\", \"walkdir\"]","target":7530130812022395703,"profile":15657897354478470176,"path":1429195984649378335,"deps":[[1200537532907108615,"urlpattern",false,914791597651868309],[1363051979936526615,"memchr",false,10429968106908219858],[1528297757488249563,"url",false,14942242089227637828],[1678291836268844980,"brotli",false,18358366477526841670],[2448563160050429386,"thiserror",false,11087210622057152061],[2620434475832828286,"http",false,9068168327974485296],[6606131838865521726,"ctor",false,5736815731785450211],[6804519996442711849,"uuid",false,159828219166295511],[7170110829644101142,"json_patch",false,11541094302155284055],[9086780327361459375,"serde_untagged",false,3416546661317642889],[9293239362693504808,"glob",false,4861282959002930901],[9763978540932877961,"serde_with",false,3457262455756563161],[10630857666389190470,"log",false,6754411078615141590],[11989259058781683633,"dunce",false,18279171911562756100],[12176723955989927267,"toml",false,11619755881851305446],[12478428894219133322,"anyhow",false,10119181572751020656],[13548984313718623784,"serde",false,9531788703992814231],[13795362694956882968,"serde_json",false,18072685002681645329],[15622660310229662834,"walkdir",false,2642308311745297829],[17109794424245468765,"regex",false,1597020154722254568],[17146114186171651583,"infer",false,13768272685080300259],[17186037756130803222,"phf",false,12863199868106306904],[18361894353739432590,"semver",false,5251164313043167345]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-utils-4d010c7ebd7d68b0\\dep-lib-tauri_utils","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-winres-4c45253214bd2bfa/dep-lib-tauri_winres b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-winres-4c45253214bd2bfa/dep-lib-tauri_winres new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-winres-4c45253214bd2bfa/dep-lib-tauri_winres differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-winres-4c45253214bd2bfa/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-winres-4c45253214bd2bfa/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-winres-4c45253214bd2bfa/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-winres-4c45253214bd2bfa/lib-tauri_winres b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-winres-4c45253214bd2bfa/lib-tauri_winres new file mode 100644 index 000000000..40308789c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-winres-4c45253214bd2bfa/lib-tauri_winres @@ -0,0 +1 @@ +c6251019eb4ed771 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-winres-4c45253214bd2bfa/lib-tauri_winres.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-winres-4c45253214bd2bfa/lib-tauri_winres.json new file mode 100644 index 000000000..9bcb785fe --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tauri-winres-4c45253214bd2bfa/lib-tauri_winres.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":2086567024422996381,"profile":2225463790103693989,"path":8123615330691544882,"deps":[[2889408752415680726,"embed_resource",false,14012869834429105616],[11989259058781683633,"dunce",false,18279171911562756100],[12176723955989927267,"toml",false,4732353750388681305]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tauri-winres-4c45253214bd2bfa\\dep-lib-tauri_winres","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tendril-2c00be1ca956e2f2/dep-lib-tendril b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tendril-2c00be1ca956e2f2/dep-lib-tendril new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tendril-2c00be1ca956e2f2/dep-lib-tendril differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tendril-2c00be1ca956e2f2/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tendril-2c00be1ca956e2f2/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tendril-2c00be1ca956e2f2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tendril-2c00be1ca956e2f2/lib-tendril b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tendril-2c00be1ca956e2f2/lib-tendril new file mode 100644 index 000000000..e8ced35ff --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tendril-2c00be1ca956e2f2/lib-tendril @@ -0,0 +1 @@ +9366b017bc237588 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tendril-2c00be1ca956e2f2/lib-tendril.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tendril-2c00be1ca956e2f2/lib-tendril.json new file mode 100644 index 000000000..56b3f1c54 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tendril-2c00be1ca956e2f2/lib-tendril.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"bench\", \"encoding\", \"encoding_rs\"]","target":11953572604185802203,"profile":2225463790103693989,"path":11552785968094526240,"deps":[[3353245243264097488,"futf",false,9722461894969342760],[4359956005902820838,"utf8",false,3877480686440148836],[10952224881603935644,"mac",false,1209686851167187827]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tendril-2c00be1ca956e2f2\\dep-lib-tendril","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-1d4aa1d4aa501a19/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-1d4aa1d4aa501a19/run-build-script-build-script-build new file mode 100644 index 000000000..99f8cb7fe --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-1d4aa1d4aa501a19/run-build-script-build-script-build @@ -0,0 +1 @@ +0bc922be8bb4d1cc \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-1d4aa1d4aa501a19/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-1d4aa1d4aa501a19/run-build-script-build-script-build.json new file mode 100644 index 000000000..253387857 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-1d4aa1d4aa501a19/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[8008191657135824715,"build_script_build",false,16376831752427711831]],"local":[{"RerunIfChanged":{"output":"debug\\build\\thiserror-1d4aa1d4aa501a19\\output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-473b00ea605eeb23/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-473b00ea605eeb23/build-script-build-script-build new file mode 100644 index 000000000..66af6a549 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-473b00ea605eeb23/build-script-build-script-build @@ -0,0 +1 @@ +57adcaedb53146e3 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-473b00ea605eeb23/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-473b00ea605eeb23/build-script-build-script-build.json new file mode 100644 index 000000000..e24a974bd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-473b00ea605eeb23/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":2225463790103693989,"path":2182939845443230290,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\thiserror-473b00ea605eeb23\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-473b00ea605eeb23/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-473b00ea605eeb23/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-473b00ea605eeb23/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-473b00ea605eeb23/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-473b00ea605eeb23/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-473b00ea605eeb23/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-4ce630f6f8695590/dep-lib-thiserror b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-4ce630f6f8695590/dep-lib-thiserror new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-4ce630f6f8695590/dep-lib-thiserror differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-4ce630f6f8695590/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-4ce630f6f8695590/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-4ce630f6f8695590/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-4ce630f6f8695590/lib-thiserror b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-4ce630f6f8695590/lib-thiserror new file mode 100644 index 000000000..4f47866a2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-4ce630f6f8695590/lib-thiserror @@ -0,0 +1 @@ +959a8b9073bb84f5 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-4ce630f6f8695590/lib-thiserror.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-4ce630f6f8695590/lib-thiserror.json new file mode 100644 index 000000000..0ef22ea4e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-4ce630f6f8695590/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":13586076721141200315,"profile":15657897354478470176,"path":17404277783106069359,"deps":[[8008191657135824715,"build_script_build",false,14758775966153230603],[15291996789830541733,"thiserror_impl",false,17361894272732638986]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\thiserror-4ce630f6f8695590\\dep-lib-thiserror","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-a5a0b5b535d3b2b1/dep-lib-thiserror b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-a5a0b5b535d3b2b1/dep-lib-thiserror new file mode 100644 index 000000000..71bd5aa78 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-a5a0b5b535d3b2b1/dep-lib-thiserror differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-a5a0b5b535d3b2b1/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-a5a0b5b535d3b2b1/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-a5a0b5b535d3b2b1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-a5a0b5b535d3b2b1/lib-thiserror b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-a5a0b5b535d3b2b1/lib-thiserror new file mode 100644 index 000000000..7913cbc89 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-a5a0b5b535d3b2b1/lib-thiserror @@ -0,0 +1 @@ +3d7ea77551afdd99 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-a5a0b5b535d3b2b1/lib-thiserror.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-a5a0b5b535d3b2b1/lib-thiserror.json new file mode 100644 index 000000000..f8301e516 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-a5a0b5b535d3b2b1/lib-thiserror.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":13586076721141200315,"profile":15657897354478470176,"path":696906735768227730,"deps":[[2448563160050429386,"build_script_build",false,14467455682450828105],[10353313219209519794,"thiserror_impl",false,11653787627320258613]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\thiserror-a5a0b5b535d3b2b1\\dep-lib-thiserror","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-d91cac4054dfb877/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-d91cac4054dfb877/build-script-build-script-build new file mode 100644 index 000000000..53ab4b1d7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-d91cac4054dfb877/build-script-build-script-build @@ -0,0 +1 @@ +cca031dba55bd7bf \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-d91cac4054dfb877/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-d91cac4054dfb877/build-script-build-script-build.json new file mode 100644 index 000000000..10a83e7ad --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-d91cac4054dfb877/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":5408242616063297496,"profile":2225463790103693989,"path":18378502788009442634,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\thiserror-d91cac4054dfb877\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-d91cac4054dfb877/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-d91cac4054dfb877/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-d91cac4054dfb877/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-d91cac4054dfb877/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-d91cac4054dfb877/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-d91cac4054dfb877/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-ee51ed8556e59dc9/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-ee51ed8556e59dc9/run-build-script-build-script-build new file mode 100644 index 000000000..2860ec996 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-ee51ed8556e59dc9/run-build-script-build-script-build @@ -0,0 +1 @@ +492b30944abac6c8 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-ee51ed8556e59dc9/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-ee51ed8556e59dc9/run-build-script-build-script-build.json new file mode 100644 index 000000000..d3def3f05 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-ee51ed8556e59dc9/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[2448563160050429386,"build_script_build",false,13823618349142221004]],"local":[{"RerunIfChanged":{"output":"debug\\build\\thiserror-ee51ed8556e59dc9\\output","paths":["build/probe.rs"]}},{"RerunIfEnvChanged":{"var":"RUSTC_BOOTSTRAP","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-54985901d5a93344/dep-lib-thiserror_impl b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-54985901d5a93344/dep-lib-thiserror_impl new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-54985901d5a93344/dep-lib-thiserror_impl differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-54985901d5a93344/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-54985901d5a93344/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-54985901d5a93344/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-54985901d5a93344/lib-thiserror_impl b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-54985901d5a93344/lib-thiserror_impl new file mode 100644 index 000000000..7e0fff387 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-54985901d5a93344/lib-thiserror_impl @@ -0,0 +1 @@ +353044461a92baa1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-54985901d5a93344/lib-thiserror_impl.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-54985901d5a93344/lib-thiserror_impl.json new file mode 100644 index 000000000..a5f11af98 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-54985901d5a93344/lib-thiserror_impl.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":6216210811039475267,"profile":2225463790103693989,"path":10475699050742980474,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\thiserror-impl-54985901d5a93344\\dep-lib-thiserror_impl","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-a8ca8d69df887b6b/dep-lib-thiserror_impl b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-a8ca8d69df887b6b/dep-lib-thiserror_impl new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-a8ca8d69df887b6b/dep-lib-thiserror_impl differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-a8ca8d69df887b6b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-a8ca8d69df887b6b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-a8ca8d69df887b6b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-a8ca8d69df887b6b/lib-thiserror_impl b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-a8ca8d69df887b6b/lib-thiserror_impl new file mode 100644 index 000000000..61bb8cb86 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-a8ca8d69df887b6b/lib-thiserror_impl @@ -0,0 +1 @@ +0a2f1e92dad6f1f0 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-a8ca8d69df887b6b/lib-thiserror_impl.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-a8ca8d69df887b6b/lib-thiserror_impl.json new file mode 100644 index 000000000..313de8594 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/thiserror-impl-a8ca8d69df887b6b/lib-thiserror_impl.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":6216210811039475267,"profile":2225463790103693989,"path":7401987540910661573,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\thiserror-impl-a8ca8d69df887b6b\\dep-lib-thiserror_impl","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-ca130056b05a4582/dep-lib-time b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-ca130056b05a4582/dep-lib-time new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-ca130056b05a4582/dep-lib-time differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-ca130056b05a4582/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-ca130056b05a4582/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-ca130056b05a4582/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-ca130056b05a4582/lib-time b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-ca130056b05a4582/lib-time new file mode 100644 index 000000000..b2492a32b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-ca130056b05a4582/lib-time @@ -0,0 +1 @@ +389d05b748468b22 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-ca130056b05a4582/lib-time.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-ca130056b05a4582/lib-time.json new file mode 100644 index 000000000..dd13d3edb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-ca130056b05a4582/lib-time.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"formatting\", \"macros\", \"parsing\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"formatting\", \"large-dates\", \"local-offset\", \"macros\", \"parsing\", \"quickcheck\", \"rand\", \"rand08\", \"rand09\", \"serde\", \"serde-human-readable\", \"serde-well-known\", \"std\", \"wasm-bindgen\"]","target":8476133839300368761,"profile":3578024019828412783,"path":6693674802497399477,"deps":[[5901133744777009488,"powerfmt",false,17305193533652852813],[9889232103266058129,"time_macros",false,3879394209728263133],[9938278000850417404,"itoa",false,17780313112227028310],[15572560757901793625,"time_core",false,12183646050172624818],[15673264339717225619,"num_conv",false,4602474109570615343],[17634244132575000293,"deranged",false,560072089066428468]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\time-ca130056b05a4582\\dep-lib-time","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-core-f91a7f39b4207739/dep-lib-time_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-core-f91a7f39b4207739/dep-lib-time_core new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-core-f91a7f39b4207739/dep-lib-time_core differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-core-f91a7f39b4207739/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-core-f91a7f39b4207739/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-core-f91a7f39b4207739/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-core-f91a7f39b4207739/lib-time_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-core-f91a7f39b4207739/lib-time_core new file mode 100644 index 000000000..9fed342b8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-core-f91a7f39b4207739/lib-time_core @@ -0,0 +1 @@ +b25fa1e9870115a9 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-core-f91a7f39b4207739/lib-time_core.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-core-f91a7f39b4207739/lib-time_core.json new file mode 100644 index 000000000..07559e169 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-core-f91a7f39b4207739/lib-time_core.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"large-dates\"]","target":10582047573009931897,"profile":3578024019828412783,"path":5236617840849155760,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\time-core-f91a7f39b4207739\\dep-lib-time_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-macros-7a8df62ca7c560ca/dep-lib-time_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-macros-7a8df62ca7c560ca/dep-lib-time_macros new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-macros-7a8df62ca7c560ca/dep-lib-time_macros differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-macros-7a8df62ca7c560ca/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-macros-7a8df62ca7c560ca/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-macros-7a8df62ca7c560ca/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-macros-7a8df62ca7c560ca/lib-time_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-macros-7a8df62ca7c560ca/lib-time_macros new file mode 100644 index 000000000..af6e8ef56 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-macros-7a8df62ca7c560ca/lib-time_macros @@ -0,0 +1 @@ +dd738fd67a60d635 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-macros-7a8df62ca7c560ca/lib-time_macros.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-macros-7a8df62ca7c560ca/lib-time_macros.json new file mode 100644 index 000000000..8a3570a40 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/time-macros-7a8df62ca7c560ca/lib-time_macros.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"formatting\", \"parsing\"]","declared_features":"[\"formatting\", \"large-dates\", \"parsing\", \"serde\"]","target":6150452040990090255,"profile":3917305393394401773,"path":1251309840309221362,"deps":[[15572560757901793625,"time_core",false,12183646050172624818],[15673264339717225619,"num_conv",false,4602474109570615343]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\time-macros-7a8df62ca7c560ca\\dep-lib-time_macros","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-3116c07071ce40b6/dep-lib-tinystr b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-3116c07071ce40b6/dep-lib-tinystr new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-3116c07071ce40b6/dep-lib-tinystr differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-3116c07071ce40b6/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-3116c07071ce40b6/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-3116c07071ce40b6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-3116c07071ce40b6/lib-tinystr b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-3116c07071ce40b6/lib-tinystr new file mode 100644 index 000000000..bbb817c45 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-3116c07071ce40b6/lib-tinystr @@ -0,0 +1 @@ +c2a3b943e73720d4 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-3116c07071ce40b6/lib-tinystr.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-3116c07071ce40b6/lib-tinystr.json new file mode 100644 index 000000000..b58c974a2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-3116c07071ce40b6/lib-tinystr.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"std\", \"zerovec\"]","target":161691779326313357,"profile":15657897354478470176,"path":8415702139359711485,"deps":[[5298260564258778412,"displaydoc",false,10274559501707370894],[14563910249377136032,"zerovec",false,1715448149783892678]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tinystr-3116c07071ce40b6\\dep-lib-tinystr","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-b9b948590307c0ea/dep-lib-tinystr b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-b9b948590307c0ea/dep-lib-tinystr new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-b9b948590307c0ea/dep-lib-tinystr differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-b9b948590307c0ea/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-b9b948590307c0ea/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-b9b948590307c0ea/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-b9b948590307c0ea/lib-tinystr b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-b9b948590307c0ea/lib-tinystr new file mode 100644 index 000000000..7d906314f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-b9b948590307c0ea/lib-tinystr @@ -0,0 +1 @@ +2d7907e6534b846e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-b9b948590307c0ea/lib-tinystr.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-b9b948590307c0ea/lib-tinystr.json new file mode 100644 index 000000000..2b4c0ebb5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tinystr-b9b948590307c0ea/lib-tinystr.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"zerovec\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"serde\", \"std\", \"zerovec\"]","target":161691779326313357,"profile":15657897354478470176,"path":8415702139359711485,"deps":[[5298260564258778412,"displaydoc",false,10274559501707370894],[14563910249377136032,"zerovec",false,10059502159815721741]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tinystr-b9b948590307c0ea\\dep-lib-tinystr","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tokio-7c04e7e7ca7a4ec0/dep-lib-tokio b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tokio-7c04e7e7ca7a4ec0/dep-lib-tokio new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tokio-7c04e7e7ca7a4ec0/dep-lib-tokio differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tokio-7c04e7e7ca7a4ec0/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tokio-7c04e7e7ca7a4ec0/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tokio-7c04e7e7ca7a4ec0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tokio-7c04e7e7ca7a4ec0/lib-tokio b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tokio-7c04e7e7ca7a4ec0/lib-tokio new file mode 100644 index 000000000..edc2fe81c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tokio-7c04e7e7ca7a4ec0/lib-tokio @@ -0,0 +1 @@ +1752ff041176b2ca \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tokio-7c04e7e7ca7a4ec0/lib-tokio.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tokio-7c04e7e7ca7a4ec0/lib-tokio.json new file mode 100644 index 000000000..ccbcc3f91 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tokio-7c04e7e7ca7a4ec0/lib-tokio.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"bytes\", \"default\", \"fs\", \"io-util\", \"rt\", \"rt-multi-thread\", \"sync\"]","declared_features":"[\"bytes\", \"default\", \"fs\", \"full\", \"io-std\", \"io-uring\", \"io-util\", \"libc\", \"macros\", \"mio\", \"net\", \"parking_lot\", \"process\", \"rt\", \"rt-multi-thread\", \"signal\", \"signal-hook-registry\", \"socket2\", \"sync\", \"taskdump\", \"test-util\", \"time\", \"tokio-macros\", \"tracing\", \"windows-sys\"]","target":9605832425414080464,"profile":971378857086334487,"path":13096593202881786189,"deps":[[2251399859588827949,"pin_project_lite",false,13955917239458497014],[3870702314125662939,"bytes",false,12932831470563491852]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tokio-7c04e7e7ca7a4ec0\\dep-lib-tokio","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-28c9bc99db827160/dep-lib-toml b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-28c9bc99db827160/dep-lib-toml new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-28c9bc99db827160/dep-lib-toml differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-28c9bc99db827160/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-28c9bc99db827160/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-28c9bc99db827160/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-28c9bc99db827160/lib-toml b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-28c9bc99db827160/lib-toml new file mode 100644 index 000000000..2bfdfb7cb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-28c9bc99db827160/lib-toml @@ -0,0 +1 @@ +59aa67b3a9b2ac41 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-28c9bc99db827160/lib-toml.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-28c9bc99db827160/lib-toml.json new file mode 100644 index 000000000..f80e2dbee --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-28c9bc99db827160/lib-toml.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"display\", \"parse\", \"serde\", \"std\"]","declared_features":"[\"debug\", \"default\", \"display\", \"fast_hash\", \"parse\", \"preserve_order\", \"serde\", \"std\", \"unbounded\"]","target":11307174408538613157,"profile":6657407330989261599,"path":104244811157105959,"deps":[[1186802552529598449,"winnow",false,7885891096692909646],[2595807138143115569,"toml_writer",false,10632240778226763491],[6911000249307528833,"toml_datetime",false,9565861354552583556],[11899261697793765154,"serde_core",false,3505665340476166092],[14909187828359649377,"toml_parser",false,1884351877362577870],[15562492723520485225,"serde_spanned",false,943783872224237470]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\toml-28c9bc99db827160\\dep-lib-toml","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-868616f0aeea36d8/dep-lib-toml b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-868616f0aeea36d8/dep-lib-toml new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-868616f0aeea36d8/dep-lib-toml differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-868616f0aeea36d8/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-868616f0aeea36d8/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-868616f0aeea36d8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-868616f0aeea36d8/lib-toml b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-868616f0aeea36d8/lib-toml new file mode 100644 index 000000000..a1327c4e9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-868616f0aeea36d8/lib-toml @@ -0,0 +1 @@ +e6bd801269aa41a1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-868616f0aeea36d8/lib-toml.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-868616f0aeea36d8/lib-toml.json new file mode 100644 index 000000000..488f1d1c8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml-868616f0aeea36d8/lib-toml.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"display\", \"parse\", \"serde\", \"std\"]","declared_features":"[\"debug\", \"default\", \"display\", \"fast_hash\", \"parse\", \"preserve_order\", \"serde\", \"std\", \"unbounded\"]","target":11307174408538613157,"profile":6657407330989261599,"path":104244811157105959,"deps":[[1186802552529598449,"winnow",false,7885891096692909646],[2595807138143115569,"toml_writer",false,10632240778226763491],[6911000249307528833,"toml_datetime",false,13606525379062714131],[11899261697793765154,"serde_core",false,6500342841086748373],[14909187828359649377,"toml_parser",false,1884351877362577870],[15562492723520485225,"serde_spanned",false,4937813157438480308]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\toml-868616f0aeea36d8\\dep-lib-toml","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-1abd4bfa4539ebae/dep-lib-toml_datetime b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-1abd4bfa4539ebae/dep-lib-toml_datetime new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-1abd4bfa4539ebae/dep-lib-toml_datetime differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-1abd4bfa4539ebae/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-1abd4bfa4539ebae/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-1abd4bfa4539ebae/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-1abd4bfa4539ebae/lib-toml_datetime b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-1abd4bfa4539ebae/lib-toml_datetime new file mode 100644 index 000000000..201aae636 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-1abd4bfa4539ebae/lib-toml_datetime @@ -0,0 +1 @@ +13cf5ee6bd16d4bc \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-1abd4bfa4539ebae/lib-toml_datetime.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-1abd4bfa4539ebae/lib-toml_datetime.json new file mode 100644 index 000000000..6c67a04b4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-1abd4bfa4539ebae/lib-toml_datetime.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"serde\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"serde\", \"std\"]","target":17332020374355320730,"profile":13732153304298165373,"path":15171844004765348990,"deps":[[11899261697793765154,"serde_core",false,6500342841086748373]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\toml_datetime-1abd4bfa4539ebae\\dep-lib-toml_datetime","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-b7bb64ff8e8f2d10/dep-lib-toml_datetime b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-b7bb64ff8e8f2d10/dep-lib-toml_datetime new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-b7bb64ff8e8f2d10/dep-lib-toml_datetime differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-b7bb64ff8e8f2d10/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-b7bb64ff8e8f2d10/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-b7bb64ff8e8f2d10/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-b7bb64ff8e8f2d10/lib-toml_datetime b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-b7bb64ff8e8f2d10/lib-toml_datetime new file mode 100644 index 000000000..a42c2e6f8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-b7bb64ff8e8f2d10/lib-toml_datetime @@ -0,0 +1 @@ +8465be4838c4c084 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-b7bb64ff8e8f2d10/lib-toml_datetime.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-b7bb64ff8e8f2d10/lib-toml_datetime.json new file mode 100644 index 000000000..61d5113b2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_datetime-b7bb64ff8e8f2d10/lib-toml_datetime.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"serde\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"serde\", \"std\"]","target":17332020374355320730,"profile":13732153304298165373,"path":15171844004765348990,"deps":[[11899261697793765154,"serde_core",false,3505665340476166092]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\toml_datetime-b7bb64ff8e8f2d10\\dep-lib-toml_datetime","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_parser-751258692d8e7df0/dep-lib-toml_parser b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_parser-751258692d8e7df0/dep-lib-toml_parser new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_parser-751258692d8e7df0/dep-lib-toml_parser differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_parser-751258692d8e7df0/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_parser-751258692d8e7df0/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_parser-751258692d8e7df0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_parser-751258692d8e7df0/lib-toml_parser b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_parser-751258692d8e7df0/lib-toml_parser new file mode 100644 index 000000000..633ba1e6d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_parser-751258692d8e7df0/lib-toml_parser @@ -0,0 +1 @@ +ce71097a0c90261a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_parser-751258692d8e7df0/lib-toml_parser.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_parser-751258692d8e7df0/lib-toml_parser.json new file mode 100644 index 000000000..b6269d320 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_parser-751258692d8e7df0/lib-toml_parser.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"debug\", \"default\", \"simd\", \"std\", \"unsafe\"]","target":7844405055962294123,"profile":6657407330989261599,"path":7911000085989079793,"deps":[[1186802552529598449,"winnow",false,7885891096692909646]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\toml_parser-751258692d8e7df0\\dep-lib-toml_parser","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_writer-722b2c9c62964cc5/dep-lib-toml_writer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_writer-722b2c9c62964cc5/dep-lib-toml_writer new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_writer-722b2c9c62964cc5/dep-lib-toml_writer differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_writer-722b2c9c62964cc5/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_writer-722b2c9c62964cc5/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_writer-722b2c9c62964cc5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_writer-722b2c9c62964cc5/lib-toml_writer b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_writer-722b2c9c62964cc5/lib-toml_writer new file mode 100644 index 000000000..093b122a4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_writer-722b2c9c62964cc5/lib-toml_writer @@ -0,0 +1 @@ +e306a1e0a74e8d93 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_writer-722b2c9c62964cc5/lib-toml_writer.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_writer-722b2c9c62964cc5/lib-toml_writer.json new file mode 100644 index 000000000..f840bd93d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/toml_writer-722b2c9c62964cc5/lib-toml_writer.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"alloc\", \"std\"]","declared_features":"[\"alloc\", \"default\", \"std\"]","target":2742732608564090348,"profile":13732153304298165373,"path":11846558290226025501,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\toml_writer-722b2c9c62964cc5\\dep-lib-toml_writer","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-19ed8c1bcdb020d4/dep-lib-tracing b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-19ed8c1bcdb020d4/dep-lib-tracing new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-19ed8c1bcdb020d4/dep-lib-tracing differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-19ed8c1bcdb020d4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-19ed8c1bcdb020d4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-19ed8c1bcdb020d4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-19ed8c1bcdb020d4/lib-tracing b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-19ed8c1bcdb020d4/lib-tracing new file mode 100644 index 000000000..2a5865e38 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-19ed8c1bcdb020d4/lib-tracing @@ -0,0 +1 @@ +dc833402536ebe7e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-19ed8c1bcdb020d4/lib-tracing.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-19ed8c1bcdb020d4/lib-tracing.json new file mode 100644 index 000000000..8652a8a45 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-19ed8c1bcdb020d4/lib-tracing.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"async-await\", \"attributes\", \"default\", \"log\", \"log-always\", \"max_level_debug\", \"max_level_error\", \"max_level_info\", \"max_level_off\", \"max_level_trace\", \"max_level_warn\", \"release_max_level_debug\", \"release_max_level_error\", \"release_max_level_info\", \"release_max_level_off\", \"release_max_level_trace\", \"release_max_level_warn\", \"std\", \"tracing-attributes\", \"valuable\"]","target":5568135053145998517,"profile":8689429984716569724,"path":7836181735883185828,"deps":[[2251399859588827949,"pin_project_lite",false,13955917239458497014],[16023452927926505185,"tracing_core",false,1473219845732078449]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tracing-19ed8c1bcdb020d4\\dep-lib-tracing","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-core-4991a909b0bd115f/dep-lib-tracing_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-core-4991a909b0bd115f/dep-lib-tracing_core new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-core-4991a909b0bd115f/dep-lib-tracing_core differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-core-4991a909b0bd115f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-core-4991a909b0bd115f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-core-4991a909b0bd115f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-core-4991a909b0bd115f/lib-tracing_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-core-4991a909b0bd115f/lib-tracing_core new file mode 100644 index 000000000..57f6659ee --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-core-4991a909b0bd115f/lib-tracing_core @@ -0,0 +1 @@ +7193eaeca4ed7114 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-core-4991a909b0bd115f/lib-tracing_core.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-core-4991a909b0bd115f/lib-tracing_core.json new file mode 100644 index 000000000..e51e74c85 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/tracing-core-4991a909b0bd115f/lib-tracing_core.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"default\", \"once_cell\", \"std\", \"valuable\"]","target":14276081467424924844,"profile":8689429984716569724,"path":10798247967494502310,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\tracing-core-4991a909b0bd115f\\dep-lib-tracing_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-2fdeac6f2602c3bb/dep-lib-typeid b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-2fdeac6f2602c3bb/dep-lib-typeid new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-2fdeac6f2602c3bb/dep-lib-typeid differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-2fdeac6f2602c3bb/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-2fdeac6f2602c3bb/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-2fdeac6f2602c3bb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-2fdeac6f2602c3bb/lib-typeid b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-2fdeac6f2602c3bb/lib-typeid new file mode 100644 index 000000000..df40bb7e8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-2fdeac6f2602c3bb/lib-typeid @@ -0,0 +1 @@ +d8337c585a6a36bf \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-2fdeac6f2602c3bb/lib-typeid.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-2fdeac6f2602c3bb/lib-typeid.json new file mode 100644 index 000000000..4bea9e0d3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-2fdeac6f2602c3bb/lib-typeid.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":11448216687482730721,"profile":15657897354478470176,"path":9293611761868957131,"deps":[[15068722234341947584,"build_script_build",false,12258727082085661837]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\typeid-2fdeac6f2602c3bb\\dep-lib-typeid","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-3bb44e0bd1f6c980/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-3bb44e0bd1f6c980/run-build-script-build-script-build new file mode 100644 index 000000000..cc473d377 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-3bb44e0bd1f6c980/run-build-script-build-script-build @@ -0,0 +1 @@ +8d3c2de654bf1faa \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-3bb44e0bd1f6c980/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-3bb44e0bd1f6c980/run-build-script-build-script-build.json new file mode 100644 index 000000000..01c868924 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-3bb44e0bd1f6c980/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[15068722234341947584,"build_script_build",false,16443567484431943715]],"local":[{"RerunIfChanged":{"output":"debug\\build\\typeid-3bb44e0bd1f6c980\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-9746fb518890b037/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-9746fb518890b037/build-script-build-script-build new file mode 100644 index 000000000..59f5419d6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-9746fb518890b037/build-script-build-script-build @@ -0,0 +1 @@ +23c8ba5d814933e4 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-9746fb518890b037/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-9746fb518890b037/build-script-build-script-build.json new file mode 100644 index 000000000..279b416ca --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-9746fb518890b037/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":17883862002600103897,"profile":2225463790103693989,"path":4609118520904537626,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\typeid-9746fb518890b037\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-9746fb518890b037/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-9746fb518890b037/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-9746fb518890b037/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-9746fb518890b037/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-9746fb518890b037/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typeid-9746fb518890b037/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-5943df3e0a4b0a7d/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-5943df3e0a4b0a7d/build-script-build-script-build new file mode 100644 index 000000000..8d5d71a44 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-5943df3e0a4b0a7d/build-script-build-script-build @@ -0,0 +1 @@ +cfb6af0a9ebce198 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-5943df3e0a4b0a7d/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-5943df3e0a4b0a7d/build-script-build-script-build.json new file mode 100644 index 000000000..0089c93ef --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-5943df3e0a4b0a7d/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"const-generics\", \"force_unix_path_separator\", \"i128\", \"no_std\", \"scale-info\", \"scale_info\", \"strict\"]","target":17883862002600103897,"profile":2225463790103693989,"path":17860130550664036151,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\typenum-5943df3e0a4b0a7d\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-5943df3e0a4b0a7d/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-5943df3e0a4b0a7d/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-5943df3e0a4b0a7d/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-5943df3e0a4b0a7d/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-5943df3e0a4b0a7d/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-5943df3e0a4b0a7d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-a82a409aa49da109/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-a82a409aa49da109/run-build-script-build-script-build new file mode 100644 index 000000000..38e529b0a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-a82a409aa49da109/run-build-script-build-script-build @@ -0,0 +1 @@ +6c4be462067d0444 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-a82a409aa49da109/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-a82a409aa49da109/run-build-script-build-script-build.json new file mode 100644 index 000000000..ab829fd2d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-a82a409aa49da109/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[857979250431893282,"build_script_build",false,11016293550495086287]],"local":[{"RerunIfChanged":{"output":"debug\\build\\typenum-a82a409aa49da109\\output","paths":["tests"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-ccb125c0fe0b2a3c/dep-lib-typenum b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-ccb125c0fe0b2a3c/dep-lib-typenum new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-ccb125c0fe0b2a3c/dep-lib-typenum differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-ccb125c0fe0b2a3c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-ccb125c0fe0b2a3c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-ccb125c0fe0b2a3c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-ccb125c0fe0b2a3c/lib-typenum b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-ccb125c0fe0b2a3c/lib-typenum new file mode 100644 index 000000000..cc551b5c1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-ccb125c0fe0b2a3c/lib-typenum @@ -0,0 +1 @@ +51efbc56665c869c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-ccb125c0fe0b2a3c/lib-typenum.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-ccb125c0fe0b2a3c/lib-typenum.json new file mode 100644 index 000000000..9d0877206 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/typenum-ccb125c0fe0b2a3c/lib-typenum.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"const-generics\", \"force_unix_path_separator\", \"i128\", \"no_std\", \"scale-info\", \"scale_info\", \"strict\"]","target":2349969882102649915,"profile":2225463790103693989,"path":10233781301799257823,"deps":[[857979250431893282,"build_script_build",false,4901179760868346732]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\typenum-ccb125c0fe0b2a3c\\dep-lib-typenum","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-property-3ae3dd5637e9900b/dep-lib-unic_char_property b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-property-3ae3dd5637e9900b/dep-lib-unic_char_property new file mode 100644 index 000000000..9af68ee72 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-property-3ae3dd5637e9900b/dep-lib-unic_char_property differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-property-3ae3dd5637e9900b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-property-3ae3dd5637e9900b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-property-3ae3dd5637e9900b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-property-3ae3dd5637e9900b/lib-unic_char_property b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-property-3ae3dd5637e9900b/lib-unic_char_property new file mode 100644 index 000000000..c0cf52d0c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-property-3ae3dd5637e9900b/lib-unic_char_property @@ -0,0 +1 @@ +b4db9d74dab20e10 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-property-3ae3dd5637e9900b/lib-unic_char_property.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-property-3ae3dd5637e9900b/lib-unic_char_property.json new file mode 100644 index 000000000..a8b6cb09a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-property-3ae3dd5637e9900b/lib-unic_char_property.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":9194628278279270262,"profile":15657897354478470176,"path":4614688414076685801,"deps":[[5217521680978980864,"unic_char_range",false,15933420979445297090]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\unic-char-property-3ae3dd5637e9900b\\dep-lib-unic_char_property","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-range-943c85689656111f/dep-lib-unic_char_range b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-range-943c85689656111f/dep-lib-unic_char_range new file mode 100644 index 000000000..9b2f6a7de Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-range-943c85689656111f/dep-lib-unic_char_range differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-range-943c85689656111f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-range-943c85689656111f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-range-943c85689656111f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-range-943c85689656111f/lib-unic_char_range b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-range-943c85689656111f/lib-unic_char_range new file mode 100644 index 000000000..e3d2ce0f3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-range-943c85689656111f/lib-unic_char_range @@ -0,0 +1 @@ +c2ef9740f6e11edd \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-range-943c85689656111f/lib-unic_char_range.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-range-943c85689656111f/lib-unic_char_range.json new file mode 100644 index 000000000..5d4949e89 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-char-range-943c85689656111f/lib-unic_char_range.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\"]","declared_features":"[\"default\", \"exact-size-is-empty\", \"fused\", \"rayon\", \"std\", \"trusted-len\", \"unstable\"]","target":16030636495492434410,"profile":15657897354478470176,"path":7431361584588087657,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\unic-char-range-943c85689656111f\\dep-lib-unic_char_range","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-common-7deac79315973084/dep-lib-unic_common b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-common-7deac79315973084/dep-lib-unic_common new file mode 100644 index 000000000..04ca832ba Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-common-7deac79315973084/dep-lib-unic_common differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-common-7deac79315973084/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-common-7deac79315973084/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-common-7deac79315973084/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-common-7deac79315973084/lib-unic_common b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-common-7deac79315973084/lib-unic_common new file mode 100644 index 000000000..d26c66843 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-common-7deac79315973084/lib-unic_common @@ -0,0 +1 @@ +75f60004a16445d6 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-common-7deac79315973084/lib-unic_common.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-common-7deac79315973084/lib-unic_common.json new file mode 100644 index 000000000..f119d4e2d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-common-7deac79315973084/lib-unic_common.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\"]","declared_features":"[\"default\", \"unstable\"]","target":12566424773496969179,"profile":15657897354478470176,"path":541913439303106981,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\unic-common-7deac79315973084\\dep-lib-unic_common","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-ident-b2c122ee9ddce446/dep-lib-unic_ucd_ident b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-ident-b2c122ee9ddce446/dep-lib-unic_ucd_ident new file mode 100644 index 000000000..f88b3075e Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-ident-b2c122ee9ddce446/dep-lib-unic_ucd_ident differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-ident-b2c122ee9ddce446/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-ident-b2c122ee9ddce446/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-ident-b2c122ee9ddce446/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-ident-b2c122ee9ddce446/lib-unic_ucd_ident b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-ident-b2c122ee9ddce446/lib-unic_ucd_ident new file mode 100644 index 000000000..de0edf4f9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-ident-b2c122ee9ddce446/lib-unic_ucd_ident @@ -0,0 +1 @@ +30a835c73114c008 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-ident-b2c122ee9ddce446/lib-unic_ucd_ident.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-ident-b2c122ee9ddce446/lib-unic_ucd_ident.json new file mode 100644 index 000000000..5c6fb7bde --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-ident-b2c122ee9ddce446/lib-unic_ucd_ident.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"id\", \"xid\"]","declared_features":"[\"default\", \"id\", \"pattern\", \"xid\"]","target":12238006043134261981,"profile":15657897354478470176,"path":2474769705768135376,"deps":[[5217521680978980864,"unic_char_range",false,15933420979445297090],[5933105508647463964,"unic_ucd_version",false,9460886371198410222],[5964552644319213361,"unic_char_property",false,1157058805609913268]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\unic-ucd-ident-b2c122ee9ddce446\\dep-lib-unic_ucd_ident","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-version-0bdf0199094d49c4/dep-lib-unic_ucd_version b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-version-0bdf0199094d49c4/dep-lib-unic_ucd_version new file mode 100644 index 000000000..ce26bbb91 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-version-0bdf0199094d49c4/dep-lib-unic_ucd_version differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-version-0bdf0199094d49c4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-version-0bdf0199094d49c4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-version-0bdf0199094d49c4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-version-0bdf0199094d49c4/lib-unic_ucd_version b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-version-0bdf0199094d49c4/lib-unic_ucd_version new file mode 100644 index 000000000..1e47db8ac --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-version-0bdf0199094d49c4/lib-unic_ucd_version @@ -0,0 +1 @@ +ee9d9d5707d24b83 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-version-0bdf0199094d49c4/lib-unic_ucd_version.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-version-0bdf0199094d49c4/lib-unic_ucd_version.json new file mode 100644 index 000000000..a663e4710 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unic-ucd-version-0bdf0199094d49c4/lib-unic_ucd_version.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":8760155134400730115,"profile":15657897354478470176,"path":12346672414796810663,"deps":[[17189096646369539794,"unic_common",false,15439857540229297781]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\unic-ucd-version-0bdf0199094d49c4\\dep-lib-unic_ucd_version","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-ident-36e3cd8601dbfd38/dep-lib-unicode_ident b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-ident-36e3cd8601dbfd38/dep-lib-unicode_ident new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-ident-36e3cd8601dbfd38/dep-lib-unicode_ident differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-ident-36e3cd8601dbfd38/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-ident-36e3cd8601dbfd38/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-ident-36e3cd8601dbfd38/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-ident-36e3cd8601dbfd38/lib-unicode_ident b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-ident-36e3cd8601dbfd38/lib-unicode_ident new file mode 100644 index 000000000..53e0938da --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-ident-36e3cd8601dbfd38/lib-unicode_ident @@ -0,0 +1 @@ +2452499994fe9b65 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-ident-36e3cd8601dbfd38/lib-unicode_ident.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-ident-36e3cd8601dbfd38/lib-unicode_ident.json new file mode 100644 index 000000000..9b11bb494 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-ident-36e3cd8601dbfd38/lib-unicode_ident.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":14045917370260632744,"profile":2225463790103693989,"path":8177436864487865200,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\unicode-ident-36e3cd8601dbfd38\\dep-lib-unicode_ident","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-segmentation-734ae13e73d61b34/dep-lib-unicode_segmentation b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-segmentation-734ae13e73d61b34/dep-lib-unicode_segmentation new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-segmentation-734ae13e73d61b34/dep-lib-unicode_segmentation differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-segmentation-734ae13e73d61b34/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-segmentation-734ae13e73d61b34/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-segmentation-734ae13e73d61b34/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-segmentation-734ae13e73d61b34/lib-unicode_segmentation b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-segmentation-734ae13e73d61b34/lib-unicode_segmentation new file mode 100644 index 000000000..7fd867cfe --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-segmentation-734ae13e73d61b34/lib-unicode_segmentation @@ -0,0 +1 @@ +23aa0ed0e6145f06 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-segmentation-734ae13e73d61b34/lib-unicode_segmentation.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-segmentation-734ae13e73d61b34/lib-unicode_segmentation.json new file mode 100644 index 000000000..474146aae --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/unicode-segmentation-734ae13e73d61b34/lib-unicode_segmentation.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"no_std\"]","target":14369684853076716314,"profile":15657897354478470176,"path":13009903173011805919,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\unicode-segmentation-734ae13e73d61b34\\dep-lib-unicode_segmentation","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-465d344e32217e74/dep-lib-url b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-465d344e32217e74/dep-lib-url new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-465d344e32217e74/dep-lib-url differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-465d344e32217e74/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-465d344e32217e74/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-465d344e32217e74/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-465d344e32217e74/lib-url b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-465d344e32217e74/lib-url new file mode 100644 index 000000000..a0a45be46 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-465d344e32217e74/lib-url @@ -0,0 +1 @@ +44d44d4403825dcf \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-465d344e32217e74/lib-url.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-465d344e32217e74/lib-url.json new file mode 100644 index 000000000..23739457e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-465d344e32217e74/lib-url.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"serde\", \"std\"]","declared_features":"[\"debugger_visualizer\", \"default\", \"expose_internals\", \"serde\", \"std\"]","target":7686100221094031937,"profile":15657897354478470176,"path":4673599838206086537,"deps":[[1074175012458081222,"form_urlencoded",false,17651095529533570411],[3051629642231505422,"serde_derive",false,13301726810596061484],[6159443412421938570,"idna",false,16403384751285427903],[6803352382179706244,"percent_encoding",false,18098348866792261601],[13548984313718623784,"serde",false,9531788703992814231]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\url-465d344e32217e74\\dep-lib-url","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-9175b9cd751f688b/dep-lib-url b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-9175b9cd751f688b/dep-lib-url new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-9175b9cd751f688b/dep-lib-url differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-9175b9cd751f688b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-9175b9cd751f688b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-9175b9cd751f688b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-9175b9cd751f688b/lib-url b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-9175b9cd751f688b/lib-url new file mode 100644 index 000000000..47f661f50 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-9175b9cd751f688b/lib-url @@ -0,0 +1 @@ +853a8222b1c84a6c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-9175b9cd751f688b/lib-url.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-9175b9cd751f688b/lib-url.json new file mode 100644 index 000000000..af613c5d6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/url-9175b9cd751f688b/lib-url.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"serde\", \"std\"]","declared_features":"[\"debugger_visualizer\", \"default\", \"expose_internals\", \"serde\", \"std\"]","target":7686100221094031937,"profile":15657897354478470176,"path":4673599838206086537,"deps":[[1074175012458081222,"form_urlencoded",false,16954458017198946055],[3051629642231505422,"serde_derive",false,13301726810596061484],[6159443412421938570,"idna",false,12045261897045298905],[6803352382179706244,"percent_encoding",false,15065768539436337797],[13548984313718623784,"serde",false,10784126109130480978]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\url-9175b9cd751f688b\\dep-lib-url","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7a378b4e1bdd7ce6/dep-lib-urlpattern b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7a378b4e1bdd7ce6/dep-lib-urlpattern new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7a378b4e1bdd7ce6/dep-lib-urlpattern differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7a378b4e1bdd7ce6/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7a378b4e1bdd7ce6/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7a378b4e1bdd7ce6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7a378b4e1bdd7ce6/lib-urlpattern b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7a378b4e1bdd7ce6/lib-urlpattern new file mode 100644 index 000000000..74b0c42a0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7a378b4e1bdd7ce6/lib-urlpattern @@ -0,0 +1 @@ +953a8d7d1cfeb10c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7a378b4e1bdd7ce6/lib-urlpattern.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7a378b4e1bdd7ce6/lib-urlpattern.json new file mode 100644 index 000000000..ff0b77896 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7a378b4e1bdd7ce6/lib-urlpattern.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":176556056715179341,"profile":15657897354478470176,"path":8936165837408959244,"deps":[[1528297757488249563,"url",false,14942242089227637828],[13548984313718623784,"serde",false,9531788703992814231],[17109794424245468765,"regex",false,1597020154722254568],[18042999100915739104,"unic_ucd_ident",false,630526151860004912]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\urlpattern-7a378b4e1bdd7ce6\\dep-lib-urlpattern","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7cdb723c5281ef3d/dep-lib-urlpattern b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7cdb723c5281ef3d/dep-lib-urlpattern new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7cdb723c5281ef3d/dep-lib-urlpattern differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7cdb723c5281ef3d/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7cdb723c5281ef3d/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7cdb723c5281ef3d/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7cdb723c5281ef3d/lib-urlpattern b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7cdb723c5281ef3d/lib-urlpattern new file mode 100644 index 000000000..146ca2a04 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7cdb723c5281ef3d/lib-urlpattern @@ -0,0 +1 @@ +dd869df374fff175 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7cdb723c5281ef3d/lib-urlpattern.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7cdb723c5281ef3d/lib-urlpattern.json new file mode 100644 index 000000000..0076fe820 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/urlpattern-7cdb723c5281ef3d/lib-urlpattern.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":176556056715179341,"profile":15657897354478470176,"path":8936165837408959244,"deps":[[1528297757488249563,"url",false,7803269967486532229],[13548984313718623784,"serde",false,10784126109130480978],[17109794424245468765,"regex",false,1597020154722254568],[18042999100915739104,"unic_ucd_ident",false,630526151860004912]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\urlpattern-7cdb723c5281ef3d\\dep-lib-urlpattern","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf-8-a3f4ade5a91b179c/dep-lib-utf8 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf-8-a3f4ade5a91b179c/dep-lib-utf8 new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf-8-a3f4ade5a91b179c/dep-lib-utf8 differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf-8-a3f4ade5a91b179c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf-8-a3f4ade5a91b179c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf-8-a3f4ade5a91b179c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf-8-a3f4ade5a91b179c/lib-utf8 b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf-8-a3f4ade5a91b179c/lib-utf8 new file mode 100644 index 000000000..a32af871d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf-8-a3f4ade5a91b179c/lib-utf8 @@ -0,0 +1 @@ +64efb3fa2394cf35 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf-8-a3f4ade5a91b179c/lib-utf8.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf-8-a3f4ade5a91b179c/lib-utf8.json new file mode 100644 index 000000000..4444a9a8e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf-8-a3f4ade5a91b179c/lib-utf8.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":10206970129552530490,"profile":2225463790103693989,"path":12454239025765426419,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\utf-8-a3f4ade5a91b179c\\dep-lib-utf8","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf8_iter-1afe0bd4df6893d8/dep-lib-utf8_iter b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf8_iter-1afe0bd4df6893d8/dep-lib-utf8_iter new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf8_iter-1afe0bd4df6893d8/dep-lib-utf8_iter differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf8_iter-1afe0bd4df6893d8/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf8_iter-1afe0bd4df6893d8/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf8_iter-1afe0bd4df6893d8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf8_iter-1afe0bd4df6893d8/lib-utf8_iter b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf8_iter-1afe0bd4df6893d8/lib-utf8_iter new file mode 100644 index 000000000..9ef7f880a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf8_iter-1afe0bd4df6893d8/lib-utf8_iter @@ -0,0 +1 @@ +187793d36d866144 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf8_iter-1afe0bd4df6893d8/lib-utf8_iter.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf8_iter-1afe0bd4df6893d8/lib-utf8_iter.json new file mode 100644 index 000000000..315f9f71c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/utf8_iter-1afe0bd4df6893d8/lib-utf8_iter.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":6216520282702351879,"profile":15657897354478470176,"path":798494333372390114,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\utf8_iter-1afe0bd4df6893d8\\dep-lib-utf8_iter","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-b9cccff7258b7c47/dep-lib-uuid b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-b9cccff7258b7c47/dep-lib-uuid new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-b9cccff7258b7c47/dep-lib-uuid differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-b9cccff7258b7c47/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-b9cccff7258b7c47/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-b9cccff7258b7c47/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-b9cccff7258b7c47/lib-uuid b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-b9cccff7258b7c47/lib-uuid new file mode 100644 index 000000000..9645b86d1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-b9cccff7258b7c47/lib-uuid @@ -0,0 +1 @@ +8839933712d00498 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-b9cccff7258b7c47/lib-uuid.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-b9cccff7258b7c47/lib-uuid.json new file mode 100644 index 000000000..5dfb421b2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-b9cccff7258b7c47/lib-uuid.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"rng\", \"serde\", \"std\", \"v4\"]","declared_features":"[\"arbitrary\", \"atomic\", \"borsh\", \"bytemuck\", \"default\", \"fast-rng\", \"js\", \"macro-diagnostics\", \"md5\", \"rng\", \"rng-getrandom\", \"rng-rand\", \"serde\", \"sha1\", \"slog\", \"std\", \"uuid-rng-internal-lib\", \"v1\", \"v3\", \"v4\", \"v5\", \"v6\", \"v7\", \"v8\", \"zerocopy\"]","target":2422778461497348360,"profile":13109237214727842307,"path":3552424397133036542,"deps":[[6509165896255665847,"getrandom",false,15217055903273454886],[11899261697793765154,"serde_core",false,3505665340476166092]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\uuid-b9cccff7258b7c47\\dep-lib-uuid","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-e63c3165967233d1/dep-lib-uuid b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-e63c3165967233d1/dep-lib-uuid new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-e63c3165967233d1/dep-lib-uuid differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-e63c3165967233d1/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-e63c3165967233d1/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-e63c3165967233d1/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-e63c3165967233d1/lib-uuid b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-e63c3165967233d1/lib-uuid new file mode 100644 index 000000000..a44308788 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-e63c3165967233d1/lib-uuid @@ -0,0 +1 @@ +d7857d24ebd23702 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-e63c3165967233d1/lib-uuid.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-e63c3165967233d1/lib-uuid.json new file mode 100644 index 000000000..019240409 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/uuid-e63c3165967233d1/lib-uuid.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"serde\", \"std\"]","declared_features":"[\"arbitrary\", \"atomic\", \"borsh\", \"bytemuck\", \"default\", \"fast-rng\", \"js\", \"macro-diagnostics\", \"md5\", \"rng\", \"rng-getrandom\", \"rng-rand\", \"serde\", \"sha1\", \"slog\", \"std\", \"uuid-rng-internal-lib\", \"v1\", \"v3\", \"v4\", \"v5\", \"v6\", \"v7\", \"v8\", \"zerocopy\"]","target":2422778461497348360,"profile":16537970248810030391,"path":3552424397133036542,"deps":[[11899261697793765154,"serde_core",false,6500342841086748373]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\uuid-e63c3165967233d1\\dep-lib-uuid","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/version_check-5641bfb78c234d59/dep-lib-version_check b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/version_check-5641bfb78c234d59/dep-lib-version_check new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/version_check-5641bfb78c234d59/dep-lib-version_check differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/version_check-5641bfb78c234d59/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/version_check-5641bfb78c234d59/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/version_check-5641bfb78c234d59/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/version_check-5641bfb78c234d59/lib-version_check b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/version_check-5641bfb78c234d59/lib-version_check new file mode 100644 index 000000000..602109183 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/version_check-5641bfb78c234d59/lib-version_check @@ -0,0 +1 @@ +a4a42eed78fc918f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/version_check-5641bfb78c234d59/lib-version_check.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/version_check-5641bfb78c234d59/lib-version_check.json new file mode 100644 index 000000000..20aaf5f72 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/version_check-5641bfb78c234d59/lib-version_check.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":18099224280402537651,"profile":2225463790103693989,"path":7155371684705771964,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\version_check-5641bfb78c234d59\\dep-lib-version_check","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-7f323d8245ab5986/dep-lib-vswhom b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-7f323d8245ab5986/dep-lib-vswhom new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-7f323d8245ab5986/dep-lib-vswhom differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-7f323d8245ab5986/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-7f323d8245ab5986/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-7f323d8245ab5986/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-7f323d8245ab5986/lib-vswhom b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-7f323d8245ab5986/lib-vswhom new file mode 100644 index 000000000..8b353bde7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-7f323d8245ab5986/lib-vswhom @@ -0,0 +1 @@ +c86a79385254ae76 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-7f323d8245ab5986/lib-vswhom.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-7f323d8245ab5986/lib-vswhom.json new file mode 100644 index 000000000..3c69672ef --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-7f323d8245ab5986/lib-vswhom.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":2497132685121141828,"profile":2225463790103693989,"path":13982343932202385919,"deps":[[6186838405672744481,"vswhom_sys",false,14307523496495390718],[18365559012052052344,"libc",false,3736033081002872053]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\vswhom-7f323d8245ab5986\\dep-lib-vswhom","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-10a5227d0dc57824/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-10a5227d0dc57824/run-build-script-build-script-build new file mode 100644 index 000000000..234150d2b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-10a5227d0dc57824/run-build-script-build-script-build @@ -0,0 +1 @@ +bc413359dc3d7533 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-10a5227d0dc57824/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-10a5227d0dc57824/run-build-script-build-script-build.json new file mode 100644 index 000000000..ee9b13cc5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-10a5227d0dc57824/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6186838405672744481,"build_script_build",false,9077552888191656503]],"local":[{"RerunIfChanged":{"output":"debug\\build\\vswhom-sys-10a5227d0dc57824\\output","paths":["build.rs","ext/vswhom.cpp"]}},{"RerunIfEnvChanged":{"var":"VCINSTALLDIR","val":null}},{"RerunIfEnvChanged":{"var":"VSTEL_MSBuildProjectFullPath","val":null}},{"RerunIfEnvChanged":{"var":"VCToolsVersion","val":null}},{"RerunIfEnvChanged":{"var":"VSCMD_ARG_VCVARS_SPECTRE","val":null}},{"RerunIfEnvChanged":{"var":"WindowsSdkDir","val":null}},{"RerunIfEnvChanged":{"var":"WindowsSDKVersion","val":null}},{"RerunIfEnvChanged":{"var":"LIB","val":null}},{"RerunIfEnvChanged":{"var":"INCLUDE","val":null}},{"RerunIfEnvChanged":{"var":"CXX_x86_64-pc-windows-msvc","val":null}},{"RerunIfEnvChanged":{"var":"CXX_x86_64_pc_windows_msvc","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CXX","val":null}},{"RerunIfEnvChanged":{"var":"CXX","val":null}},{"RerunIfEnvChanged":{"var":"CRATE_CC_NO_DEFAULTS","val":null}},{"RerunIfEnvChanged":{"var":"CXXFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CXXFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"CXXFLAGS_x86_64_pc_windows_msvc","val":null}},{"RerunIfEnvChanged":{"var":"CXXFLAGS_x86_64-pc-windows-msvc","val":null}},{"RerunIfEnvChanged":{"var":"CC_ENABLE_DEBUG_OUTPUT","val":null}},{"RerunIfEnvChanged":{"var":"AR_x86_64-pc-windows-msvc","val":null}},{"RerunIfEnvChanged":{"var":"AR_x86_64_pc_windows_msvc","val":null}},{"RerunIfEnvChanged":{"var":"HOST_AR","val":null}},{"RerunIfEnvChanged":{"var":"AR","val":null}},{"RerunIfEnvChanged":{"var":"ARFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"HOST_ARFLAGS","val":null}},{"RerunIfEnvChanged":{"var":"ARFLAGS_x86_64_pc_windows_msvc","val":null}},{"RerunIfEnvChanged":{"var":"ARFLAGS_x86_64-pc-windows-msvc","val":null}},{"RerunIfEnvChanged":{"var":"CXXSTDLIB_x86_64-pc-windows-msvc","val":null}},{"RerunIfEnvChanged":{"var":"CXXSTDLIB_x86_64_pc_windows_msvc","val":null}},{"RerunIfEnvChanged":{"var":"HOST_CXXSTDLIB","val":null}},{"RerunIfEnvChanged":{"var":"CXXSTDLIB","val":null}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-6e30101f785efb0c/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-6e30101f785efb0c/build-script-build-script-build new file mode 100644 index 000000000..bdf34bf78 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-6e30101f785efb0c/build-script-build-script-build @@ -0,0 +1 @@ +37227cc241f2f97d \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-6e30101f785efb0c/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-6e30101f785efb0c/build-script-build-script-build.json new file mode 100644 index 000000000..a3f001cb2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-6e30101f785efb0c/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":12318548087768197662,"profile":2225463790103693989,"path":15487800443733509321,"deps":[[14836725263356672040,"cc",false,1849881604817589468]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\vswhom-sys-6e30101f785efb0c\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-6e30101f785efb0c/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-6e30101f785efb0c/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-6e30101f785efb0c/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-6e30101f785efb0c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-6e30101f785efb0c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-6e30101f785efb0c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-d302d0663dc106d5/dep-lib-vswhom_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-d302d0663dc106d5/dep-lib-vswhom_sys new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-d302d0663dc106d5/dep-lib-vswhom_sys differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-d302d0663dc106d5/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-d302d0663dc106d5/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-d302d0663dc106d5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-d302d0663dc106d5/lib-vswhom_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-d302d0663dc106d5/lib-vswhom_sys new file mode 100644 index 000000000..73e9a1b6b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-d302d0663dc106d5/lib-vswhom_sys @@ -0,0 +1 @@ +fe9f29c8d0888ec6 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-d302d0663dc106d5/lib-vswhom_sys.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-d302d0663dc106d5/lib-vswhom_sys.json new file mode 100644 index 000000000..1d8fca229 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/vswhom-sys-d302d0663dc106d5/lib-vswhom_sys.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5407463716442520071,"profile":2225463790103693989,"path":18410218667491836505,"deps":[[6186838405672744481,"build_script_build",false,3707937884808102332],[18365559012052052344,"libc",false,3736033081002872053]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\vswhom-sys-d302d0663dc106d5\\dep-lib-vswhom_sys","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-50d941771decba8f/dep-lib-walkdir b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-50d941771decba8f/dep-lib-walkdir new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-50d941771decba8f/dep-lib-walkdir differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-50d941771decba8f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-50d941771decba8f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-50d941771decba8f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-50d941771decba8f/lib-walkdir b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-50d941771decba8f/lib-walkdir new file mode 100644 index 000000000..a022e7804 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-50d941771decba8f/lib-walkdir @@ -0,0 +1 @@ +a5fda3f4685dab24 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-50d941771decba8f/lib-walkdir.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-50d941771decba8f/lib-walkdir.json new file mode 100644 index 000000000..56a4922dc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-50d941771decba8f/lib-walkdir.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":3552558796056091662,"profile":15657897354478470176,"path":4289868602890818884,"deps":[[5785418864289862565,"winapi_util",false,3521003771871303467],[11781824977070132858,"same_file",false,2266654992832368728]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\walkdir-50d941771decba8f\\dep-lib-walkdir","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-9e8535d10cb0c1f4/dep-lib-walkdir b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-9e8535d10cb0c1f4/dep-lib-walkdir new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-9e8535d10cb0c1f4/dep-lib-walkdir differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-9e8535d10cb0c1f4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-9e8535d10cb0c1f4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-9e8535d10cb0c1f4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-9e8535d10cb0c1f4/lib-walkdir b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-9e8535d10cb0c1f4/lib-walkdir new file mode 100644 index 000000000..67795e6c5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-9e8535d10cb0c1f4/lib-walkdir @@ -0,0 +1 @@ +3515781b80c0bcfd \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-9e8535d10cb0c1f4/lib-walkdir.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-9e8535d10cb0c1f4/lib-walkdir.json new file mode 100644 index 000000000..8c1714116 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/walkdir-9e8535d10cb0c1f4/lib-walkdir.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":3552558796056091662,"profile":15657897354478470176,"path":4289868602890818884,"deps":[[5785418864289862565,"winapi_util",false,14330402745913706728],[11781824977070132858,"same_file",false,700679276581716062]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\walkdir-9e8535d10cb0c1f4\\dep-lib-walkdir","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-2e90d66e64b31842/dep-lib-webview2_com b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-2e90d66e64b31842/dep-lib-webview2_com new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-2e90d66e64b31842/dep-lib-webview2_com differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-2e90d66e64b31842/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-2e90d66e64b31842/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-2e90d66e64b31842/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-2e90d66e64b31842/lib-webview2_com b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-2e90d66e64b31842/lib-webview2_com new file mode 100644 index 000000000..f5f743dd9 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-2e90d66e64b31842/lib-webview2_com @@ -0,0 +1 @@ +394bd367ab91a846 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-2e90d66e64b31842/lib-webview2_com.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-2e90d66e64b31842/lib-webview2_com.json new file mode 100644 index 000000000..f1417d76d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-2e90d66e64b31842/lib-webview2_com.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":8951617321220210272,"profile":15657897354478470176,"path":1287540186366321700,"deps":[[632475476718824203,"windows_implement",false,10252113153028580527],[5628259161083531273,"windows_core",false,1564442099389724938],[9607212097014017224,"windows_interface",false,2080662935847172432],[13836534099721799702,"webview2_com_sys",false,15338615528346592530],[14585479307175734061,"windows",false,3415978176206528813],[18259907001757170226,"webview2_com_macros",false,392894338147558346]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\webview2-com-2e90d66e64b31842\\dep-lib-webview2_com","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-macros-4acd1ce6b95b04e4/dep-lib-webview2_com_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-macros-4acd1ce6b95b04e4/dep-lib-webview2_com_macros new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-macros-4acd1ce6b95b04e4/dep-lib-webview2_com_macros differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-macros-4acd1ce6b95b04e4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-macros-4acd1ce6b95b04e4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-macros-4acd1ce6b95b04e4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-macros-4acd1ce6b95b04e4/lib-webview2_com_macros b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-macros-4acd1ce6b95b04e4/lib-webview2_com_macros new file mode 100644 index 000000000..46269f0bb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-macros-4acd1ce6b95b04e4/lib-webview2_com_macros @@ -0,0 +1 @@ +ca238ca351d77305 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-macros-4acd1ce6b95b04e4/lib-webview2_com_macros.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-macros-4acd1ce6b95b04e4/lib-webview2_com_macros.json new file mode 100644 index 000000000..edac2961e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-macros-4acd1ce6b95b04e4/lib-webview2_com_macros.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":3849063819634062546,"profile":2225463790103693989,"path":10567777058005510034,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\webview2-com-macros-4acd1ce6b95b04e4\\dep-lib-webview2_com_macros","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-22a242bcec724284/dep-lib-webview2_com_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-22a242bcec724284/dep-lib-webview2_com_sys new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-22a242bcec724284/dep-lib-webview2_com_sys differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-22a242bcec724284/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-22a242bcec724284/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-22a242bcec724284/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-22a242bcec724284/lib-webview2_com_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-22a242bcec724284/lib-webview2_com_sys new file mode 100644 index 000000000..bd753f278 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-22a242bcec724284/lib-webview2_com_sys @@ -0,0 +1 @@ +12a563398eb5ddd4 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-22a242bcec724284/lib-webview2_com_sys.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-22a242bcec724284/lib-webview2_com_sys.json new file mode 100644 index 000000000..28f22ad0a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-22a242bcec724284/lib-webview2_com_sys.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":524828094770578528,"profile":15657897354478470176,"path":13292684428520452762,"deps":[[5628259161083531273,"windows_core",false,1564442099389724938],[13836534099721799702,"build_script_build",false,16117625023551932786],[14585479307175734061,"windows",false,3415978176206528813]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\webview2-com-sys-22a242bcec724284\\dep-lib-webview2_com_sys","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-3c735b7eb27ff44c/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-3c735b7eb27ff44c/build-script-build-script-build new file mode 100644 index 000000000..497c9d5db --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-3c735b7eb27ff44c/build-script-build-script-build @@ -0,0 +1 @@ +8323e0ca180f6e13 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-3c735b7eb27ff44c/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-3c735b7eb27ff44c/build-script-build-script-build.json new file mode 100644 index 000000000..7a9601bb4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-3c735b7eb27ff44c/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":2225463790103693989,"path":1646599203971975566,"deps":[[2448563160050429386,"thiserror",false,11087210622057152061]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\webview2-com-sys-3c735b7eb27ff44c\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-3c735b7eb27ff44c/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-3c735b7eb27ff44c/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-3c735b7eb27ff44c/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-3c735b7eb27ff44c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-3c735b7eb27ff44c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-3c735b7eb27ff44c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-9572d99045a96f14/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-9572d99045a96f14/run-build-script-build-script-build new file mode 100644 index 000000000..6a3edc99f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-9572d99045a96f14/run-build-script-build-script-build @@ -0,0 +1 @@ +7289c267904eaddf \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-9572d99045a96f14/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-9572d99045a96f14/run-build-script-build-script-build.json new file mode 100644 index 000000000..bf9c98f81 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/webview2-com-sys-9572d99045a96f14/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[13836534099721799702,"build_script_build",false,1400073133316121475]],"local":[{"Precalculated":"0.38.2"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-05f1aff09d913e86/dep-lib-winapi_util b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-05f1aff09d913e86/dep-lib-winapi_util new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-05f1aff09d913e86/dep-lib-winapi_util differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-05f1aff09d913e86/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-05f1aff09d913e86/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-05f1aff09d913e86/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-05f1aff09d913e86/lib-winapi_util b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-05f1aff09d913e86/lib-winapi_util new file mode 100644 index 000000000..17fcf2c9c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-05f1aff09d913e86/lib-winapi_util @@ -0,0 +1 @@ +2b173383461edd30 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-05f1aff09d913e86/lib-winapi_util.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-05f1aff09d913e86/lib-winapi_util.json new file mode 100644 index 000000000..9f3ba4fad --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-05f1aff09d913e86/lib-winapi_util.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":13060904917998432814,"profile":15657897354478470176,"path":3099208455390653687,"deps":[[6568467691589961976,"windows_sys",false,5124779585545402889]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\winapi-util-05f1aff09d913e86\\dep-lib-winapi_util","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-67817a170595924c/dep-lib-winapi_util b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-67817a170595924c/dep-lib-winapi_util new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-67817a170595924c/dep-lib-winapi_util differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-67817a170595924c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-67817a170595924c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-67817a170595924c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-67817a170595924c/lib-winapi_util b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-67817a170595924c/lib-winapi_util new file mode 100644 index 000000000..f814211eb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-67817a170595924c/lib-winapi_util @@ -0,0 +1 @@ +e80878265fd1dfc6 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-67817a170595924c/lib-winapi_util.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-67817a170595924c/lib-winapi_util.json new file mode 100644 index 000000000..56e3e1f88 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winapi-util-67817a170595924c/lib-winapi_util.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":13060904917998432814,"profile":15657897354478470176,"path":3099208455390653687,"deps":[[6568467691589961976,"windows_sys",false,6428487285297176863]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\winapi-util-67817a170595924c\\dep-lib-winapi_util","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/window-vibrancy-ceb0f32d4f08512b/dep-lib-window_vibrancy b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/window-vibrancy-ceb0f32d4f08512b/dep-lib-window_vibrancy new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/window-vibrancy-ceb0f32d4f08512b/dep-lib-window_vibrancy differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/window-vibrancy-ceb0f32d4f08512b/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/window-vibrancy-ceb0f32d4f08512b/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/window-vibrancy-ceb0f32d4f08512b/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/window-vibrancy-ceb0f32d4f08512b/lib-window_vibrancy b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/window-vibrancy-ceb0f32d4f08512b/lib-window_vibrancy new file mode 100644 index 000000000..d54047aa0 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/window-vibrancy-ceb0f32d4f08512b/lib-window_vibrancy @@ -0,0 +1 @@ +9a43465eda04bf65 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/window-vibrancy-ceb0f32d4f08512b/lib-window_vibrancy.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/window-vibrancy-ceb0f32d4f08512b/lib-window_vibrancy.json new file mode 100644 index 000000000..0cae3101c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/window-vibrancy-ceb0f32d4f08512b/lib-window_vibrancy.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":13028659016136499722,"profile":15657897354478470176,"path":4083652027865110579,"deps":[[4143744114649553716,"raw_window_handle",false,15731530099593162238],[10281541584571964250,"windows_sys",false,18196424393376243940],[13129119782722264640,"windows_version",false,10731455328532410827]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\window-vibrancy-ceb0f32d4f08512b\\dep-lib-window_vibrancy","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-c38fdc5154bcf410/dep-lib-windows b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-c38fdc5154bcf410/dep-lib-windows new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-c38fdc5154bcf410/dep-lib-windows differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-c38fdc5154bcf410/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-c38fdc5154bcf410/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-c38fdc5154bcf410/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-c38fdc5154bcf410/lib-windows b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-c38fdc5154bcf410/lib-windows new file mode 100644 index 000000000..1db3c9a72 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-c38fdc5154bcf410/lib-windows @@ -0,0 +1 @@ +2de146790dfe672f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-c38fdc5154bcf410/lib-windows.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-c38fdc5154bcf410/lib-windows.json new file mode 100644 index 000000000..878d2a908 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-c38fdc5154bcf410/lib-windows.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"Win32\", \"Win32_Devices\", \"Win32_Devices_HumanInterfaceDevice\", \"Win32_Foundation\", \"Win32_Globalization\", \"Win32_Graphics\", \"Win32_Graphics_Dwm\", \"Win32_Graphics_Gdi\", \"Win32_System\", \"Win32_System_Com\", \"Win32_System_Com_StructuredStorage\", \"Win32_System_DataExchange\", \"Win32_System_Diagnostics\", \"Win32_System_Diagnostics_Debug\", \"Win32_System_LibraryLoader\", \"Win32_System_Memory\", \"Win32_System_Ole\", \"Win32_System_Registry\", \"Win32_System_SystemInformation\", \"Win32_System_SystemServices\", \"Win32_System_Threading\", \"Win32_System_Variant\", \"Win32_System_WinRT\", \"Win32_System_WindowsProgramming\", \"Win32_UI\", \"Win32_UI_Accessibility\", \"Win32_UI_Controls\", \"Win32_UI_HiDpi\", \"Win32_UI_Input\", \"Win32_UI_Input_Ime\", \"Win32_UI_Input_KeyboardAndMouse\", \"Win32_UI_Input_Pointer\", \"Win32_UI_Input_Touch\", \"Win32_UI_Shell\", \"Win32_UI_TextServices\", \"Win32_UI_WindowsAndMessaging\", \"default\", \"std\"]","declared_features":"[\"AI\", \"AI_MachineLearning\", \"ApplicationModel\", \"ApplicationModel_Activation\", \"ApplicationModel_AppExtensions\", \"ApplicationModel_AppService\", \"ApplicationModel_Appointments\", \"ApplicationModel_Appointments_AppointmentsProvider\", \"ApplicationModel_Appointments_DataProvider\", \"ApplicationModel_Background\", \"ApplicationModel_Calls\", \"ApplicationModel_Calls_Background\", \"ApplicationModel_Calls_Provider\", \"ApplicationModel_Chat\", \"ApplicationModel_CommunicationBlocking\", \"ApplicationModel_Contacts\", \"ApplicationModel_Contacts_DataProvider\", \"ApplicationModel_Contacts_Provider\", \"ApplicationModel_ConversationalAgent\", \"ApplicationModel_Core\", \"ApplicationModel_DataTransfer\", \"ApplicationModel_DataTransfer_DragDrop\", \"ApplicationModel_DataTransfer_DragDrop_Core\", \"ApplicationModel_DataTransfer_ShareTarget\", \"ApplicationModel_Email\", \"ApplicationModel_Email_DataProvider\", \"ApplicationModel_ExtendedExecution\", \"ApplicationModel_ExtendedExecution_Foreground\", \"ApplicationModel_Holographic\", \"ApplicationModel_LockScreen\", \"ApplicationModel_PackageExtensions\", \"ApplicationModel_Payments\", \"ApplicationModel_Payments_Provider\", \"ApplicationModel_Preview\", \"ApplicationModel_Preview_Holographic\", \"ApplicationModel_Preview_InkWorkspace\", \"ApplicationModel_Preview_Notes\", \"ApplicationModel_Resources\", \"ApplicationModel_Resources_Core\", \"ApplicationModel_Resources_Management\", \"ApplicationModel_Search\", \"ApplicationModel_Search_Core\", \"ApplicationModel_UserActivities\", \"ApplicationModel_UserActivities_Core\", \"ApplicationModel_UserDataAccounts\", \"ApplicationModel_UserDataAccounts_Provider\", \"ApplicationModel_UserDataAccounts_SystemAccess\", \"ApplicationModel_UserDataTasks\", \"ApplicationModel_UserDataTasks_DataProvider\", \"ApplicationModel_VoiceCommands\", \"ApplicationModel_Wallet\", \"ApplicationModel_Wallet_System\", \"Data\", \"Data_Html\", \"Data_Json\", \"Data_Pdf\", \"Data_Text\", \"Data_Xml\", \"Data_Xml_Dom\", \"Data_Xml_Xsl\", \"Devices\", \"Devices_Adc\", \"Devices_Adc_Provider\", \"Devices_Background\", \"Devices_Bluetooth\", \"Devices_Bluetooth_Advertisement\", \"Devices_Bluetooth_Background\", \"Devices_Bluetooth_GenericAttributeProfile\", \"Devices_Bluetooth_Rfcomm\", \"Devices_Custom\", \"Devices_Display\", \"Devices_Display_Core\", \"Devices_Enumeration\", \"Devices_Enumeration_Pnp\", \"Devices_Geolocation\", \"Devices_Geolocation_Geofencing\", \"Devices_Geolocation_Provider\", \"Devices_Gpio\", \"Devices_Gpio_Provider\", \"Devices_Haptics\", \"Devices_HumanInterfaceDevice\", \"Devices_I2c\", \"Devices_I2c_Provider\", \"Devices_Input\", \"Devices_Input_Preview\", \"Devices_Lights\", \"Devices_Lights_Effects\", \"Devices_Midi\", \"Devices_PointOfService\", \"Devices_PointOfService_Provider\", \"Devices_Portable\", \"Devices_Power\", \"Devices_Printers\", \"Devices_Printers_Extensions\", \"Devices_Pwm\", \"Devices_Pwm_Provider\", \"Devices_Radios\", \"Devices_Scanners\", \"Devices_Sensors\", \"Devices_Sensors_Custom\", \"Devices_SerialCommunication\", \"Devices_SmartCards\", \"Devices_Sms\", \"Devices_Spi\", \"Devices_Spi_Provider\", \"Devices_Usb\", \"Devices_WiFi\", \"Devices_WiFiDirect\", \"Devices_WiFiDirect_Services\", \"Embedded\", \"Embedded_DeviceLockdown\", \"Foundation\", \"Foundation_Collections\", \"Foundation_Diagnostics\", \"Foundation_Metadata\", \"Foundation_Numerics\", \"Gaming\", \"Gaming_Input\", \"Gaming_Input_Custom\", \"Gaming_Input_ForceFeedback\", \"Gaming_Input_Preview\", \"Gaming_Preview\", \"Gaming_Preview_GamesEnumeration\", \"Gaming_UI\", \"Gaming_XboxLive\", \"Gaming_XboxLive_Storage\", \"Globalization\", \"Globalization_Collation\", \"Globalization_DateTimeFormatting\", \"Globalization_Fonts\", \"Globalization_NumberFormatting\", \"Globalization_PhoneNumberFormatting\", \"Graphics\", \"Graphics_Capture\", \"Graphics_DirectX\", \"Graphics_DirectX_Direct3D11\", \"Graphics_Display\", \"Graphics_Display_Core\", \"Graphics_Effects\", \"Graphics_Holographic\", \"Graphics_Imaging\", \"Graphics_Printing\", \"Graphics_Printing3D\", \"Graphics_Printing_OptionDetails\", \"Graphics_Printing_PrintSupport\", \"Graphics_Printing_PrintTicket\", \"Graphics_Printing_Workflow\", \"Management\", \"Management_Core\", \"Management_Deployment\", \"Management_Deployment_Preview\", \"Management_Policies\", \"Management_Setup\", \"Management_Update\", \"Management_Workplace\", \"Media\", \"Media_AppBroadcasting\", \"Media_AppRecording\", \"Media_Audio\", \"Media_Capture\", \"Media_Capture_Core\", \"Media_Capture_Frames\", \"Media_Casting\", \"Media_ClosedCaptioning\", \"Media_ContentRestrictions\", \"Media_Control\", \"Media_Core\", \"Media_Core_Preview\", \"Media_Devices\", \"Media_Devices_Core\", \"Media_DialProtocol\", \"Media_Editing\", \"Media_Effects\", \"Media_FaceAnalysis\", \"Media_Import\", \"Media_MediaProperties\", \"Media_Miracast\", \"Media_Ocr\", \"Media_PlayTo\", \"Media_Playback\", \"Media_Playlists\", \"Media_Protection\", \"Media_Protection_PlayReady\", \"Media_Render\", \"Media_SpeechRecognition\", \"Media_SpeechSynthesis\", \"Media_Streaming\", \"Media_Streaming_Adaptive\", \"Media_Transcoding\", \"Networking\", \"Networking_BackgroundTransfer\", \"Networking_Connectivity\", \"Networking_NetworkOperators\", \"Networking_Proximity\", \"Networking_PushNotifications\", \"Networking_ServiceDiscovery\", \"Networking_ServiceDiscovery_Dnssd\", \"Networking_Sockets\", \"Networking_Vpn\", \"Networking_XboxLive\", \"Perception\", \"Perception_Automation\", \"Perception_Automation_Core\", \"Perception_People\", \"Perception_Spatial\", \"Perception_Spatial_Preview\", \"Perception_Spatial_Surfaces\", \"Phone\", \"Phone_ApplicationModel\", \"Phone_Devices\", \"Phone_Devices_Notification\", \"Phone_Devices_Power\", \"Phone_Management\", \"Phone_Management_Deployment\", \"Phone_Media\", \"Phone_Media_Devices\", \"Phone_Notification\", \"Phone_Notification_Management\", \"Phone_PersonalInformation\", \"Phone_PersonalInformation_Provisioning\", \"Phone_Speech\", \"Phone_Speech_Recognition\", \"Phone_StartScreen\", \"Phone_System\", \"Phone_System_Power\", \"Phone_System_Profile\", \"Phone_System_UserProfile\", \"Phone_System_UserProfile_GameServices\", \"Phone_System_UserProfile_GameServices_Core\", \"Phone_UI\", \"Phone_UI_Input\", \"Security\", \"Security_Authentication\", \"Security_Authentication_Identity\", \"Security_Authentication_Identity_Core\", \"Security_Authentication_OnlineId\", \"Security_Authentication_Web\", \"Security_Authentication_Web_Core\", \"Security_Authentication_Web_Provider\", \"Security_Authorization\", \"Security_Authorization_AppCapabilityAccess\", \"Security_Credentials\", \"Security_Credentials_UI\", \"Security_Cryptography\", \"Security_Cryptography_Certificates\", \"Security_Cryptography_Core\", \"Security_Cryptography_DataProtection\", \"Security_DataProtection\", \"Security_EnterpriseData\", \"Security_ExchangeActiveSyncProvisioning\", \"Security_Isolation\", \"Services\", \"Services_Maps\", \"Services_Maps_Guidance\", \"Services_Maps_LocalSearch\", \"Services_Maps_OfflineMaps\", \"Services_Store\", \"Services_TargetedContent\", \"Storage\", \"Storage_AccessCache\", \"Storage_BulkAccess\", \"Storage_Compression\", \"Storage_FileProperties\", \"Storage_Pickers\", \"Storage_Pickers_Provider\", \"Storage_Provider\", \"Storage_Search\", \"Storage_Streams\", \"System\", \"System_Diagnostics\", \"System_Diagnostics_DevicePortal\", \"System_Diagnostics_Telemetry\", \"System_Diagnostics_TraceReporting\", \"System_Display\", \"System_Implementation\", \"System_Implementation_FileExplorer\", \"System_Inventory\", \"System_Power\", \"System_Profile\", \"System_Profile_SystemManufacturers\", \"System_RemoteDesktop\", \"System_RemoteDesktop_Input\", \"System_RemoteDesktop_Provider\", \"System_RemoteSystems\", \"System_Threading\", \"System_Threading_Core\", \"System_Update\", \"System_UserProfile\", \"UI\", \"UI_Accessibility\", \"UI_ApplicationSettings\", \"UI_Composition\", \"UI_Composition_Core\", \"UI_Composition_Desktop\", \"UI_Composition_Diagnostics\", \"UI_Composition_Effects\", \"UI_Composition_Interactions\", \"UI_Composition_Scenes\", \"UI_Core\", \"UI_Core_AnimationMetrics\", \"UI_Core_Preview\", \"UI_Input\", \"UI_Input_Core\", \"UI_Input_Inking\", \"UI_Input_Inking_Analysis\", \"UI_Input_Inking_Core\", \"UI_Input_Inking_Preview\", \"UI_Input_Preview\", \"UI_Input_Preview_Injection\", \"UI_Input_Spatial\", \"UI_Notifications\", \"UI_Notifications_Management\", \"UI_Notifications_Preview\", \"UI_Popups\", \"UI_Shell\", \"UI_StartScreen\", \"UI_Text\", \"UI_Text_Core\", \"UI_UIAutomation\", \"UI_UIAutomation_Core\", \"UI_ViewManagement\", \"UI_ViewManagement_Core\", \"UI_WebUI\", \"UI_WebUI_Core\", \"UI_WindowManagement\", \"UI_WindowManagement_Preview\", \"Wdk\", \"Wdk_Devices\", \"Wdk_Devices_Bluetooth\", \"Wdk_Devices_HumanInterfaceDevice\", \"Wdk_Foundation\", \"Wdk_Graphics\", \"Wdk_Graphics_Direct3D\", \"Wdk_NetworkManagement\", \"Wdk_NetworkManagement_Ndis\", \"Wdk_NetworkManagement_WindowsFilteringPlatform\", \"Wdk_Storage\", \"Wdk_Storage_FileSystem\", \"Wdk_Storage_FileSystem_Minifilters\", \"Wdk_System\", \"Wdk_System_IO\", \"Wdk_System_Memory\", \"Wdk_System_OfflineRegistry\", \"Wdk_System_Registry\", \"Wdk_System_SystemInformation\", \"Wdk_System_SystemServices\", \"Wdk_System_Threading\", \"Web\", \"Web_AtomPub\", \"Web_Http\", \"Web_Http_Diagnostics\", \"Web_Http_Filters\", \"Web_Http_Headers\", \"Web_Syndication\", \"Web_UI\", \"Web_UI_Interop\", \"Win32\", \"Win32_AI\", \"Win32_AI_MachineLearning\", \"Win32_AI_MachineLearning_DirectML\", \"Win32_AI_MachineLearning_WinML\", \"Win32_Data\", \"Win32_Data_HtmlHelp\", \"Win32_Data_RightsManagement\", \"Win32_Data_Xml\", \"Win32_Data_Xml_MsXml\", \"Win32_Data_Xml_XmlLite\", \"Win32_Devices\", \"Win32_Devices_AllJoyn\", \"Win32_Devices_Beep\", \"Win32_Devices_BiometricFramework\", \"Win32_Devices_Bluetooth\", \"Win32_Devices_Cdrom\", \"Win32_Devices_Communication\", \"Win32_Devices_DeviceAccess\", \"Win32_Devices_DeviceAndDriverInstallation\", \"Win32_Devices_DeviceQuery\", \"Win32_Devices_Display\", \"Win32_Devices_Dvd\", \"Win32_Devices_Enumeration\", \"Win32_Devices_Enumeration_Pnp\", \"Win32_Devices_Fax\", \"Win32_Devices_FunctionDiscovery\", \"Win32_Devices_Geolocation\", \"Win32_Devices_HumanInterfaceDevice\", \"Win32_Devices_ImageAcquisition\", \"Win32_Devices_Nfc\", \"Win32_Devices_Nfp\", \"Win32_Devices_PortableDevices\", \"Win32_Devices_Properties\", \"Win32_Devices_Pwm\", \"Win32_Devices_Sensors\", \"Win32_Devices_SerialCommunication\", \"Win32_Devices_Tapi\", \"Win32_Devices_Usb\", \"Win32_Devices_WebServicesOnDevices\", \"Win32_Foundation\", \"Win32_Gaming\", \"Win32_Globalization\", \"Win32_Graphics\", \"Win32_Graphics_CompositionSwapchain\", \"Win32_Graphics_DXCore\", \"Win32_Graphics_Direct2D\", \"Win32_Graphics_Direct2D_Common\", \"Win32_Graphics_Direct3D\", \"Win32_Graphics_Direct3D10\", \"Win32_Graphics_Direct3D11\", \"Win32_Graphics_Direct3D11on12\", \"Win32_Graphics_Direct3D12\", \"Win32_Graphics_Direct3D9\", \"Win32_Graphics_Direct3D9on12\", \"Win32_Graphics_Direct3D_Dxc\", \"Win32_Graphics_Direct3D_Fxc\", \"Win32_Graphics_DirectComposition\", \"Win32_Graphics_DirectDraw\", \"Win32_Graphics_DirectManipulation\", \"Win32_Graphics_DirectWrite\", \"Win32_Graphics_Dwm\", \"Win32_Graphics_Dxgi\", \"Win32_Graphics_Dxgi_Common\", \"Win32_Graphics_Gdi\", \"Win32_Graphics_GdiPlus\", \"Win32_Graphics_Hlsl\", \"Win32_Graphics_Imaging\", \"Win32_Graphics_Imaging_D2D\", \"Win32_Graphics_OpenGL\", \"Win32_Graphics_Printing\", \"Win32_Graphics_Printing_PrintTicket\", \"Win32_Management\", \"Win32_Management_MobileDeviceManagementRegistration\", \"Win32_Media\", \"Win32_Media_Audio\", \"Win32_Media_Audio_Apo\", \"Win32_Media_Audio_DirectMusic\", \"Win32_Media_Audio_DirectSound\", \"Win32_Media_Audio_Endpoints\", \"Win32_Media_Audio_XAudio2\", \"Win32_Media_DeviceManager\", \"Win32_Media_DirectShow\", \"Win32_Media_DirectShow_Tv\", \"Win32_Media_DirectShow_Xml\", \"Win32_Media_DxMediaObjects\", \"Win32_Media_KernelStreaming\", \"Win32_Media_LibrarySharingServices\", \"Win32_Media_MediaFoundation\", \"Win32_Media_MediaPlayer\", \"Win32_Media_Multimedia\", \"Win32_Media_PictureAcquisition\", \"Win32_Media_Speech\", \"Win32_Media_Streaming\", \"Win32_Media_WindowsMediaFormat\", \"Win32_NetworkManagement\", \"Win32_NetworkManagement_Dhcp\", \"Win32_NetworkManagement_Dns\", \"Win32_NetworkManagement_InternetConnectionWizard\", \"Win32_NetworkManagement_IpHelper\", \"Win32_NetworkManagement_MobileBroadband\", \"Win32_NetworkManagement_Multicast\", \"Win32_NetworkManagement_Ndis\", \"Win32_NetworkManagement_NetBios\", \"Win32_NetworkManagement_NetManagement\", \"Win32_NetworkManagement_NetShell\", \"Win32_NetworkManagement_NetworkDiagnosticsFramework\", \"Win32_NetworkManagement_NetworkPolicyServer\", \"Win32_NetworkManagement_P2P\", \"Win32_NetworkManagement_QoS\", \"Win32_NetworkManagement_Rras\", \"Win32_NetworkManagement_Snmp\", \"Win32_NetworkManagement_WNet\", \"Win32_NetworkManagement_WebDav\", \"Win32_NetworkManagement_WiFi\", \"Win32_NetworkManagement_WindowsConnectNow\", \"Win32_NetworkManagement_WindowsConnectionManager\", \"Win32_NetworkManagement_WindowsFilteringPlatform\", \"Win32_NetworkManagement_WindowsFirewall\", \"Win32_NetworkManagement_WindowsNetworkVirtualization\", \"Win32_Networking\", \"Win32_Networking_ActiveDirectory\", \"Win32_Networking_BackgroundIntelligentTransferService\", \"Win32_Networking_Clustering\", \"Win32_Networking_HttpServer\", \"Win32_Networking_Ldap\", \"Win32_Networking_NetworkListManager\", \"Win32_Networking_RemoteDifferentialCompression\", \"Win32_Networking_WebSocket\", \"Win32_Networking_WinHttp\", \"Win32_Networking_WinInet\", \"Win32_Networking_WinSock\", \"Win32_Networking_WindowsWebServices\", \"Win32_Security\", \"Win32_Security_AppLocker\", \"Win32_Security_Authentication\", \"Win32_Security_Authentication_Identity\", \"Win32_Security_Authentication_Identity_Provider\", \"Win32_Security_Authorization\", \"Win32_Security_Authorization_UI\", \"Win32_Security_ConfigurationSnapin\", \"Win32_Security_Credentials\", \"Win32_Security_Cryptography\", \"Win32_Security_Cryptography_Catalog\", \"Win32_Security_Cryptography_Certificates\", \"Win32_Security_Cryptography_Sip\", \"Win32_Security_Cryptography_UI\", \"Win32_Security_DiagnosticDataQuery\", \"Win32_Security_DirectoryServices\", \"Win32_Security_EnterpriseData\", \"Win32_Security_ExtensibleAuthenticationProtocol\", \"Win32_Security_Isolation\", \"Win32_Security_LicenseProtection\", \"Win32_Security_NetworkAccessProtection\", \"Win32_Security_Tpm\", \"Win32_Security_WinTrust\", \"Win32_Security_WinWlx\", \"Win32_Storage\", \"Win32_Storage_Cabinets\", \"Win32_Storage_CloudFilters\", \"Win32_Storage_Compression\", \"Win32_Storage_DataDeduplication\", \"Win32_Storage_DistributedFileSystem\", \"Win32_Storage_EnhancedStorage\", \"Win32_Storage_FileHistory\", \"Win32_Storage_FileServerResourceManager\", \"Win32_Storage_FileSystem\", \"Win32_Storage_Imapi\", \"Win32_Storage_IndexServer\", \"Win32_Storage_InstallableFileSystems\", \"Win32_Storage_IscsiDisc\", \"Win32_Storage_Jet\", \"Win32_Storage_Nvme\", \"Win32_Storage_OfflineFiles\", \"Win32_Storage_OperationRecorder\", \"Win32_Storage_Packaging\", \"Win32_Storage_Packaging_Appx\", \"Win32_Storage_Packaging_Opc\", \"Win32_Storage_ProjectedFileSystem\", \"Win32_Storage_StructuredStorage\", \"Win32_Storage_Vhd\", \"Win32_Storage_VirtualDiskService\", \"Win32_Storage_Vss\", \"Win32_Storage_Xps\", \"Win32_Storage_Xps_Printing\", \"Win32_System\", \"Win32_System_AddressBook\", \"Win32_System_Antimalware\", \"Win32_System_ApplicationInstallationAndServicing\", \"Win32_System_ApplicationVerifier\", \"Win32_System_AssessmentTool\", \"Win32_System_ClrHosting\", \"Win32_System_Com\", \"Win32_System_Com_CallObj\", \"Win32_System_Com_ChannelCredentials\", \"Win32_System_Com_Events\", \"Win32_System_Com_Marshal\", \"Win32_System_Com_StructuredStorage\", \"Win32_System_Com_UI\", \"Win32_System_Com_Urlmon\", \"Win32_System_ComponentServices\", \"Win32_System_Console\", \"Win32_System_Contacts\", \"Win32_System_CorrelationVector\", \"Win32_System_DataExchange\", \"Win32_System_DeploymentServices\", \"Win32_System_DesktopSharing\", \"Win32_System_DeveloperLicensing\", \"Win32_System_Diagnostics\", \"Win32_System_Diagnostics_Ceip\", \"Win32_System_Diagnostics_ClrProfiling\", \"Win32_System_Diagnostics_Debug\", \"Win32_System_Diagnostics_Debug_ActiveScript\", \"Win32_System_Diagnostics_Debug_Extensions\", \"Win32_System_Diagnostics_Etw\", \"Win32_System_Diagnostics_ProcessSnapshotting\", \"Win32_System_Diagnostics_ToolHelp\", \"Win32_System_Diagnostics_TraceLogging\", \"Win32_System_DistributedTransactionCoordinator\", \"Win32_System_Environment\", \"Win32_System_ErrorReporting\", \"Win32_System_EventCollector\", \"Win32_System_EventLog\", \"Win32_System_EventNotificationService\", \"Win32_System_GroupPolicy\", \"Win32_System_HostCompute\", \"Win32_System_HostComputeNetwork\", \"Win32_System_HostComputeSystem\", \"Win32_System_Hypervisor\", \"Win32_System_IO\", \"Win32_System_Iis\", \"Win32_System_Ioctl\", \"Win32_System_JobObjects\", \"Win32_System_Js\", \"Win32_System_Kernel\", \"Win32_System_LibraryLoader\", \"Win32_System_Mailslots\", \"Win32_System_Mapi\", \"Win32_System_Memory\", \"Win32_System_Memory_NonVolatile\", \"Win32_System_MessageQueuing\", \"Win32_System_MixedReality\", \"Win32_System_Mmc\", \"Win32_System_Ole\", \"Win32_System_ParentalControls\", \"Win32_System_PasswordManagement\", \"Win32_System_Performance\", \"Win32_System_Performance_HardwareCounterProfiling\", \"Win32_System_Pipes\", \"Win32_System_Power\", \"Win32_System_ProcessStatus\", \"Win32_System_RealTimeCommunications\", \"Win32_System_Recovery\", \"Win32_System_Registry\", \"Win32_System_RemoteAssistance\", \"Win32_System_RemoteDesktop\", \"Win32_System_RemoteManagement\", \"Win32_System_RestartManager\", \"Win32_System_Restore\", \"Win32_System_Rpc\", \"Win32_System_Search\", \"Win32_System_Search_Common\", \"Win32_System_SecurityCenter\", \"Win32_System_ServerBackup\", \"Win32_System_Services\", \"Win32_System_SettingsManagementInfrastructure\", \"Win32_System_SetupAndMigration\", \"Win32_System_Shutdown\", \"Win32_System_SideShow\", \"Win32_System_StationsAndDesktops\", \"Win32_System_SubsystemForLinux\", \"Win32_System_SystemInformation\", \"Win32_System_SystemServices\", \"Win32_System_TaskScheduler\", \"Win32_System_Threading\", \"Win32_System_Time\", \"Win32_System_TpmBaseServices\", \"Win32_System_TransactionServer\", \"Win32_System_UpdateAgent\", \"Win32_System_UpdateAssessment\", \"Win32_System_UserAccessLogging\", \"Win32_System_Variant\", \"Win32_System_VirtualDosMachines\", \"Win32_System_WinRT\", \"Win32_System_WinRT_AllJoyn\", \"Win32_System_WinRT_Composition\", \"Win32_System_WinRT_CoreInputView\", \"Win32_System_WinRT_Direct3D11\", \"Win32_System_WinRT_Display\", \"Win32_System_WinRT_Graphics\", \"Win32_System_WinRT_Graphics_Capture\", \"Win32_System_WinRT_Graphics_Direct2D\", \"Win32_System_WinRT_Graphics_Imaging\", \"Win32_System_WinRT_Holographic\", \"Win32_System_WinRT_Isolation\", \"Win32_System_WinRT_ML\", \"Win32_System_WinRT_Media\", \"Win32_System_WinRT_Metadata\", \"Win32_System_WinRT_Pdf\", \"Win32_System_WinRT_Printing\", \"Win32_System_WinRT_Shell\", \"Win32_System_WinRT_Storage\", \"Win32_System_WindowsProgramming\", \"Win32_System_WindowsSync\", \"Win32_System_Wmi\", \"Win32_UI\", \"Win32_UI_Accessibility\", \"Win32_UI_Animation\", \"Win32_UI_ColorSystem\", \"Win32_UI_Controls\", \"Win32_UI_Controls_Dialogs\", \"Win32_UI_Controls_RichEdit\", \"Win32_UI_HiDpi\", \"Win32_UI_Input\", \"Win32_UI_Input_Ime\", \"Win32_UI_Input_Ink\", \"Win32_UI_Input_KeyboardAndMouse\", \"Win32_UI_Input_Pointer\", \"Win32_UI_Input_Radial\", \"Win32_UI_Input_Touch\", \"Win32_UI_Input_XboxController\", \"Win32_UI_InteractionContext\", \"Win32_UI_LegacyWindowsEnvironmentFeatures\", \"Win32_UI_Magnification\", \"Win32_UI_Notifications\", \"Win32_UI_Ribbon\", \"Win32_UI_Shell\", \"Win32_UI_Shell_Common\", \"Win32_UI_Shell_PropertiesSystem\", \"Win32_UI_TabletPC\", \"Win32_UI_TextServices\", \"Win32_UI_WindowsAndMessaging\", \"Win32_UI_Wpf\", \"Win32_Web\", \"Win32_Web_InternetExplorer\", \"default\", \"deprecated\", \"docs\", \"std\"]","target":12079305173176943989,"profile":12257758352969185987,"path":1130972543439985053,"deps":[[654630577187138008,"windows_numerics",false,13696043713230894720],[5628259161083531273,"windows_core",false,1564442099389724938],[11505586985402185701,"windows_link",false,16060276076010020214],[14242725669310060391,"windows_collections",false,11115587248218298075],[15497576709604833034,"windows_future",false,15733740756398170884]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-c38fdc5154bcf410\\dep-lib-windows","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-collections-88014711e8e8c018/dep-lib-windows_collections b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-collections-88014711e8e8c018/dep-lib-windows_collections new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-collections-88014711e8e8c018/dep-lib-windows_collections differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-collections-88014711e8e8c018/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-collections-88014711e8e8c018/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-collections-88014711e8e8c018/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-collections-88014711e8e8c018/lib-windows_collections b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-collections-88014711e8e8c018/lib-windows_collections new file mode 100644 index 000000000..f3e4a0b60 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-collections-88014711e8e8c018/lib-windows_collections @@ -0,0 +1 @@ +dbd6e997b57f429a \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-collections-88014711e8e8c018/lib-windows_collections.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-collections-88014711e8e8c018/lib-windows_collections.json new file mode 100644 index 000000000..009990bfe --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-collections-88014711e8e8c018/lib-windows_collections.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"default\", \"std\"]","target":12696029068395624175,"profile":18079350292250340808,"path":18071087864504762368,"deps":[[5628259161083531273,"windows_core",false,1564442099389724938]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-collections-88014711e8e8c018\\dep-lib-windows_collections","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-core-4a3690fc499555a5/dep-lib-windows_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-core-4a3690fc499555a5/dep-lib-windows_core new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-core-4a3690fc499555a5/dep-lib-windows_core differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-core-4a3690fc499555a5/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-core-4a3690fc499555a5/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-core-4a3690fc499555a5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-core-4a3690fc499555a5/lib-windows_core b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-core-4a3690fc499555a5/lib-windows_core new file mode 100644 index 000000000..687b6a195 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-core-4a3690fc499555a5/lib-windows_core @@ -0,0 +1 @@ +0a79caf5cc03b615 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-core-4a3690fc499555a5/lib-windows_core.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-core-4a3690fc499555a5/lib-windows_core.json new file mode 100644 index 000000000..e9cfebda2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-core-4a3690fc499555a5/lib-windows_core.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"default\", \"std\"]","declared_features":"[\"default\", \"std\"]","target":13201692854421378145,"profile":12257758352969185987,"path":13824148776995243970,"deps":[[632475476718824203,"windows_implement",false,10252113153028580527],[704053683532934696,"windows_strings",false,2065869107090316237],[1571872982634866983,"windows_result",false,9366961262299550132],[9607212097014017224,"windows_interface",false,2080662935847172432],[11505586985402185701,"windows_link",false,16060276076010020214]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-core-4a3690fc499555a5\\dep-lib-windows_core","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-future-ac1811c87767b3fd/dep-lib-windows_future b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-future-ac1811c87767b3fd/dep-lib-windows_future new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-future-ac1811c87767b3fd/dep-lib-windows_future differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-future-ac1811c87767b3fd/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-future-ac1811c87767b3fd/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-future-ac1811c87767b3fd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-future-ac1811c87767b3fd/lib-windows_future b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-future-ac1811c87767b3fd/lib-windows_future new file mode 100644 index 000000000..f55601934 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-future-ac1811c87767b3fd/lib-windows_future @@ -0,0 +1 @@ +04e33265db7959da \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-future-ac1811c87767b3fd/lib-windows_future.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-future-ac1811c87767b3fd/lib-windows_future.json new file mode 100644 index 000000000..02ff9d0e3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-future-ac1811c87767b3fd/lib-windows_future.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"default\", \"std\"]","target":14030189913129152040,"profile":12257758352969185987,"path":1346341037584359999,"deps":[[1670816939315227968,"windows_threading",false,13433783269700962804],[5628259161083531273,"windows_core",false,1564442099389724938],[11505586985402185701,"windows_link",false,16060276076010020214]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-future-ac1811c87767b3fd\\dep-lib-windows_future","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-implement-e23c3bf2f6eb1a71/dep-lib-windows_implement b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-implement-e23c3bf2f6eb1a71/dep-lib-windows_implement new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-implement-e23c3bf2f6eb1a71/dep-lib-windows_implement differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-implement-e23c3bf2f6eb1a71/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-implement-e23c3bf2f6eb1a71/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-implement-e23c3bf2f6eb1a71/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-implement-e23c3bf2f6eb1a71/lib-windows_implement b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-implement-e23c3bf2f6eb1a71/lib-windows_implement new file mode 100644 index 000000000..794f874ce --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-implement-e23c3bf2f6eb1a71/lib-windows_implement @@ -0,0 +1 @@ +afe4603b98d2468e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-implement-e23c3bf2f6eb1a71/lib-windows_implement.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-implement-e23c3bf2f6eb1a71/lib-windows_implement.json new file mode 100644 index 000000000..bc31e9a4a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-implement-e23c3bf2f6eb1a71/lib-windows_implement.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":10039664040985150611,"profile":15690309238241248693,"path":14602437595642726381,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-implement-e23c3bf2f6eb1a71\\dep-lib-windows_implement","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-interface-c020ad5fd4f45a83/dep-lib-windows_interface b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-interface-c020ad5fd4f45a83/dep-lib-windows_interface new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-interface-c020ad5fd4f45a83/dep-lib-windows_interface differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-interface-c020ad5fd4f45a83/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-interface-c020ad5fd4f45a83/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-interface-c020ad5fd4f45a83/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-interface-c020ad5fd4f45a83/lib-windows_interface b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-interface-c020ad5fd4f45a83/lib-windows_interface new file mode 100644 index 000000000..e9beba209 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-interface-c020ad5fd4f45a83/lib-windows_interface @@ -0,0 +1 @@ +50f97d94eaffdf1c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-interface-c020ad5fd4f45a83/lib-windows_interface.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-interface-c020ad5fd4f45a83/lib-windows_interface.json new file mode 100644 index 000000000..90f2ea8d2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-interface-c020ad5fd4f45a83/lib-windows_interface.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5697970080876356432,"profile":15690309238241248693,"path":7748491254918024194,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-interface-c020ad5fd4f45a83\\dep-lib-windows_interface","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-594dfd04a3257e88/dep-lib-windows_link b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-594dfd04a3257e88/dep-lib-windows_link new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-594dfd04a3257e88/dep-lib-windows_link differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-594dfd04a3257e88/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-594dfd04a3257e88/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-594dfd04a3257e88/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-594dfd04a3257e88/lib-windows_link b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-594dfd04a3257e88/lib-windows_link new file mode 100644 index 000000000..ba2b894e6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-594dfd04a3257e88/lib-windows_link @@ -0,0 +1 @@ +761d48090090e1de \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-594dfd04a3257e88/lib-windows_link.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-594dfd04a3257e88/lib-windows_link.json new file mode 100644 index 000000000..2a4187bbf --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-594dfd04a3257e88/lib-windows_link.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":2558631941022679061,"profile":12257758352969185987,"path":6294586400839688684,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-link-594dfd04a3257e88\\dep-lib-windows_link","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-5ee0fa7a3e688947/dep-lib-windows_link b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-5ee0fa7a3e688947/dep-lib-windows_link new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-5ee0fa7a3e688947/dep-lib-windows_link differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-5ee0fa7a3e688947/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-5ee0fa7a3e688947/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-5ee0fa7a3e688947/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-5ee0fa7a3e688947/lib-windows_link b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-5ee0fa7a3e688947/lib-windows_link new file mode 100644 index 000000000..fd1abee01 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-5ee0fa7a3e688947/lib-windows_link @@ -0,0 +1 @@ +0a8916aad01fa675 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-5ee0fa7a3e688947/lib-windows_link.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-5ee0fa7a3e688947/lib-windows_link.json new file mode 100644 index 000000000..35c80f580 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-link-5ee0fa7a3e688947/lib-windows_link.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":2558631941022679061,"profile":14508822251238124762,"path":17061345911689127975,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-link-5ee0fa7a3e688947\\dep-lib-windows_link","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-numerics-0c2569d5eb1d0431/dep-lib-windows_numerics b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-numerics-0c2569d5eb1d0431/dep-lib-windows_numerics new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-numerics-0c2569d5eb1d0431/dep-lib-windows_numerics differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-numerics-0c2569d5eb1d0431/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-numerics-0c2569d5eb1d0431/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-numerics-0c2569d5eb1d0431/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-numerics-0c2569d5eb1d0431/lib-windows_numerics b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-numerics-0c2569d5eb1d0431/lib-windows_numerics new file mode 100644 index 000000000..7bd7471bd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-numerics-0c2569d5eb1d0431/lib-windows_numerics @@ -0,0 +1 @@ +80765943311f12be \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-numerics-0c2569d5eb1d0431/lib-windows_numerics.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-numerics-0c2569d5eb1d0431/lib-windows_numerics.json new file mode 100644 index 000000000..6e3b90993 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-numerics-0c2569d5eb1d0431/lib-windows_numerics.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"default\", \"std\"]","target":17705784576599448798,"profile":18079350292250340808,"path":18434012206217654062,"deps":[[5628259161083531273,"windows_core",false,1564442099389724938],[11505586985402185701,"windows_link",false,16060276076010020214]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-numerics-0c2569d5eb1d0431\\dep-lib-windows_numerics","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-result-fa45d18993e6785f/dep-lib-windows_result b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-result-fa45d18993e6785f/dep-lib-windows_result new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-result-fa45d18993e6785f/dep-lib-windows_result differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-result-fa45d18993e6785f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-result-fa45d18993e6785f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-result-fa45d18993e6785f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-result-fa45d18993e6785f/lib-windows_result b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-result-fa45d18993e6785f/lib-windows_result new file mode 100644 index 000000000..82ba7be5b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-result-fa45d18993e6785f/lib-windows_result @@ -0,0 +1 @@ +b49135c8a321fe81 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-result-fa45d18993e6785f/lib-windows_result.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-result-fa45d18993e6785f/lib-windows_result.json new file mode 100644 index 000000000..34a369d72 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-result-fa45d18993e6785f/lib-windows_result.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"std\"]","declared_features":"[\"default\", \"std\"]","target":4443055816520199735,"profile":12257758352969185987,"path":3352146136419151609,"deps":[[11505586985402185701,"windows_link",false,16060276076010020214]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-result-fa45d18993e6785f\\dep-lib-windows_result","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-strings-794b4c8b2d8cd330/dep-lib-windows_strings b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-strings-794b4c8b2d8cd330/dep-lib-windows_strings new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-strings-794b4c8b2d8cd330/dep-lib-windows_strings differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-strings-794b4c8b2d8cd330/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-strings-794b4c8b2d8cd330/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-strings-794b4c8b2d8cd330/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-strings-794b4c8b2d8cd330/lib-windows_strings b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-strings-794b4c8b2d8cd330/lib-windows_strings new file mode 100644 index 000000000..32190b0da --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-strings-794b4c8b2d8cd330/lib-windows_strings @@ -0,0 +1 @@ +cd5b92e80171ab1c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-strings-794b4c8b2d8cd330/lib-windows_strings.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-strings-794b4c8b2d8cd330/lib-windows_strings.json new file mode 100644 index 000000000..d04121b72 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-strings-794b4c8b2d8cd330/lib-windows_strings.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"std\"]","declared_features":"[\"default\", \"std\"]","target":11654750369304489667,"profile":12257758352969185987,"path":726676879932444730,"deps":[[11505586985402185701,"windows_link",false,16060276076010020214]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-strings-794b4c8b2d8cd330\\dep-lib-windows_strings","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-18eeec8cea914cb4/dep-lib-windows_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-18eeec8cea914cb4/dep-lib-windows_sys new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-18eeec8cea914cb4/dep-lib-windows_sys differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-18eeec8cea914cb4/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-18eeec8cea914cb4/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-18eeec8cea914cb4/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-18eeec8cea914cb4/lib-windows_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-18eeec8cea914cb4/lib-windows_sys new file mode 100644 index 000000000..d72d47f89 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-18eeec8cea914cb4/lib-windows_sys @@ -0,0 +1 @@ +c495f185cd89a364 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-18eeec8cea914cb4/lib-windows_sys.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-18eeec8cea914cb4/lib-windows_sys.json new file mode 100644 index 000000000..9452b96d1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-18eeec8cea914cb4/lib-windows_sys.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"Win32\", \"Win32_Foundation\", \"Win32_Globalization\", \"Win32_Graphics\", \"Win32_Graphics_Gdi\", \"Win32_System\", \"Win32_System_LibraryLoader\", \"Win32_System_SystemServices\", \"Win32_UI\", \"Win32_UI_Accessibility\", \"Win32_UI_Controls\", \"Win32_UI_HiDpi\", \"Win32_UI_Input\", \"Win32_UI_Input_KeyboardAndMouse\", \"Win32_UI_Shell\", \"Win32_UI_WindowsAndMessaging\", \"default\"]","declared_features":"[\"Wdk\", \"Wdk_Devices\", \"Wdk_Devices_Bluetooth\", \"Wdk_Devices_HumanInterfaceDevice\", \"Wdk_Foundation\", \"Wdk_Graphics\", \"Wdk_Graphics_Direct3D\", \"Wdk_NetworkManagement\", \"Wdk_NetworkManagement_Ndis\", \"Wdk_NetworkManagement_WindowsFilteringPlatform\", \"Wdk_Storage\", \"Wdk_Storage_FileSystem\", \"Wdk_Storage_FileSystem_Minifilters\", \"Wdk_System\", \"Wdk_System_IO\", \"Wdk_System_Memory\", \"Wdk_System_OfflineRegistry\", \"Wdk_System_Registry\", \"Wdk_System_SystemInformation\", \"Wdk_System_SystemServices\", \"Wdk_System_Threading\", \"Win32\", \"Win32_Data\", \"Win32_Data_HtmlHelp\", \"Win32_Data_RightsManagement\", \"Win32_Devices\", \"Win32_Devices_AllJoyn\", \"Win32_Devices_Beep\", \"Win32_Devices_BiometricFramework\", \"Win32_Devices_Bluetooth\", \"Win32_Devices_Cdrom\", \"Win32_Devices_Communication\", \"Win32_Devices_DeviceAndDriverInstallation\", \"Win32_Devices_DeviceQuery\", \"Win32_Devices_Display\", \"Win32_Devices_Dvd\", \"Win32_Devices_Enumeration\", \"Win32_Devices_Enumeration_Pnp\", \"Win32_Devices_Fax\", \"Win32_Devices_HumanInterfaceDevice\", \"Win32_Devices_Nfc\", \"Win32_Devices_Nfp\", \"Win32_Devices_PortableDevices\", \"Win32_Devices_Properties\", \"Win32_Devices_Pwm\", \"Win32_Devices_Sensors\", \"Win32_Devices_SerialCommunication\", \"Win32_Devices_Tapi\", \"Win32_Devices_Usb\", \"Win32_Devices_WebServicesOnDevices\", \"Win32_Foundation\", \"Win32_Gaming\", \"Win32_Globalization\", \"Win32_Graphics\", \"Win32_Graphics_Dwm\", \"Win32_Graphics_Gdi\", \"Win32_Graphics_GdiPlus\", \"Win32_Graphics_Hlsl\", \"Win32_Graphics_OpenGL\", \"Win32_Graphics_Printing\", \"Win32_Graphics_Printing_PrintTicket\", \"Win32_Management\", \"Win32_Management_MobileDeviceManagementRegistration\", \"Win32_Media\", \"Win32_Media_Audio\", \"Win32_Media_DxMediaObjects\", \"Win32_Media_KernelStreaming\", \"Win32_Media_Multimedia\", \"Win32_Media_Streaming\", \"Win32_Media_WindowsMediaFormat\", \"Win32_NetworkManagement\", \"Win32_NetworkManagement_Dhcp\", \"Win32_NetworkManagement_Dns\", \"Win32_NetworkManagement_InternetConnectionWizard\", \"Win32_NetworkManagement_IpHelper\", \"Win32_NetworkManagement_Multicast\", \"Win32_NetworkManagement_Ndis\", \"Win32_NetworkManagement_NetBios\", \"Win32_NetworkManagement_NetManagement\", \"Win32_NetworkManagement_NetShell\", \"Win32_NetworkManagement_NetworkDiagnosticsFramework\", \"Win32_NetworkManagement_P2P\", \"Win32_NetworkManagement_QoS\", \"Win32_NetworkManagement_Rras\", \"Win32_NetworkManagement_Snmp\", \"Win32_NetworkManagement_WNet\", \"Win32_NetworkManagement_WebDav\", \"Win32_NetworkManagement_WiFi\", \"Win32_NetworkManagement_WindowsConnectionManager\", \"Win32_NetworkManagement_WindowsFilteringPlatform\", \"Win32_NetworkManagement_WindowsFirewall\", \"Win32_NetworkManagement_WindowsNetworkVirtualization\", \"Win32_Networking\", \"Win32_Networking_ActiveDirectory\", \"Win32_Networking_Clustering\", \"Win32_Networking_HttpServer\", \"Win32_Networking_Ldap\", \"Win32_Networking_WebSocket\", \"Win32_Networking_WinHttp\", \"Win32_Networking_WinInet\", \"Win32_Networking_WinSock\", \"Win32_Networking_WindowsWebServices\", \"Win32_Security\", \"Win32_Security_AppLocker\", \"Win32_Security_Authentication\", \"Win32_Security_Authentication_Identity\", \"Win32_Security_Authorization\", \"Win32_Security_Credentials\", \"Win32_Security_Cryptography\", \"Win32_Security_Cryptography_Catalog\", \"Win32_Security_Cryptography_Certificates\", \"Win32_Security_Cryptography_Sip\", \"Win32_Security_Cryptography_UI\", \"Win32_Security_DiagnosticDataQuery\", \"Win32_Security_DirectoryServices\", \"Win32_Security_EnterpriseData\", \"Win32_Security_ExtensibleAuthenticationProtocol\", \"Win32_Security_Isolation\", \"Win32_Security_LicenseProtection\", \"Win32_Security_NetworkAccessProtection\", \"Win32_Security_WinTrust\", \"Win32_Security_WinWlx\", \"Win32_Storage\", \"Win32_Storage_Cabinets\", \"Win32_Storage_CloudFilters\", \"Win32_Storage_Compression\", \"Win32_Storage_DistributedFileSystem\", \"Win32_Storage_FileHistory\", \"Win32_Storage_FileSystem\", \"Win32_Storage_Imapi\", \"Win32_Storage_IndexServer\", \"Win32_Storage_InstallableFileSystems\", \"Win32_Storage_IscsiDisc\", \"Win32_Storage_Jet\", \"Win32_Storage_Nvme\", \"Win32_Storage_OfflineFiles\", \"Win32_Storage_OperationRecorder\", \"Win32_Storage_Packaging\", \"Win32_Storage_Packaging_Appx\", \"Win32_Storage_ProjectedFileSystem\", \"Win32_Storage_StructuredStorage\", \"Win32_Storage_Vhd\", \"Win32_Storage_Xps\", \"Win32_System\", \"Win32_System_AddressBook\", \"Win32_System_Antimalware\", \"Win32_System_ApplicationInstallationAndServicing\", \"Win32_System_ApplicationVerifier\", \"Win32_System_ClrHosting\", \"Win32_System_Com\", \"Win32_System_Com_Marshal\", \"Win32_System_Com_StructuredStorage\", \"Win32_System_Com_Urlmon\", \"Win32_System_ComponentServices\", \"Win32_System_Console\", \"Win32_System_CorrelationVector\", \"Win32_System_DataExchange\", \"Win32_System_DeploymentServices\", \"Win32_System_DeveloperLicensing\", \"Win32_System_Diagnostics\", \"Win32_System_Diagnostics_Ceip\", \"Win32_System_Diagnostics_Debug\", \"Win32_System_Diagnostics_Debug_Extensions\", \"Win32_System_Diagnostics_Etw\", \"Win32_System_Diagnostics_ProcessSnapshotting\", \"Win32_System_Diagnostics_ToolHelp\", \"Win32_System_Diagnostics_TraceLogging\", \"Win32_System_DistributedTransactionCoordinator\", \"Win32_System_Environment\", \"Win32_System_ErrorReporting\", \"Win32_System_EventCollector\", \"Win32_System_EventLog\", \"Win32_System_EventNotificationService\", \"Win32_System_GroupPolicy\", \"Win32_System_HostCompute\", \"Win32_System_HostComputeNetwork\", \"Win32_System_HostComputeSystem\", \"Win32_System_Hypervisor\", \"Win32_System_IO\", \"Win32_System_Iis\", \"Win32_System_Ioctl\", \"Win32_System_JobObjects\", \"Win32_System_Js\", \"Win32_System_Kernel\", \"Win32_System_LibraryLoader\", \"Win32_System_Mailslots\", \"Win32_System_Mapi\", \"Win32_System_Memory\", \"Win32_System_Memory_NonVolatile\", \"Win32_System_MessageQueuing\", \"Win32_System_MixedReality\", \"Win32_System_Ole\", \"Win32_System_PasswordManagement\", \"Win32_System_Performance\", \"Win32_System_Performance_HardwareCounterProfiling\", \"Win32_System_Pipes\", \"Win32_System_Power\", \"Win32_System_ProcessStatus\", \"Win32_System_Recovery\", \"Win32_System_Registry\", \"Win32_System_RemoteDesktop\", \"Win32_System_RemoteManagement\", \"Win32_System_RestartManager\", \"Win32_System_Restore\", \"Win32_System_Rpc\", \"Win32_System_Search\", \"Win32_System_Search_Common\", \"Win32_System_SecurityCenter\", \"Win32_System_Services\", \"Win32_System_SetupAndMigration\", \"Win32_System_Shutdown\", \"Win32_System_StationsAndDesktops\", \"Win32_System_SubsystemForLinux\", \"Win32_System_SystemInformation\", \"Win32_System_SystemServices\", \"Win32_System_Threading\", \"Win32_System_Time\", \"Win32_System_TpmBaseServices\", \"Win32_System_UserAccessLogging\", \"Win32_System_Variant\", \"Win32_System_VirtualDosMachines\", \"Win32_System_WindowsProgramming\", \"Win32_System_Wmi\", \"Win32_UI\", \"Win32_UI_Accessibility\", \"Win32_UI_ColorSystem\", \"Win32_UI_Controls\", \"Win32_UI_Controls_Dialogs\", \"Win32_UI_HiDpi\", \"Win32_UI_Input\", \"Win32_UI_Input_Ime\", \"Win32_UI_Input_KeyboardAndMouse\", \"Win32_UI_Input_Pointer\", \"Win32_UI_Input_Touch\", \"Win32_UI_Input_XboxController\", \"Win32_UI_InteractionContext\", \"Win32_UI_Magnification\", \"Win32_UI_Shell\", \"Win32_UI_Shell_Common\", \"Win32_UI_Shell_PropertiesSystem\", \"Win32_UI_TabletPC\", \"Win32_UI_TextServices\", \"Win32_UI_WindowsAndMessaging\", \"Win32_Web\", \"Win32_Web_InternetExplorer\", \"default\", \"docs\"]","target":7306158158326771440,"profile":12257758352969185987,"path":17636001218081414102,"deps":[[758057172878111074,"windows_targets",false,9497667055781213585]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-sys-18eeec8cea914cb4\\dep-lib-windows_sys","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ac534c6385fd8781/dep-lib-windows_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ac534c6385fd8781/dep-lib-windows_sys new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ac534c6385fd8781/dep-lib-windows_sys differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ac534c6385fd8781/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ac534c6385fd8781/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ac534c6385fd8781/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ac534c6385fd8781/lib-windows_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ac534c6385fd8781/lib-windows_sys new file mode 100644 index 000000000..f64d03042 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ac534c6385fd8781/lib-windows_sys @@ -0,0 +1 @@ +e4a071b593af86fc \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ac534c6385fd8781/lib-windows_sys.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ac534c6385fd8781/lib-windows_sys.json new file mode 100644 index 000000000..9b0022b34 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ac534c6385fd8781/lib-windows_sys.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"Win32\", \"Win32_Foundation\", \"Win32_Graphics\", \"Win32_Graphics_Dwm\", \"Win32_Graphics_Gdi\", \"Win32_System\", \"Win32_System_LibraryLoader\", \"Win32_System_SystemInformation\", \"Win32_UI\", \"Win32_UI_WindowsAndMessaging\", \"default\"]","declared_features":"[\"Wdk\", \"Wdk_Devices\", \"Wdk_Devices_Bluetooth\", \"Wdk_Devices_HumanInterfaceDevice\", \"Wdk_Foundation\", \"Wdk_Graphics\", \"Wdk_Graphics_Direct3D\", \"Wdk_NetworkManagement\", \"Wdk_NetworkManagement_Ndis\", \"Wdk_NetworkManagement_WindowsFilteringPlatform\", \"Wdk_Storage\", \"Wdk_Storage_FileSystem\", \"Wdk_Storage_FileSystem_Minifilters\", \"Wdk_System\", \"Wdk_System_IO\", \"Wdk_System_Memory\", \"Wdk_System_OfflineRegistry\", \"Wdk_System_Registry\", \"Wdk_System_SystemInformation\", \"Wdk_System_SystemServices\", \"Wdk_System_Threading\", \"Win32\", \"Win32_Data\", \"Win32_Data_HtmlHelp\", \"Win32_Data_RightsManagement\", \"Win32_Devices\", \"Win32_Devices_AllJoyn\", \"Win32_Devices_BiometricFramework\", \"Win32_Devices_Bluetooth\", \"Win32_Devices_Communication\", \"Win32_Devices_DeviceAndDriverInstallation\", \"Win32_Devices_DeviceQuery\", \"Win32_Devices_Display\", \"Win32_Devices_Enumeration\", \"Win32_Devices_Enumeration_Pnp\", \"Win32_Devices_Fax\", \"Win32_Devices_HumanInterfaceDevice\", \"Win32_Devices_PortableDevices\", \"Win32_Devices_Properties\", \"Win32_Devices_Pwm\", \"Win32_Devices_Sensors\", \"Win32_Devices_SerialCommunication\", \"Win32_Devices_Tapi\", \"Win32_Devices_Usb\", \"Win32_Devices_WebServicesOnDevices\", \"Win32_Foundation\", \"Win32_Gaming\", \"Win32_Globalization\", \"Win32_Graphics\", \"Win32_Graphics_Dwm\", \"Win32_Graphics_Gdi\", \"Win32_Graphics_GdiPlus\", \"Win32_Graphics_Hlsl\", \"Win32_Graphics_OpenGL\", \"Win32_Graphics_Printing\", \"Win32_Graphics_Printing_PrintTicket\", \"Win32_Management\", \"Win32_Management_MobileDeviceManagementRegistration\", \"Win32_Media\", \"Win32_Media_Audio\", \"Win32_Media_DxMediaObjects\", \"Win32_Media_KernelStreaming\", \"Win32_Media_Multimedia\", \"Win32_Media_Streaming\", \"Win32_Media_WindowsMediaFormat\", \"Win32_NetworkManagement\", \"Win32_NetworkManagement_Dhcp\", \"Win32_NetworkManagement_Dns\", \"Win32_NetworkManagement_InternetConnectionWizard\", \"Win32_NetworkManagement_IpHelper\", \"Win32_NetworkManagement_Multicast\", \"Win32_NetworkManagement_Ndis\", \"Win32_NetworkManagement_NetBios\", \"Win32_NetworkManagement_NetManagement\", \"Win32_NetworkManagement_NetShell\", \"Win32_NetworkManagement_NetworkDiagnosticsFramework\", \"Win32_NetworkManagement_P2P\", \"Win32_NetworkManagement_QoS\", \"Win32_NetworkManagement_Rras\", \"Win32_NetworkManagement_Snmp\", \"Win32_NetworkManagement_WNet\", \"Win32_NetworkManagement_WebDav\", \"Win32_NetworkManagement_WiFi\", \"Win32_NetworkManagement_WindowsConnectionManager\", \"Win32_NetworkManagement_WindowsFilteringPlatform\", \"Win32_NetworkManagement_WindowsFirewall\", \"Win32_NetworkManagement_WindowsNetworkVirtualization\", \"Win32_Networking\", \"Win32_Networking_ActiveDirectory\", \"Win32_Networking_Clustering\", \"Win32_Networking_HttpServer\", \"Win32_Networking_Ldap\", \"Win32_Networking_WebSocket\", \"Win32_Networking_WinHttp\", \"Win32_Networking_WinInet\", \"Win32_Networking_WinSock\", \"Win32_Networking_WindowsWebServices\", \"Win32_Security\", \"Win32_Security_AppLocker\", \"Win32_Security_Authentication\", \"Win32_Security_Authentication_Identity\", \"Win32_Security_Authorization\", \"Win32_Security_Credentials\", \"Win32_Security_Cryptography\", \"Win32_Security_Cryptography_Catalog\", \"Win32_Security_Cryptography_Certificates\", \"Win32_Security_Cryptography_Sip\", \"Win32_Security_Cryptography_UI\", \"Win32_Security_DiagnosticDataQuery\", \"Win32_Security_DirectoryServices\", \"Win32_Security_EnterpriseData\", \"Win32_Security_ExtensibleAuthenticationProtocol\", \"Win32_Security_Isolation\", \"Win32_Security_LicenseProtection\", \"Win32_Security_NetworkAccessProtection\", \"Win32_Security_WinTrust\", \"Win32_Security_WinWlx\", \"Win32_Storage\", \"Win32_Storage_Cabinets\", \"Win32_Storage_CloudFilters\", \"Win32_Storage_Compression\", \"Win32_Storage_DistributedFileSystem\", \"Win32_Storage_FileHistory\", \"Win32_Storage_FileSystem\", \"Win32_Storage_Imapi\", \"Win32_Storage_IndexServer\", \"Win32_Storage_InstallableFileSystems\", \"Win32_Storage_IscsiDisc\", \"Win32_Storage_Jet\", \"Win32_Storage_Nvme\", \"Win32_Storage_OfflineFiles\", \"Win32_Storage_OperationRecorder\", \"Win32_Storage_Packaging\", \"Win32_Storage_Packaging_Appx\", \"Win32_Storage_ProjectedFileSystem\", \"Win32_Storage_StructuredStorage\", \"Win32_Storage_Vhd\", \"Win32_Storage_Xps\", \"Win32_System\", \"Win32_System_AddressBook\", \"Win32_System_Antimalware\", \"Win32_System_ApplicationInstallationAndServicing\", \"Win32_System_ApplicationVerifier\", \"Win32_System_ClrHosting\", \"Win32_System_Com\", \"Win32_System_Com_Marshal\", \"Win32_System_Com_StructuredStorage\", \"Win32_System_Com_Urlmon\", \"Win32_System_ComponentServices\", \"Win32_System_Console\", \"Win32_System_CorrelationVector\", \"Win32_System_DataExchange\", \"Win32_System_DeploymentServices\", \"Win32_System_DeveloperLicensing\", \"Win32_System_Diagnostics\", \"Win32_System_Diagnostics_Ceip\", \"Win32_System_Diagnostics_Debug\", \"Win32_System_Diagnostics_Debug_Extensions\", \"Win32_System_Diagnostics_Etw\", \"Win32_System_Diagnostics_ProcessSnapshotting\", \"Win32_System_Diagnostics_ToolHelp\", \"Win32_System_Diagnostics_TraceLogging\", \"Win32_System_DistributedTransactionCoordinator\", \"Win32_System_Environment\", \"Win32_System_ErrorReporting\", \"Win32_System_EventCollector\", \"Win32_System_EventLog\", \"Win32_System_EventNotificationService\", \"Win32_System_GroupPolicy\", \"Win32_System_HostCompute\", \"Win32_System_HostComputeNetwork\", \"Win32_System_HostComputeSystem\", \"Win32_System_Hypervisor\", \"Win32_System_IO\", \"Win32_System_Iis\", \"Win32_System_Ioctl\", \"Win32_System_JobObjects\", \"Win32_System_Js\", \"Win32_System_Kernel\", \"Win32_System_LibraryLoader\", \"Win32_System_Mailslots\", \"Win32_System_Mapi\", \"Win32_System_Memory\", \"Win32_System_Memory_NonVolatile\", \"Win32_System_MessageQueuing\", \"Win32_System_MixedReality\", \"Win32_System_Ole\", \"Win32_System_PasswordManagement\", \"Win32_System_Performance\", \"Win32_System_Performance_HardwareCounterProfiling\", \"Win32_System_Pipes\", \"Win32_System_Power\", \"Win32_System_ProcessStatus\", \"Win32_System_Recovery\", \"Win32_System_Registry\", \"Win32_System_RemoteDesktop\", \"Win32_System_RemoteManagement\", \"Win32_System_RestartManager\", \"Win32_System_Restore\", \"Win32_System_Rpc\", \"Win32_System_Search\", \"Win32_System_Search_Common\", \"Win32_System_SecurityCenter\", \"Win32_System_Services\", \"Win32_System_SetupAndMigration\", \"Win32_System_Shutdown\", \"Win32_System_StationsAndDesktops\", \"Win32_System_SubsystemForLinux\", \"Win32_System_SystemInformation\", \"Win32_System_SystemServices\", \"Win32_System_Threading\", \"Win32_System_Time\", \"Win32_System_TpmBaseServices\", \"Win32_System_UserAccessLogging\", \"Win32_System_Variant\", \"Win32_System_VirtualDosMachines\", \"Win32_System_WindowsProgramming\", \"Win32_System_Wmi\", \"Win32_UI\", \"Win32_UI_Accessibility\", \"Win32_UI_ColorSystem\", \"Win32_UI_Controls\", \"Win32_UI_Controls_Dialogs\", \"Win32_UI_HiDpi\", \"Win32_UI_Input\", \"Win32_UI_Input_Ime\", \"Win32_UI_Input_KeyboardAndMouse\", \"Win32_UI_Input_Pointer\", \"Win32_UI_Input_Touch\", \"Win32_UI_Input_XboxController\", \"Win32_UI_InteractionContext\", \"Win32_UI_Magnification\", \"Win32_UI_Shell\", \"Win32_UI_Shell_Common\", \"Win32_UI_Shell_PropertiesSystem\", \"Win32_UI_TabletPC\", \"Win32_UI_TextServices\", \"Win32_UI_WindowsAndMessaging\", \"Win32_Web\", \"Win32_Web_InternetExplorer\", \"default\", \"docs\"]","target":7306158158326771440,"profile":10185594453327162546,"path":5824035091416552150,"deps":[[14322346790800707264,"windows_targets",false,11251342177659508575]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-sys-ac534c6385fd8781\\dep-lib-windows_sys","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-d274d322ec15ad73/dep-lib-windows_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-d274d322ec15ad73/dep-lib-windows_sys new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-d274d322ec15ad73/dep-lib-windows_sys differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-d274d322ec15ad73/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-d274d322ec15ad73/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-d274d322ec15ad73/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-d274d322ec15ad73/lib-windows_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-d274d322ec15ad73/lib-windows_sys new file mode 100644 index 000000000..1d720555a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-d274d322ec15ad73/lib-windows_sys @@ -0,0 +1 @@ +097a9b7ce1df1e47 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-d274d322ec15ad73/lib-windows_sys.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-d274d322ec15ad73/lib-windows_sys.json new file mode 100644 index 000000000..752edb95c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-d274d322ec15ad73/lib-windows_sys.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"Win32\", \"Win32_Foundation\", \"Win32_Globalization\", \"Win32_Graphics\", \"Win32_Graphics_Gdi\", \"Win32_Storage\", \"Win32_Storage_FileSystem\", \"Win32_System\", \"Win32_System_Com\", \"Win32_System_Console\", \"Win32_System_SystemInformation\", \"Win32_UI\", \"Win32_UI_Shell\", \"Win32_UI_WindowsAndMessaging\", \"default\"]","declared_features":"[\"Wdk\", \"Wdk_Devices\", \"Wdk_Devices_Bluetooth\", \"Wdk_Devices_HumanInterfaceDevice\", \"Wdk_Foundation\", \"Wdk_Graphics\", \"Wdk_Graphics_Direct3D\", \"Wdk_NetworkManagement\", \"Wdk_NetworkManagement_Ndis\", \"Wdk_NetworkManagement_WindowsFilteringPlatform\", \"Wdk_Storage\", \"Wdk_Storage_FileSystem\", \"Wdk_Storage_FileSystem_Minifilters\", \"Wdk_System\", \"Wdk_System_IO\", \"Wdk_System_Memory\", \"Wdk_System_OfflineRegistry\", \"Wdk_System_Registry\", \"Wdk_System_SystemInformation\", \"Wdk_System_SystemServices\", \"Wdk_System_Threading\", \"Win32\", \"Win32_Data\", \"Win32_Data_HtmlHelp\", \"Win32_Data_RightsManagement\", \"Win32_Devices\", \"Win32_Devices_AllJoyn\", \"Win32_Devices_Beep\", \"Win32_Devices_BiometricFramework\", \"Win32_Devices_Bluetooth\", \"Win32_Devices_Cdrom\", \"Win32_Devices_Communication\", \"Win32_Devices_DeviceAndDriverInstallation\", \"Win32_Devices_DeviceQuery\", \"Win32_Devices_Display\", \"Win32_Devices_Dvd\", \"Win32_Devices_Enumeration\", \"Win32_Devices_Enumeration_Pnp\", \"Win32_Devices_Fax\", \"Win32_Devices_HumanInterfaceDevice\", \"Win32_Devices_Nfc\", \"Win32_Devices_Nfp\", \"Win32_Devices_PortableDevices\", \"Win32_Devices_Properties\", \"Win32_Devices_Pwm\", \"Win32_Devices_Sensors\", \"Win32_Devices_SerialCommunication\", \"Win32_Devices_Tapi\", \"Win32_Devices_Usb\", \"Win32_Devices_WebServicesOnDevices\", \"Win32_Foundation\", \"Win32_Gaming\", \"Win32_Globalization\", \"Win32_Graphics\", \"Win32_Graphics_Dwm\", \"Win32_Graphics_Gdi\", \"Win32_Graphics_GdiPlus\", \"Win32_Graphics_Hlsl\", \"Win32_Graphics_OpenGL\", \"Win32_Graphics_Printing\", \"Win32_Graphics_Printing_PrintTicket\", \"Win32_Management\", \"Win32_Management_MobileDeviceManagementRegistration\", \"Win32_Media\", \"Win32_Media_Audio\", \"Win32_Media_DxMediaObjects\", \"Win32_Media_KernelStreaming\", \"Win32_Media_Multimedia\", \"Win32_Media_Streaming\", \"Win32_Media_WindowsMediaFormat\", \"Win32_NetworkManagement\", \"Win32_NetworkManagement_Dhcp\", \"Win32_NetworkManagement_Dns\", \"Win32_NetworkManagement_InternetConnectionWizard\", \"Win32_NetworkManagement_IpHelper\", \"Win32_NetworkManagement_Multicast\", \"Win32_NetworkManagement_Ndis\", \"Win32_NetworkManagement_NetBios\", \"Win32_NetworkManagement_NetManagement\", \"Win32_NetworkManagement_NetShell\", \"Win32_NetworkManagement_NetworkDiagnosticsFramework\", \"Win32_NetworkManagement_P2P\", \"Win32_NetworkManagement_QoS\", \"Win32_NetworkManagement_Rras\", \"Win32_NetworkManagement_Snmp\", \"Win32_NetworkManagement_WNet\", \"Win32_NetworkManagement_WebDav\", \"Win32_NetworkManagement_WiFi\", \"Win32_NetworkManagement_WindowsConnectionManager\", \"Win32_NetworkManagement_WindowsFilteringPlatform\", \"Win32_NetworkManagement_WindowsFirewall\", \"Win32_NetworkManagement_WindowsNetworkVirtualization\", \"Win32_Networking\", \"Win32_Networking_ActiveDirectory\", \"Win32_Networking_Clustering\", \"Win32_Networking_HttpServer\", \"Win32_Networking_Ldap\", \"Win32_Networking_WebSocket\", \"Win32_Networking_WinHttp\", \"Win32_Networking_WinInet\", \"Win32_Networking_WinSock\", \"Win32_Networking_WindowsWebServices\", \"Win32_Security\", \"Win32_Security_AppLocker\", \"Win32_Security_Authentication\", \"Win32_Security_Authentication_Identity\", \"Win32_Security_Authorization\", \"Win32_Security_Credentials\", \"Win32_Security_Cryptography\", \"Win32_Security_Cryptography_Catalog\", \"Win32_Security_Cryptography_Certificates\", \"Win32_Security_Cryptography_Sip\", \"Win32_Security_Cryptography_UI\", \"Win32_Security_DiagnosticDataQuery\", \"Win32_Security_DirectoryServices\", \"Win32_Security_EnterpriseData\", \"Win32_Security_ExtensibleAuthenticationProtocol\", \"Win32_Security_Isolation\", \"Win32_Security_LicenseProtection\", \"Win32_Security_NetworkAccessProtection\", \"Win32_Security_WinTrust\", \"Win32_Security_WinWlx\", \"Win32_Storage\", \"Win32_Storage_Cabinets\", \"Win32_Storage_CloudFilters\", \"Win32_Storage_Compression\", \"Win32_Storage_DistributedFileSystem\", \"Win32_Storage_FileHistory\", \"Win32_Storage_FileSystem\", \"Win32_Storage_Imapi\", \"Win32_Storage_IndexServer\", \"Win32_Storage_InstallableFileSystems\", \"Win32_Storage_IscsiDisc\", \"Win32_Storage_Jet\", \"Win32_Storage_Nvme\", \"Win32_Storage_OfflineFiles\", \"Win32_Storage_OperationRecorder\", \"Win32_Storage_Packaging\", \"Win32_Storage_Packaging_Appx\", \"Win32_Storage_ProjectedFileSystem\", \"Win32_Storage_StructuredStorage\", \"Win32_Storage_Vhd\", \"Win32_Storage_Xps\", \"Win32_System\", \"Win32_System_AddressBook\", \"Win32_System_Antimalware\", \"Win32_System_ApplicationInstallationAndServicing\", \"Win32_System_ApplicationVerifier\", \"Win32_System_ClrHosting\", \"Win32_System_Com\", \"Win32_System_Com_Marshal\", \"Win32_System_Com_StructuredStorage\", \"Win32_System_Com_Urlmon\", \"Win32_System_ComponentServices\", \"Win32_System_Console\", \"Win32_System_CorrelationVector\", \"Win32_System_DataExchange\", \"Win32_System_DeploymentServices\", \"Win32_System_DeveloperLicensing\", \"Win32_System_Diagnostics\", \"Win32_System_Diagnostics_Ceip\", \"Win32_System_Diagnostics_Debug\", \"Win32_System_Diagnostics_Debug_Extensions\", \"Win32_System_Diagnostics_Etw\", \"Win32_System_Diagnostics_ProcessSnapshotting\", \"Win32_System_Diagnostics_ToolHelp\", \"Win32_System_Diagnostics_TraceLogging\", \"Win32_System_DistributedTransactionCoordinator\", \"Win32_System_Environment\", \"Win32_System_ErrorReporting\", \"Win32_System_EventCollector\", \"Win32_System_EventLog\", \"Win32_System_EventNotificationService\", \"Win32_System_GroupPolicy\", \"Win32_System_HostCompute\", \"Win32_System_HostComputeNetwork\", \"Win32_System_HostComputeSystem\", \"Win32_System_Hypervisor\", \"Win32_System_IO\", \"Win32_System_Iis\", \"Win32_System_Ioctl\", \"Win32_System_JobObjects\", \"Win32_System_Js\", \"Win32_System_Kernel\", \"Win32_System_LibraryLoader\", \"Win32_System_Mailslots\", \"Win32_System_Mapi\", \"Win32_System_Memory\", \"Win32_System_Memory_NonVolatile\", \"Win32_System_MessageQueuing\", \"Win32_System_MixedReality\", \"Win32_System_Ole\", \"Win32_System_PasswordManagement\", \"Win32_System_Performance\", \"Win32_System_Performance_HardwareCounterProfiling\", \"Win32_System_Pipes\", \"Win32_System_Power\", \"Win32_System_ProcessStatus\", \"Win32_System_Recovery\", \"Win32_System_Registry\", \"Win32_System_RemoteDesktop\", \"Win32_System_RemoteManagement\", \"Win32_System_RestartManager\", \"Win32_System_Restore\", \"Win32_System_Rpc\", \"Win32_System_Search\", \"Win32_System_Search_Common\", \"Win32_System_SecurityCenter\", \"Win32_System_Services\", \"Win32_System_SetupAndMigration\", \"Win32_System_Shutdown\", \"Win32_System_StationsAndDesktops\", \"Win32_System_SubsystemForLinux\", \"Win32_System_SystemInformation\", \"Win32_System_SystemServices\", \"Win32_System_Threading\", \"Win32_System_Time\", \"Win32_System_TpmBaseServices\", \"Win32_System_UserAccessLogging\", \"Win32_System_Variant\", \"Win32_System_VirtualDosMachines\", \"Win32_System_WindowsProgramming\", \"Win32_System_Wmi\", \"Win32_UI\", \"Win32_UI_Accessibility\", \"Win32_UI_ColorSystem\", \"Win32_UI_Controls\", \"Win32_UI_Controls_Dialogs\", \"Win32_UI_HiDpi\", \"Win32_UI_Input\", \"Win32_UI_Input_Ime\", \"Win32_UI_Input_KeyboardAndMouse\", \"Win32_UI_Input_Pointer\", \"Win32_UI_Input_Touch\", \"Win32_UI_Input_XboxController\", \"Win32_UI_InteractionContext\", \"Win32_UI_Magnification\", \"Win32_UI_Shell\", \"Win32_UI_Shell_Common\", \"Win32_UI_Shell_PropertiesSystem\", \"Win32_UI_TabletPC\", \"Win32_UI_TextServices\", \"Win32_UI_WindowsAndMessaging\", \"Win32_Web\", \"Win32_Web_InternetExplorer\", \"default\", \"docs\"]","target":7306158158326771440,"profile":14508822251238124762,"path":5382477338205264701,"deps":[[6959378045035346538,"windows_link",false,8477498329638799626]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-sys-d274d322ec15ad73\\dep-lib-windows_sys","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-eceeeb334ee816fd/dep-lib-windows_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-eceeeb334ee816fd/dep-lib-windows_sys new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-eceeeb334ee816fd/dep-lib-windows_sys differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-eceeeb334ee816fd/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-eceeeb334ee816fd/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-eceeeb334ee816fd/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-eceeeb334ee816fd/lib-windows_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-eceeeb334ee816fd/lib-windows_sys new file mode 100644 index 000000000..684a33c79 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-eceeeb334ee816fd/lib-windows_sys @@ -0,0 +1 @@ +1fe1405b20933659 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-eceeeb334ee816fd/lib-windows_sys.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-eceeeb334ee816fd/lib-windows_sys.json new file mode 100644 index 000000000..aee4f55dd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-eceeeb334ee816fd/lib-windows_sys.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"Win32\", \"Win32_Foundation\", \"Win32_Globalization\", \"Win32_Storage\", \"Win32_Storage_FileSystem\", \"Win32_System\", \"Win32_System_Com\", \"Win32_System_Console\", \"Win32_System_SystemInformation\", \"Win32_UI\", \"Win32_UI_Shell\", \"default\"]","declared_features":"[\"Wdk\", \"Wdk_Devices\", \"Wdk_Devices_Bluetooth\", \"Wdk_Devices_HumanInterfaceDevice\", \"Wdk_Foundation\", \"Wdk_Graphics\", \"Wdk_Graphics_Direct3D\", \"Wdk_NetworkManagement\", \"Wdk_NetworkManagement_Ndis\", \"Wdk_NetworkManagement_WindowsFilteringPlatform\", \"Wdk_Storage\", \"Wdk_Storage_FileSystem\", \"Wdk_Storage_FileSystem_Minifilters\", \"Wdk_System\", \"Wdk_System_IO\", \"Wdk_System_Memory\", \"Wdk_System_OfflineRegistry\", \"Wdk_System_Registry\", \"Wdk_System_SystemInformation\", \"Wdk_System_SystemServices\", \"Wdk_System_Threading\", \"Win32\", \"Win32_Data\", \"Win32_Data_HtmlHelp\", \"Win32_Data_RightsManagement\", \"Win32_Devices\", \"Win32_Devices_AllJoyn\", \"Win32_Devices_Beep\", \"Win32_Devices_BiometricFramework\", \"Win32_Devices_Bluetooth\", \"Win32_Devices_Cdrom\", \"Win32_Devices_Communication\", \"Win32_Devices_DeviceAndDriverInstallation\", \"Win32_Devices_DeviceQuery\", \"Win32_Devices_Display\", \"Win32_Devices_Dvd\", \"Win32_Devices_Enumeration\", \"Win32_Devices_Enumeration_Pnp\", \"Win32_Devices_Fax\", \"Win32_Devices_HumanInterfaceDevice\", \"Win32_Devices_Nfc\", \"Win32_Devices_Nfp\", \"Win32_Devices_PortableDevices\", \"Win32_Devices_Properties\", \"Win32_Devices_Pwm\", \"Win32_Devices_Sensors\", \"Win32_Devices_SerialCommunication\", \"Win32_Devices_Tapi\", \"Win32_Devices_Usb\", \"Win32_Devices_WebServicesOnDevices\", \"Win32_Foundation\", \"Win32_Gaming\", \"Win32_Globalization\", \"Win32_Graphics\", \"Win32_Graphics_Dwm\", \"Win32_Graphics_Gdi\", \"Win32_Graphics_GdiPlus\", \"Win32_Graphics_Hlsl\", \"Win32_Graphics_OpenGL\", \"Win32_Graphics_Printing\", \"Win32_Graphics_Printing_PrintTicket\", \"Win32_Management\", \"Win32_Management_MobileDeviceManagementRegistration\", \"Win32_Media\", \"Win32_Media_Audio\", \"Win32_Media_DxMediaObjects\", \"Win32_Media_KernelStreaming\", \"Win32_Media_Multimedia\", \"Win32_Media_Streaming\", \"Win32_Media_WindowsMediaFormat\", \"Win32_NetworkManagement\", \"Win32_NetworkManagement_Dhcp\", \"Win32_NetworkManagement_Dns\", \"Win32_NetworkManagement_InternetConnectionWizard\", \"Win32_NetworkManagement_IpHelper\", \"Win32_NetworkManagement_Multicast\", \"Win32_NetworkManagement_Ndis\", \"Win32_NetworkManagement_NetBios\", \"Win32_NetworkManagement_NetManagement\", \"Win32_NetworkManagement_NetShell\", \"Win32_NetworkManagement_NetworkDiagnosticsFramework\", \"Win32_NetworkManagement_P2P\", \"Win32_NetworkManagement_QoS\", \"Win32_NetworkManagement_Rras\", \"Win32_NetworkManagement_Snmp\", \"Win32_NetworkManagement_WNet\", \"Win32_NetworkManagement_WebDav\", \"Win32_NetworkManagement_WiFi\", \"Win32_NetworkManagement_WindowsConnectionManager\", \"Win32_NetworkManagement_WindowsFilteringPlatform\", \"Win32_NetworkManagement_WindowsFirewall\", \"Win32_NetworkManagement_WindowsNetworkVirtualization\", \"Win32_Networking\", \"Win32_Networking_ActiveDirectory\", \"Win32_Networking_Clustering\", \"Win32_Networking_HttpServer\", \"Win32_Networking_Ldap\", \"Win32_Networking_WebSocket\", \"Win32_Networking_WinHttp\", \"Win32_Networking_WinInet\", \"Win32_Networking_WinSock\", \"Win32_Networking_WindowsWebServices\", \"Win32_Security\", \"Win32_Security_AppLocker\", \"Win32_Security_Authentication\", \"Win32_Security_Authentication_Identity\", \"Win32_Security_Authorization\", \"Win32_Security_Credentials\", \"Win32_Security_Cryptography\", \"Win32_Security_Cryptography_Catalog\", \"Win32_Security_Cryptography_Certificates\", \"Win32_Security_Cryptography_Sip\", \"Win32_Security_Cryptography_UI\", \"Win32_Security_DiagnosticDataQuery\", \"Win32_Security_DirectoryServices\", \"Win32_Security_EnterpriseData\", \"Win32_Security_ExtensibleAuthenticationProtocol\", \"Win32_Security_Isolation\", \"Win32_Security_LicenseProtection\", \"Win32_Security_NetworkAccessProtection\", \"Win32_Security_WinTrust\", \"Win32_Security_WinWlx\", \"Win32_Storage\", \"Win32_Storage_Cabinets\", \"Win32_Storage_CloudFilters\", \"Win32_Storage_Compression\", \"Win32_Storage_DistributedFileSystem\", \"Win32_Storage_FileHistory\", \"Win32_Storage_FileSystem\", \"Win32_Storage_Imapi\", \"Win32_Storage_IndexServer\", \"Win32_Storage_InstallableFileSystems\", \"Win32_Storage_IscsiDisc\", \"Win32_Storage_Jet\", \"Win32_Storage_Nvme\", \"Win32_Storage_OfflineFiles\", \"Win32_Storage_OperationRecorder\", \"Win32_Storage_Packaging\", \"Win32_Storage_Packaging_Appx\", \"Win32_Storage_ProjectedFileSystem\", \"Win32_Storage_StructuredStorage\", \"Win32_Storage_Vhd\", \"Win32_Storage_Xps\", \"Win32_System\", \"Win32_System_AddressBook\", \"Win32_System_Antimalware\", \"Win32_System_ApplicationInstallationAndServicing\", \"Win32_System_ApplicationVerifier\", \"Win32_System_ClrHosting\", \"Win32_System_Com\", \"Win32_System_Com_Marshal\", \"Win32_System_Com_StructuredStorage\", \"Win32_System_Com_Urlmon\", \"Win32_System_ComponentServices\", \"Win32_System_Console\", \"Win32_System_CorrelationVector\", \"Win32_System_DataExchange\", \"Win32_System_DeploymentServices\", \"Win32_System_DeveloperLicensing\", \"Win32_System_Diagnostics\", \"Win32_System_Diagnostics_Ceip\", \"Win32_System_Diagnostics_Debug\", \"Win32_System_Diagnostics_Debug_Extensions\", \"Win32_System_Diagnostics_Etw\", \"Win32_System_Diagnostics_ProcessSnapshotting\", \"Win32_System_Diagnostics_ToolHelp\", \"Win32_System_Diagnostics_TraceLogging\", \"Win32_System_DistributedTransactionCoordinator\", \"Win32_System_Environment\", \"Win32_System_ErrorReporting\", \"Win32_System_EventCollector\", \"Win32_System_EventLog\", \"Win32_System_EventNotificationService\", \"Win32_System_GroupPolicy\", \"Win32_System_HostCompute\", \"Win32_System_HostComputeNetwork\", \"Win32_System_HostComputeSystem\", \"Win32_System_Hypervisor\", \"Win32_System_IO\", \"Win32_System_Iis\", \"Win32_System_Ioctl\", \"Win32_System_JobObjects\", \"Win32_System_Js\", \"Win32_System_Kernel\", \"Win32_System_LibraryLoader\", \"Win32_System_Mailslots\", \"Win32_System_Mapi\", \"Win32_System_Memory\", \"Win32_System_Memory_NonVolatile\", \"Win32_System_MessageQueuing\", \"Win32_System_MixedReality\", \"Win32_System_Ole\", \"Win32_System_PasswordManagement\", \"Win32_System_Performance\", \"Win32_System_Performance_HardwareCounterProfiling\", \"Win32_System_Pipes\", \"Win32_System_Power\", \"Win32_System_ProcessStatus\", \"Win32_System_Recovery\", \"Win32_System_Registry\", \"Win32_System_RemoteDesktop\", \"Win32_System_RemoteManagement\", \"Win32_System_RestartManager\", \"Win32_System_Restore\", \"Win32_System_Rpc\", \"Win32_System_Search\", \"Win32_System_Search_Common\", \"Win32_System_SecurityCenter\", \"Win32_System_Services\", \"Win32_System_SetupAndMigration\", \"Win32_System_Shutdown\", \"Win32_System_StationsAndDesktops\", \"Win32_System_SubsystemForLinux\", \"Win32_System_SystemInformation\", \"Win32_System_SystemServices\", \"Win32_System_Threading\", \"Win32_System_Time\", \"Win32_System_TpmBaseServices\", \"Win32_System_UserAccessLogging\", \"Win32_System_Variant\", \"Win32_System_VirtualDosMachines\", \"Win32_System_WindowsProgramming\", \"Win32_System_Wmi\", \"Win32_UI\", \"Win32_UI_Accessibility\", \"Win32_UI_ColorSystem\", \"Win32_UI_Controls\", \"Win32_UI_Controls_Dialogs\", \"Win32_UI_HiDpi\", \"Win32_UI_Input\", \"Win32_UI_Input_Ime\", \"Win32_UI_Input_KeyboardAndMouse\", \"Win32_UI_Input_Pointer\", \"Win32_UI_Input_Touch\", \"Win32_UI_Input_XboxController\", \"Win32_UI_InteractionContext\", \"Win32_UI_Magnification\", \"Win32_UI_Shell\", \"Win32_UI_Shell_Common\", \"Win32_UI_Shell_PropertiesSystem\", \"Win32_UI_TabletPC\", \"Win32_UI_TextServices\", \"Win32_UI_WindowsAndMessaging\", \"Win32_Web\", \"Win32_Web_InternetExplorer\", \"default\", \"docs\"]","target":7306158158326771440,"profile":15690309238241248693,"path":5382477338205264701,"deps":[[6959378045035346538,"windows_link",false,8477498329638799626]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-sys-eceeeb334ee816fd\\dep-lib-windows_sys","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ef6e3e6bc6d500c8/dep-lib-windows_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ef6e3e6bc6d500c8/dep-lib-windows_sys new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ef6e3e6bc6d500c8/dep-lib-windows_sys differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ef6e3e6bc6d500c8/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ef6e3e6bc6d500c8/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ef6e3e6bc6d500c8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ef6e3e6bc6d500c8/lib-windows_sys b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ef6e3e6bc6d500c8/lib-windows_sys new file mode 100644 index 000000000..de099f11c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ef6e3e6bc6d500c8/lib-windows_sys @@ -0,0 +1 @@ +1e2987a15e77179d \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ef6e3e6bc6d500c8/lib-windows_sys.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ef6e3e6bc6d500c8/lib-windows_sys.json new file mode 100644 index 000000000..f2db83ff5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-sys-ef6e3e6bc6d500c8/lib-windows_sys.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"Win32\", \"Win32_Foundation\", \"Win32_Security\", \"Win32_Storage\", \"Win32_Storage_FileSystem\", \"Win32_System\", \"Win32_System_Diagnostics\", \"Win32_System_Diagnostics_Debug\", \"Win32_System_Registry\", \"Win32_System_Time\", \"default\"]","declared_features":"[\"Wdk\", \"Wdk_Devices\", \"Wdk_Devices_Bluetooth\", \"Wdk_Devices_HumanInterfaceDevice\", \"Wdk_Foundation\", \"Wdk_Graphics\", \"Wdk_Graphics_Direct3D\", \"Wdk_NetworkManagement\", \"Wdk_NetworkManagement_Ndis\", \"Wdk_NetworkManagement_WindowsFilteringPlatform\", \"Wdk_Storage\", \"Wdk_Storage_FileSystem\", \"Wdk_Storage_FileSystem_Minifilters\", \"Wdk_System\", \"Wdk_System_IO\", \"Wdk_System_Memory\", \"Wdk_System_OfflineRegistry\", \"Wdk_System_Registry\", \"Wdk_System_SystemInformation\", \"Wdk_System_SystemServices\", \"Wdk_System_Threading\", \"Win32\", \"Win32_Data\", \"Win32_Data_HtmlHelp\", \"Win32_Data_RightsManagement\", \"Win32_Devices\", \"Win32_Devices_AllJoyn\", \"Win32_Devices_BiometricFramework\", \"Win32_Devices_Bluetooth\", \"Win32_Devices_Communication\", \"Win32_Devices_DeviceAndDriverInstallation\", \"Win32_Devices_DeviceQuery\", \"Win32_Devices_Display\", \"Win32_Devices_Enumeration\", \"Win32_Devices_Enumeration_Pnp\", \"Win32_Devices_Fax\", \"Win32_Devices_HumanInterfaceDevice\", \"Win32_Devices_PortableDevices\", \"Win32_Devices_Properties\", \"Win32_Devices_Pwm\", \"Win32_Devices_Sensors\", \"Win32_Devices_SerialCommunication\", \"Win32_Devices_Tapi\", \"Win32_Devices_Usb\", \"Win32_Devices_WebServicesOnDevices\", \"Win32_Foundation\", \"Win32_Gaming\", \"Win32_Globalization\", \"Win32_Graphics\", \"Win32_Graphics_Dwm\", \"Win32_Graphics_Gdi\", \"Win32_Graphics_GdiPlus\", \"Win32_Graphics_Hlsl\", \"Win32_Graphics_OpenGL\", \"Win32_Graphics_Printing\", \"Win32_Graphics_Printing_PrintTicket\", \"Win32_Management\", \"Win32_Management_MobileDeviceManagementRegistration\", \"Win32_Media\", \"Win32_Media_Audio\", \"Win32_Media_DxMediaObjects\", \"Win32_Media_KernelStreaming\", \"Win32_Media_Multimedia\", \"Win32_Media_Streaming\", \"Win32_Media_WindowsMediaFormat\", \"Win32_NetworkManagement\", \"Win32_NetworkManagement_Dhcp\", \"Win32_NetworkManagement_Dns\", \"Win32_NetworkManagement_InternetConnectionWizard\", \"Win32_NetworkManagement_IpHelper\", \"Win32_NetworkManagement_Multicast\", \"Win32_NetworkManagement_Ndis\", \"Win32_NetworkManagement_NetBios\", \"Win32_NetworkManagement_NetManagement\", \"Win32_NetworkManagement_NetShell\", \"Win32_NetworkManagement_NetworkDiagnosticsFramework\", \"Win32_NetworkManagement_P2P\", \"Win32_NetworkManagement_QoS\", \"Win32_NetworkManagement_Rras\", \"Win32_NetworkManagement_Snmp\", \"Win32_NetworkManagement_WNet\", \"Win32_NetworkManagement_WebDav\", \"Win32_NetworkManagement_WiFi\", \"Win32_NetworkManagement_WindowsConnectionManager\", \"Win32_NetworkManagement_WindowsFilteringPlatform\", \"Win32_NetworkManagement_WindowsFirewall\", \"Win32_NetworkManagement_WindowsNetworkVirtualization\", \"Win32_Networking\", \"Win32_Networking_ActiveDirectory\", \"Win32_Networking_Clustering\", \"Win32_Networking_HttpServer\", \"Win32_Networking_Ldap\", \"Win32_Networking_WebSocket\", \"Win32_Networking_WinHttp\", \"Win32_Networking_WinInet\", \"Win32_Networking_WinSock\", \"Win32_Networking_WindowsWebServices\", \"Win32_Security\", \"Win32_Security_AppLocker\", \"Win32_Security_Authentication\", \"Win32_Security_Authentication_Identity\", \"Win32_Security_Authorization\", \"Win32_Security_Credentials\", \"Win32_Security_Cryptography\", \"Win32_Security_Cryptography_Catalog\", \"Win32_Security_Cryptography_Certificates\", \"Win32_Security_Cryptography_Sip\", \"Win32_Security_Cryptography_UI\", \"Win32_Security_DiagnosticDataQuery\", \"Win32_Security_DirectoryServices\", \"Win32_Security_EnterpriseData\", \"Win32_Security_ExtensibleAuthenticationProtocol\", \"Win32_Security_Isolation\", \"Win32_Security_LicenseProtection\", \"Win32_Security_NetworkAccessProtection\", \"Win32_Security_WinTrust\", \"Win32_Security_WinWlx\", \"Win32_Storage\", \"Win32_Storage_Cabinets\", \"Win32_Storage_CloudFilters\", \"Win32_Storage_Compression\", \"Win32_Storage_DistributedFileSystem\", \"Win32_Storage_FileHistory\", \"Win32_Storage_FileSystem\", \"Win32_Storage_Imapi\", \"Win32_Storage_IndexServer\", \"Win32_Storage_InstallableFileSystems\", \"Win32_Storage_IscsiDisc\", \"Win32_Storage_Jet\", \"Win32_Storage_Nvme\", \"Win32_Storage_OfflineFiles\", \"Win32_Storage_OperationRecorder\", \"Win32_Storage_Packaging\", \"Win32_Storage_Packaging_Appx\", \"Win32_Storage_ProjectedFileSystem\", \"Win32_Storage_StructuredStorage\", \"Win32_Storage_Vhd\", \"Win32_Storage_Xps\", \"Win32_System\", \"Win32_System_AddressBook\", \"Win32_System_Antimalware\", \"Win32_System_ApplicationInstallationAndServicing\", \"Win32_System_ApplicationVerifier\", \"Win32_System_ClrHosting\", \"Win32_System_Com\", \"Win32_System_Com_Marshal\", \"Win32_System_Com_StructuredStorage\", \"Win32_System_Com_Urlmon\", \"Win32_System_ComponentServices\", \"Win32_System_Console\", \"Win32_System_CorrelationVector\", \"Win32_System_DataExchange\", \"Win32_System_DeploymentServices\", \"Win32_System_DeveloperLicensing\", \"Win32_System_Diagnostics\", \"Win32_System_Diagnostics_Ceip\", \"Win32_System_Diagnostics_Debug\", \"Win32_System_Diagnostics_Debug_Extensions\", \"Win32_System_Diagnostics_Etw\", \"Win32_System_Diagnostics_ProcessSnapshotting\", \"Win32_System_Diagnostics_ToolHelp\", \"Win32_System_Diagnostics_TraceLogging\", \"Win32_System_DistributedTransactionCoordinator\", \"Win32_System_Environment\", \"Win32_System_ErrorReporting\", \"Win32_System_EventCollector\", \"Win32_System_EventLog\", \"Win32_System_EventNotificationService\", \"Win32_System_GroupPolicy\", \"Win32_System_HostCompute\", \"Win32_System_HostComputeNetwork\", \"Win32_System_HostComputeSystem\", \"Win32_System_Hypervisor\", \"Win32_System_IO\", \"Win32_System_Iis\", \"Win32_System_Ioctl\", \"Win32_System_JobObjects\", \"Win32_System_Js\", \"Win32_System_Kernel\", \"Win32_System_LibraryLoader\", \"Win32_System_Mailslots\", \"Win32_System_Mapi\", \"Win32_System_Memory\", \"Win32_System_Memory_NonVolatile\", \"Win32_System_MessageQueuing\", \"Win32_System_MixedReality\", \"Win32_System_Ole\", \"Win32_System_PasswordManagement\", \"Win32_System_Performance\", \"Win32_System_Performance_HardwareCounterProfiling\", \"Win32_System_Pipes\", \"Win32_System_Power\", \"Win32_System_ProcessStatus\", \"Win32_System_Recovery\", \"Win32_System_Registry\", \"Win32_System_RemoteDesktop\", \"Win32_System_RemoteManagement\", \"Win32_System_RestartManager\", \"Win32_System_Restore\", \"Win32_System_Rpc\", \"Win32_System_Search\", \"Win32_System_Search_Common\", \"Win32_System_SecurityCenter\", \"Win32_System_Services\", \"Win32_System_SetupAndMigration\", \"Win32_System_Shutdown\", \"Win32_System_StationsAndDesktops\", \"Win32_System_SubsystemForLinux\", \"Win32_System_SystemInformation\", \"Win32_System_SystemServices\", \"Win32_System_Threading\", \"Win32_System_Time\", \"Win32_System_TpmBaseServices\", \"Win32_System_UserAccessLogging\", \"Win32_System_Variant\", \"Win32_System_VirtualDosMachines\", \"Win32_System_WindowsProgramming\", \"Win32_System_Wmi\", \"Win32_UI\", \"Win32_UI_Accessibility\", \"Win32_UI_ColorSystem\", \"Win32_UI_Controls\", \"Win32_UI_Controls_Dialogs\", \"Win32_UI_HiDpi\", \"Win32_UI_Input\", \"Win32_UI_Input_Ime\", \"Win32_UI_Input_KeyboardAndMouse\", \"Win32_UI_Input_Pointer\", \"Win32_UI_Input_Touch\", \"Win32_UI_Input_XboxController\", \"Win32_UI_InteractionContext\", \"Win32_UI_Magnification\", \"Win32_UI_Shell\", \"Win32_UI_Shell_Common\", \"Win32_UI_Shell_PropertiesSystem\", \"Win32_UI_TabletPC\", \"Win32_UI_TextServices\", \"Win32_UI_WindowsAndMessaging\", \"Win32_Web\", \"Win32_Web_InternetExplorer\", \"default\", \"docs\"]","target":7306158158326771440,"profile":16739268672764549369,"path":5824035091416552150,"deps":[[14322346790800707264,"windows_targets",false,11251342177659508575]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-sys-ef6e3e6bc6d500c8\\dep-lib-windows_sys","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-6c400e2acf690d50/dep-lib-windows_targets b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-6c400e2acf690d50/dep-lib-windows_targets new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-6c400e2acf690d50/dep-lib-windows_targets differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-6c400e2acf690d50/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-6c400e2acf690d50/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-6c400e2acf690d50/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-6c400e2acf690d50/lib-windows_targets b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-6c400e2acf690d50/lib-windows_targets new file mode 100644 index 000000000..ed47feadc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-6c400e2acf690d50/lib-windows_targets @@ -0,0 +1 @@ +91f5c4cedd7dce83 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-6c400e2acf690d50/lib-windows_targets.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-6c400e2acf690d50/lib-windows_targets.json new file mode 100644 index 000000000..4024e2012 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-6c400e2acf690d50/lib-windows_targets.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":12110220207092481134,"profile":14508822251238124762,"path":11530926118707094506,"deps":[[4937765985372346599,"windows_x86_64_msvc",false,16551663573366921834]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-targets-6c400e2acf690d50\\dep-lib-windows_targets","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-bfad33bd630c1b3c/dep-lib-windows_targets b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-bfad33bd630c1b3c/dep-lib-windows_targets new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-bfad33bd630c1b3c/dep-lib-windows_targets differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-bfad33bd630c1b3c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-bfad33bd630c1b3c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-bfad33bd630c1b3c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-bfad33bd630c1b3c/lib-windows_targets b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-bfad33bd630c1b3c/lib-windows_targets new file mode 100644 index 000000000..c0d99046f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-bfad33bd630c1b3c/lib-windows_targets @@ -0,0 +1 @@ +5fd7c33119cc249c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-bfad33bd630c1b3c/lib-windows_targets.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-bfad33bd630c1b3c/lib-windows_targets.json new file mode 100644 index 000000000..711b521e1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-targets-bfad33bd630c1b3c/lib-windows_targets.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":12110220207092481134,"profile":10185594453327162546,"path":8515527957405245164,"deps":[[6520462792382062950,"windows_x86_64_msvc",false,12598699226328211274]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-targets-bfad33bd630c1b3c\\dep-lib-windows_targets","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-threading-4ee95c7ec942a061/dep-lib-windows_threading b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-threading-4ee95c7ec942a061/dep-lib-windows_threading new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-threading-4ee95c7ec942a061/dep-lib-windows_threading differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-threading-4ee95c7ec942a061/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-threading-4ee95c7ec942a061/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-threading-4ee95c7ec942a061/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-threading-4ee95c7ec942a061/lib-windows_threading b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-threading-4ee95c7ec942a061/lib-windows_threading new file mode 100644 index 000000000..09ec00057 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-threading-4ee95c7ec942a061/lib-windows_threading @@ -0,0 +1 @@ +f4891c64b5626eba \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-threading-4ee95c7ec942a061/lib-windows_threading.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-threading-4ee95c7ec942a061/lib-windows_threading.json new file mode 100644 index 000000000..f10f8b8cf --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-threading-4ee95c7ec942a061/lib-windows_threading.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":15560764667452110620,"profile":15657897354478470176,"path":13786735769815958735,"deps":[[11505586985402185701,"windows_link",false,16060276076010020214]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-threading-4ee95c7ec942a061\\dep-lib-windows_threading","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-version-ff1c0733db983b30/dep-lib-windows_version b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-version-ff1c0733db983b30/dep-lib-windows_version new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-version-ff1c0733db983b30/dep-lib-windows_version differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-version-ff1c0733db983b30/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-version-ff1c0733db983b30/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-version-ff1c0733db983b30/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-version-ff1c0733db983b30/lib-windows_version b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-version-ff1c0733db983b30/lib-windows_version new file mode 100644 index 000000000..9cda79d94 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-version-ff1c0733db983b30/lib-windows_version @@ -0,0 +1 @@ +cbb1257cc3c9ed94 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-version-ff1c0733db983b30/lib-windows_version.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-version-ff1c0733db983b30/lib-windows_version.json new file mode 100644 index 000000000..757192590 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows-version-ff1c0733db983b30/lib-windows_version.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":1968241332739449982,"profile":14508822251238124762,"path":14532465039175036794,"deps":[[6959378045035346538,"windows_link",false,8477498329638799626]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows-version-ff1c0733db983b30\\dep-lib-windows_version","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-21d5b550e6be9f77/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-21d5b550e6be9f77/build-script-build-script-build new file mode 100644 index 000000000..9900d8ccb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-21d5b550e6be9f77/build-script-build-script-build @@ -0,0 +1 @@ +1f8e0b18f429d88e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-21d5b550e6be9f77/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-21d5b550e6be9f77/build-script-build-script-build.json new file mode 100644 index 000000000..df8906b17 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-21d5b550e6be9f77/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":15690309238241248693,"path":12830368344190948799,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows_x86_64_msvc-21d5b550e6be9f77\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-21d5b550e6be9f77/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-21d5b550e6be9f77/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-21d5b550e6be9f77/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-21d5b550e6be9f77/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-21d5b550e6be9f77/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-21d5b550e6be9f77/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-38540bf3181b7a31/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-38540bf3181b7a31/build-script-build-script-build new file mode 100644 index 000000000..ad8c9b711 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-38540bf3181b7a31/build-script-build-script-build @@ -0,0 +1 @@ +14bc915be639bd95 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-38540bf3181b7a31/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-38540bf3181b7a31/build-script-build-script-build.json new file mode 100644 index 000000000..cf453f5b6 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-38540bf3181b7a31/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":5408242616063297496,"profile":2225463790103693989,"path":16187764336523500569,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows_x86_64_msvc-38540bf3181b7a31\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-38540bf3181b7a31/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-38540bf3181b7a31/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-38540bf3181b7a31/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-38540bf3181b7a31/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-38540bf3181b7a31/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-38540bf3181b7a31/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-3b036064a14243f2/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-3b036064a14243f2/run-build-script-build-script-build new file mode 100644 index 000000000..42da1827b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-3b036064a14243f2/run-build-script-build-script-build @@ -0,0 +1 @@ +670e87c2ceeed84c \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-3b036064a14243f2/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-3b036064a14243f2/run-build-script-build-script-build.json new file mode 100644 index 000000000..2c3170811 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-3b036064a14243f2/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[6520462792382062950,"build_script_build",false,10789843943791115284]],"local":[{"Precalculated":"0.52.6"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-638dd05bdfa4b60c/dep-lib-windows_x86_64_msvc b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-638dd05bdfa4b60c/dep-lib-windows_x86_64_msvc new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-638dd05bdfa4b60c/dep-lib-windows_x86_64_msvc differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-638dd05bdfa4b60c/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-638dd05bdfa4b60c/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-638dd05bdfa4b60c/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-638dd05bdfa4b60c/lib-windows_x86_64_msvc b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-638dd05bdfa4b60c/lib-windows_x86_64_msvc new file mode 100644 index 000000000..d7cb191db --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-638dd05bdfa4b60c/lib-windows_x86_64_msvc @@ -0,0 +1 @@ +4a1f48113292d7ae \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-638dd05bdfa4b60c/lib-windows_x86_64_msvc.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-638dd05bdfa4b60c/lib-windows_x86_64_msvc.json new file mode 100644 index 000000000..1a8612542 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-638dd05bdfa4b60c/lib-windows_x86_64_msvc.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":3306771437825829530,"profile":15657897354478470176,"path":16467492586371820476,"deps":[[6520462792382062950,"build_script_build",false,5537438313646329447]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows_x86_64_msvc-638dd05bdfa4b60c\\dep-lib-windows_x86_64_msvc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-c436b3094bd0c174/dep-lib-windows_x86_64_msvc b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-c436b3094bd0c174/dep-lib-windows_x86_64_msvc new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-c436b3094bd0c174/dep-lib-windows_x86_64_msvc differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-c436b3094bd0c174/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-c436b3094bd0c174/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-c436b3094bd0c174/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-c436b3094bd0c174/lib-windows_x86_64_msvc b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-c436b3094bd0c174/lib-windows_x86_64_msvc new file mode 100644 index 000000000..1c75e1c68 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-c436b3094bd0c174/lib-windows_x86_64_msvc @@ -0,0 +1 @@ +6ada4e545352b3e5 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-c436b3094bd0c174/lib-windows_x86_64_msvc.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-c436b3094bd0c174/lib-windows_x86_64_msvc.json new file mode 100644 index 000000000..5f7ebb56c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-c436b3094bd0c174/lib-windows_x86_64_msvc.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":3306771437825829530,"profile":14508822251238124762,"path":420301890418029415,"deps":[[4937765985372346599,"build_script_build",false,10496174476730450083]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\windows_x86_64_msvc-c436b3094bd0c174\\dep-lib-windows_x86_64_msvc","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-cad928dbe54d46bb/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-cad928dbe54d46bb/run-build-script-build-script-build new file mode 100644 index 000000000..35be33909 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-cad928dbe54d46bb/run-build-script-build-script-build @@ -0,0 +1 @@ +a3400a5213e7a991 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-cad928dbe54d46bb/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-cad928dbe54d46bb/run-build-script-build-script-build.json new file mode 100644 index 000000000..19a086af2 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/windows_x86_64_msvc-cad928dbe54d46bb/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[4937765985372346599,"build_script_build",false,10293023076707438111]],"local":[{"Precalculated":"0.53.1"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winnow-1effec3731633717/dep-lib-winnow b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winnow-1effec3731633717/dep-lib-winnow new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winnow-1effec3731633717/dep-lib-winnow differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winnow-1effec3731633717/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winnow-1effec3731633717/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winnow-1effec3731633717/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winnow-1effec3731633717/lib-winnow b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winnow-1effec3731633717/lib-winnow new file mode 100644 index 000000000..ea46cb763 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winnow-1effec3731633717/lib-winnow @@ -0,0 +1 @@ +4ee6cbd32b50706d \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winnow-1effec3731633717/lib-winnow.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winnow-1effec3731633717/lib-winnow.json new file mode 100644 index 000000000..03951de5f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winnow-1effec3731633717/lib-winnow.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"alloc\", \"debug\", \"default\", \"simd\", \"std\", \"unstable-doc\", \"unstable-recover\"]","target":13376497836617006023,"profile":14674408568762635374,"path":18127195396192489154,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\winnow-1effec3731633717\\dep-lib-winnow","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winreg-97c3f43bbd41dbce/dep-lib-winreg b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winreg-97c3f43bbd41dbce/dep-lib-winreg new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winreg-97c3f43bbd41dbce/dep-lib-winreg differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winreg-97c3f43bbd41dbce/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winreg-97c3f43bbd41dbce/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winreg-97c3f43bbd41dbce/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winreg-97c3f43bbd41dbce/lib-winreg b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winreg-97c3f43bbd41dbce/lib-winreg new file mode 100644 index 000000000..97deef64c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winreg-97c3f43bbd41dbce/lib-winreg @@ -0,0 +1 @@ +4c9e56169761de5f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winreg-97c3f43bbd41dbce/lib-winreg.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winreg-97c3f43bbd41dbce/lib-winreg.json new file mode 100644 index 000000000..52d07159f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/winreg-97c3f43bbd41dbce/lib-winreg.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"chrono\", \"serde\", \"serialization-serde\", \"transactions\"]","target":1455926537639231396,"profile":2225463790103693989,"path":6716737797365990077,"deps":[[7667230146095136825,"cfg_if",false,12313751931663862839],[10281541584571964250,"windows_sys",false,11319647436739651870]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\winreg-97c3f43bbd41dbce\\dep-lib-winreg","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/writeable-6c052438b9a0092f/dep-lib-writeable b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/writeable-6c052438b9a0092f/dep-lib-writeable new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/writeable-6c052438b9a0092f/dep-lib-writeable differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/writeable-6c052438b9a0092f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/writeable-6c052438b9a0092f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/writeable-6c052438b9a0092f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/writeable-6c052438b9a0092f/lib-writeable b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/writeable-6c052438b9a0092f/lib-writeable new file mode 100644 index 000000000..60569d1dc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/writeable-6c052438b9a0092f/lib-writeable @@ -0,0 +1 @@ +92c6db41e031e8f1 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/writeable-6c052438b9a0092f/lib-writeable.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/writeable-6c052438b9a0092f/lib-writeable.json new file mode 100644 index 000000000..651cf0c27 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/writeable-6c052438b9a0092f/lib-writeable.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"alloc\", \"default\", \"either\"]","target":6209224040855486982,"profile":15657897354478470176,"path":8218380336516824247,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\writeable-6c052438b9a0092f\\dep-lib-writeable","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-2a7a6a44f8f6a36f/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-2a7a6a44f8f6a36f/run-build-script-build-script-build new file mode 100644 index 000000000..17c3d362c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-2a7a6a44f8f6a36f/run-build-script-build-script-build @@ -0,0 +1 @@ +d15c874d7b6b38f7 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-2a7a6a44f8f6a36f/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-2a7a6a44f8f6a36f/run-build-script-build-script-build.json new file mode 100644 index 000000000..94e86b601 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-2a7a6a44f8f6a36f/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[16786561127329063945,"build_script_build",false,15489103801173335007]],"local":[{"Precalculated":"0.54.2"}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-405d294a96babff5/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-405d294a96babff5/build-script-build-script-build new file mode 100644 index 000000000..22ed7f346 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-405d294a96babff5/build-script-build-script-build @@ -0,0 +1 @@ +dfdb16a6d759f4d6 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-405d294a96babff5/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-405d294a96babff5/build-script-build-script-build.json new file mode 100644 index 000000000..0e35551bd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-405d294a96babff5/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"drag-drop\", \"gdkx11\", \"javascriptcore-rs\", \"linux-body\", \"os-webview\", \"protocol\", \"soup3\", \"webkit2gtk\", \"webkit2gtk-sys\", \"x11\", \"x11-dl\"]","declared_features":"[\"default\", \"devtools\", \"drag-drop\", \"fullscreen\", \"gdkx11\", \"javascriptcore-rs\", \"linux-body\", \"mac-proxy\", \"os-webview\", \"protocol\", \"serde\", \"soup3\", \"tracing\", \"transparent\", \"webkit2gtk\", \"webkit2gtk-sys\", \"x11\", \"x11-dl\"]","target":5408242616063297496,"profile":13277125065115479800,"path":5095756950201492641,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\wry-405d294a96babff5\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-405d294a96babff5/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-405d294a96babff5/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-405d294a96babff5/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-405d294a96babff5/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-405d294a96babff5/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-405d294a96babff5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-81516ae7fcac8a41/dep-lib-wry b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-81516ae7fcac8a41/dep-lib-wry new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-81516ae7fcac8a41/dep-lib-wry differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-81516ae7fcac8a41/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-81516ae7fcac8a41/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-81516ae7fcac8a41/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-81516ae7fcac8a41/lib-wry b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-81516ae7fcac8a41/lib-wry new file mode 100644 index 000000000..f61e753fd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-81516ae7fcac8a41/lib-wry @@ -0,0 +1 @@ +9e5b0bb1d5e1bd2b \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-81516ae7fcac8a41/lib-wry.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-81516ae7fcac8a41/lib-wry.json new file mode 100644 index 000000000..160009c2f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/wry-81516ae7fcac8a41/lib-wry.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"drag-drop\", \"gdkx11\", \"javascriptcore-rs\", \"linux-body\", \"os-webview\", \"protocol\", \"soup3\", \"webkit2gtk\", \"webkit2gtk-sys\", \"x11\", \"x11-dl\"]","declared_features":"[\"default\", \"devtools\", \"drag-drop\", \"fullscreen\", \"gdkx11\", \"javascriptcore-rs\", \"linux-body\", \"mac-proxy\", \"os-webview\", \"protocol\", \"serde\", \"soup3\", \"tracing\", \"transparent\", \"webkit2gtk\", \"webkit2gtk-sys\", \"x11\", \"x11-dl\"]","target":2463569863749872413,"profile":11987593577772629573,"path":8244526133667248560,"deps":[[2448563160050429386,"thiserror",false,11087210622057152061],[2620434475832828286,"http",false,9068168327974485296],[3722963349756955755,"once_cell",false,12341109524702844370],[4143744114649553716,"raw_window_handle",false,15731530099593162238],[5628259161083531273,"windows_core",false,1564442099389724938],[7606335748176206944,"dpi",false,9362547875939283471],[10781831454009427734,"webview2_com",false,5091479544109681465],[11989259058781683633,"dunce",false,18279171911562756100],[13129119782722264640,"windows_version",false,10731455328532410827],[14585479307175734061,"windows",false,3415978176206528813],[16727543399706004146,"cookie",false,13525943706754713949],[16786561127329063945,"build_script_build",false,17814106503389863121]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\wry-81516ae7fcac8a41\\dep-lib-wry","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-46708d6248432a0f/dep-lib-yoke b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-46708d6248432a0f/dep-lib-yoke new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-46708d6248432a0f/dep-lib-yoke differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-46708d6248432a0f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-46708d6248432a0f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-46708d6248432a0f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-46708d6248432a0f/lib-yoke b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-46708d6248432a0f/lib-yoke new file mode 100644 index 000000000..a648d5bfc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-46708d6248432a0f/lib-yoke @@ -0,0 +1 @@ +aa4f3cf85740be98 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-46708d6248432a0f/lib-yoke.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-46708d6248432a0f/lib-yoke.json new file mode 100644 index 000000000..1b3f01125 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-46708d6248432a0f/lib-yoke.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"derive\", \"zerofrom\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"serde\", \"zerofrom\"]","target":11250006364125496299,"profile":15657897354478470176,"path":5686177583491693320,"deps":[[4776946450414566059,"yoke_derive",false,3370523705755895049],[12669569555400633618,"stable_deref_trait",false,5364561953397711765],[17046516144589451410,"zerofrom",false,18431301885998871224]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\yoke-46708d6248432a0f\\dep-lib-yoke","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-64ca2420e631febc/dep-lib-yoke b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-64ca2420e631febc/dep-lib-yoke new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-64ca2420e631febc/dep-lib-yoke differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-64ca2420e631febc/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-64ca2420e631febc/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-64ca2420e631febc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-64ca2420e631febc/lib-yoke b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-64ca2420e631febc/lib-yoke new file mode 100644 index 000000000..a13d6b454 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-64ca2420e631febc/lib-yoke @@ -0,0 +1 @@ +498dfac26574ef94 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-64ca2420e631febc/lib-yoke.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-64ca2420e631febc/lib-yoke.json new file mode 100644 index 000000000..3ca9e5fa8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-64ca2420e631febc/lib-yoke.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"derive\", \"zerofrom\"]","declared_features":"[\"alloc\", \"default\", \"derive\", \"serde\", \"zerofrom\"]","target":11250006364125496299,"profile":15657897354478470176,"path":5686177583491693320,"deps":[[4776946450414566059,"yoke_derive",false,3370523705755895049],[12669569555400633618,"stable_deref_trait",false,7343225806084967440],[17046516144589451410,"zerofrom",false,18431301885998871224]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\yoke-64ca2420e631febc\\dep-lib-yoke","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-derive-887704857506bbdb/dep-lib-yoke_derive b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-derive-887704857506bbdb/dep-lib-yoke_derive new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-derive-887704857506bbdb/dep-lib-yoke_derive differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-derive-887704857506bbdb/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-derive-887704857506bbdb/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-derive-887704857506bbdb/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-derive-887704857506bbdb/lib-yoke_derive b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-derive-887704857506bbdb/lib-yoke_derive new file mode 100644 index 000000000..fddb00a85 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-derive-887704857506bbdb/lib-yoke_derive @@ -0,0 +1 @@ +09059ddc7381c62e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-derive-887704857506bbdb/lib-yoke_derive.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-derive-887704857506bbdb/lib-yoke_derive.json new file mode 100644 index 000000000..9159c1643 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/yoke-derive-887704857506bbdb/lib-yoke_derive.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":1654536213780382264,"profile":2225463790103693989,"path":12119813010930565386,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[4621990586401870511,"synstructure",false,12357840399004361759],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\yoke-derive-887704857506bbdb\\dep-lib-yoke_derive","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-92570a0aa4c40403/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-92570a0aa4c40403/build-script-build-script-build new file mode 100644 index 000000000..fe1781943 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-92570a0aa4c40403/build-script-build-script-build @@ -0,0 +1 @@ +44d9cc55f06ce9de \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-92570a0aa4c40403/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-92570a0aa4c40403/build-script-build-script-build.json new file mode 100644 index 000000000..7183c2a1a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-92570a0aa4c40403/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":5408242616063297496,"profile":2225463790103693989,"path":6140992732385523701,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\zerocopy-92570a0aa4c40403\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-92570a0aa4c40403/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-92570a0aa4c40403/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-92570a0aa4c40403/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-92570a0aa4c40403/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-92570a0aa4c40403/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-92570a0aa4c40403/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-98b71e65699af3ac/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-98b71e65699af3ac/run-build-script-build-script-build new file mode 100644 index 000000000..5ad31e189 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-98b71e65699af3ac/run-build-script-build-script-build @@ -0,0 +1 @@ +38c1b0bddf68264e \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-98b71e65699af3ac/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-98b71e65699af3ac/run-build-script-build-script-build.json new file mode 100644 index 000000000..5d6e319d4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-98b71e65699af3ac/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[17375358419629610217,"build_script_build",false,16062489325481023812]],"local":[{"RerunIfChanged":{"output":"debug\\build\\zerocopy-98b71e65699af3ac\\output","paths":["build.rs","Cargo.toml"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-c9128a39f4f973e0/dep-lib-zerocopy b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-c9128a39f4f973e0/dep-lib-zerocopy new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-c9128a39f4f973e0/dep-lib-zerocopy differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-c9128a39f4f973e0/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-c9128a39f4f973e0/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-c9128a39f4f973e0/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-c9128a39f4f973e0/lib-zerocopy b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-c9128a39f4f973e0/lib-zerocopy new file mode 100644 index 000000000..10bf0e77f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-c9128a39f4f973e0/lib-zerocopy @@ -0,0 +1 @@ +bb03982e682889f8 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-c9128a39f4f973e0/lib-zerocopy.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-c9128a39f4f973e0/lib-zerocopy.json new file mode 100644 index 000000000..7a2af3405 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerocopy-c9128a39f4f973e0/lib-zerocopy.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"simd\"]","declared_features":"[\"__internal_use_only_features_that_work_on_stable\", \"alloc\", \"derive\", \"float-nightly\", \"simd\", \"simd-nightly\", \"std\", \"zerocopy-derive\"]","target":3084901215544504908,"profile":2225463790103693989,"path":5288225100542223162,"deps":[[17375358419629610217,"build_script_build",false,5631303694242857272]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\zerocopy-c9128a39f4f973e0\\dep-lib-zerocopy","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-c16f18f2dec06756/dep-lib-zerofrom b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-c16f18f2dec06756/dep-lib-zerofrom new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-c16f18f2dec06756/dep-lib-zerofrom differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-c16f18f2dec06756/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-c16f18f2dec06756/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-c16f18f2dec06756/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-c16f18f2dec06756/lib-zerofrom b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-c16f18f2dec06756/lib-zerofrom new file mode 100644 index 000000000..96a5e0c04 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-c16f18f2dec06756/lib-zerofrom @@ -0,0 +1 @@ +b832f37e6923c9ff \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-c16f18f2dec06756/lib-zerofrom.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-c16f18f2dec06756/lib-zerofrom.json new file mode 100644 index 000000000..229ca611b --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-c16f18f2dec06756/lib-zerofrom.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"derive\"]","declared_features":"[\"alloc\", \"default\", \"derive\"]","target":723370850876025358,"profile":15657897354478470176,"path":587859947332324573,"deps":[[4022439902832367970,"zerofrom_derive",false,16593029274071509545]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\zerofrom-c16f18f2dec06756\\dep-lib-zerofrom","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-derive-dc3f8f55c3011a94/dep-lib-zerofrom_derive b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-derive-dc3f8f55c3011a94/dep-lib-zerofrom_derive new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-derive-dc3f8f55c3011a94/dep-lib-zerofrom_derive differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-derive-dc3f8f55c3011a94/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-derive-dc3f8f55c3011a94/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-derive-dc3f8f55c3011a94/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-derive-dc3f8f55c3011a94/lib-zerofrom_derive b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-derive-dc3f8f55c3011a94/lib-zerofrom_derive new file mode 100644 index 000000000..ea7c0a18d --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-derive-dc3f8f55c3011a94/lib-zerofrom_derive @@ -0,0 +1 @@ +29aab00c364846e6 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-derive-dc3f8f55c3011a94/lib-zerofrom_derive.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-derive-dc3f8f55c3011a94/lib-zerofrom_derive.json new file mode 100644 index 000000000..e8251088a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerofrom-derive-dc3f8f55c3011a94/lib-zerofrom_derive.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":1753304412232254384,"profile":2225463790103693989,"path":15639968604333575662,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[4621990586401870511,"synstructure",false,12357840399004361759],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\zerofrom-derive-dc3f8f55c3011a94\\dep-lib-zerofrom_derive","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-130b2289c25d74c2/dep-lib-zerotrie b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-130b2289c25d74c2/dep-lib-zerotrie new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-130b2289c25d74c2/dep-lib-zerotrie differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-130b2289c25d74c2/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-130b2289c25d74c2/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-130b2289c25d74c2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-130b2289c25d74c2/lib-zerotrie b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-130b2289c25d74c2/lib-zerotrie new file mode 100644 index 000000000..d2ec6e026 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-130b2289c25d74c2/lib-zerotrie @@ -0,0 +1 @@ +50ebcd6952fcc73f \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-130b2289c25d74c2/lib-zerotrie.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-130b2289c25d74c2/lib-zerotrie.json new file mode 100644 index 000000000..0d84bb6a5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-130b2289c25d74c2/lib-zerotrie.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"yoke\", \"zerofrom\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"litemap\", \"serde\", \"yoke\", \"zerofrom\", \"zerovec\"]","target":12445875338185814621,"profile":15657897354478470176,"path":17991250985063805873,"deps":[[697207654067905947,"yoke",false,10731924417458900297],[5298260564258778412,"displaydoc",false,10274559501707370894],[17046516144589451410,"zerofrom",false,18431301885998871224]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\zerotrie-130b2289c25d74c2\\dep-lib-zerotrie","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-ab31f8051a5334d2/dep-lib-zerotrie b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-ab31f8051a5334d2/dep-lib-zerotrie new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-ab31f8051a5334d2/dep-lib-zerotrie differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-ab31f8051a5334d2/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-ab31f8051a5334d2/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-ab31f8051a5334d2/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-ab31f8051a5334d2/lib-zerotrie b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-ab31f8051a5334d2/lib-zerotrie new file mode 100644 index 000000000..659171ddd --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-ab31f8051a5334d2/lib-zerotrie @@ -0,0 +1 @@ +9f692528b0c80604 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-ab31f8051a5334d2/lib-zerotrie.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-ab31f8051a5334d2/lib-zerotrie.json new file mode 100644 index 000000000..f35b5675a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerotrie-ab31f8051a5334d2/lib-zerotrie.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"yoke\", \"zerofrom\"]","declared_features":"[\"alloc\", \"databake\", \"default\", \"litemap\", \"serde\", \"yoke\", \"zerofrom\", \"zerovec\"]","target":12445875338185814621,"profile":15657897354478470176,"path":17991250985063805873,"deps":[[697207654067905947,"yoke",false,11006305285911105450],[5298260564258778412,"displaydoc",false,10274559501707370894],[17046516144589451410,"zerofrom",false,18431301885998871224]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\zerotrie-ab31f8051a5334d2\\dep-lib-zerotrie","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-d2f9dcc7e62a2ade/dep-lib-zerovec b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-d2f9dcc7e62a2ade/dep-lib-zerovec new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-d2f9dcc7e62a2ade/dep-lib-zerovec differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-d2f9dcc7e62a2ade/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-d2f9dcc7e62a2ade/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-d2f9dcc7e62a2ade/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-d2f9dcc7e62a2ade/lib-zerovec b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-d2f9dcc7e62a2ade/lib-zerovec new file mode 100644 index 000000000..7e24a6034 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-d2f9dcc7e62a2ade/lib-zerovec @@ -0,0 +1 @@ +0d4317b5ea879a8b \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-d2f9dcc7e62a2ade/lib-zerovec.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-d2f9dcc7e62a2ade/lib-zerovec.json new file mode 100644 index 000000000..3b367ce7f --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-d2f9dcc7e62a2ade/lib-zerovec.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"derive\", \"yoke\"]","declared_features":"[\"alloc\", \"databake\", \"derive\", \"hashmap\", \"serde\", \"std\", \"yoke\"]","target":1825474209729987087,"profile":15657897354478470176,"path":17002935975805673603,"deps":[[697207654067905947,"yoke",false,11006305285911105450],[6522303474648583265,"zerovec_derive",false,7175935144665625758],[17046516144589451410,"zerofrom",false,18431301885998871224]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\zerovec-d2f9dcc7e62a2ade\\dep-lib-zerovec","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-derive-e4b331a5f7213b9f/dep-lib-zerovec_derive b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-derive-e4b331a5f7213b9f/dep-lib-zerovec_derive new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-derive-e4b331a5f7213b9f/dep-lib-zerovec_derive differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-derive-e4b331a5f7213b9f/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-derive-e4b331a5f7213b9f/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-derive-e4b331a5f7213b9f/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-derive-e4b331a5f7213b9f/lib-zerovec_derive b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-derive-e4b331a5f7213b9f/lib-zerovec_derive new file mode 100644 index 000000000..22104909a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-derive-e4b331a5f7213b9f/lib-zerovec_derive @@ -0,0 +1 @@ +9e34098dfe0a9663 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-derive-e4b331a5f7213b9f/lib-zerovec_derive.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-derive-e4b331a5f7213b9f/lib-zerovec_derive.json new file mode 100644 index 000000000..c1f5c38a1 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-derive-e4b331a5f7213b9f/lib-zerovec_derive.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[]","target":14030368369369144574,"profile":2225463790103693989,"path":5494860590132910280,"deps":[[4289358735036141001,"proc_macro2",false,3635241377792335322],[10420560437213941093,"syn",false,7559193294071037429],[13111758008314797071,"quote",false,4999842116374801128]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\zerovec-derive-e4b331a5f7213b9f\\dep-lib-zerovec_derive","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-f6ea4d97059bbc69/dep-lib-zerovec b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-f6ea4d97059bbc69/dep-lib-zerovec new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-f6ea4d97059bbc69/dep-lib-zerovec differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-f6ea4d97059bbc69/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-f6ea4d97059bbc69/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-f6ea4d97059bbc69/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-f6ea4d97059bbc69/lib-zerovec b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-f6ea4d97059bbc69/lib-zerovec new file mode 100644 index 000000000..40979c75a --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-f6ea4d97059bbc69/lib-zerovec @@ -0,0 +1 @@ +c65278de007fce17 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-f6ea4d97059bbc69/lib-zerovec.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-f6ea4d97059bbc69/lib-zerovec.json new file mode 100644 index 000000000..c254d012c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zerovec-f6ea4d97059bbc69/lib-zerovec.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[\"derive\", \"yoke\"]","declared_features":"[\"alloc\", \"databake\", \"derive\", \"hashmap\", \"serde\", \"std\", \"yoke\"]","target":1825474209729987087,"profile":15657897354478470176,"path":17002935975805673603,"deps":[[697207654067905947,"yoke",false,10731924417458900297],[6522303474648583265,"zerovec_derive",false,7175935144665625758],[17046516144589451410,"zerofrom",false,18431301885998871224]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\zerovec-f6ea4d97059bbc69\\dep-lib-zerovec","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-1eccd671b92d37aa/build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-1eccd671b92d37aa/build-script-build-script-build new file mode 100644 index 000000000..5eca14c48 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-1eccd671b92d37aa/build-script-build-script-build @@ -0,0 +1 @@ +fac8c50de417acea \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-1eccd671b92d37aa/build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-1eccd671b92d37aa/build-script-build-script-build.json new file mode 100644 index 000000000..af80e7aeb --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-1eccd671b92d37aa/build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"no-panic\"]","target":5408242616063297496,"profile":2225463790103693989,"path":8907480488791645250,"deps":[],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\zmij-1eccd671b92d37aa\\dep-build-script-build-script-build","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-1eccd671b92d37aa/dep-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-1eccd671b92d37aa/dep-build-script-build-script-build new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-1eccd671b92d37aa/dep-build-script-build-script-build differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-1eccd671b92d37aa/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-1eccd671b92d37aa/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-1eccd671b92d37aa/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-8c3b467cd6d7dfae/run-build-script-build-script-build b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-8c3b467cd6d7dfae/run-build-script-build-script-build new file mode 100644 index 000000000..e1c400f9e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-8c3b467cd6d7dfae/run-build-script-build-script-build @@ -0,0 +1 @@ +b5367efef9c0db15 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-8c3b467cd6d7dfae/run-build-script-build-script-build.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-8c3b467cd6d7dfae/run-build-script-build-script-build.json new file mode 100644 index 000000000..4547037c7 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-8c3b467cd6d7dfae/run-build-script-build-script-build.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"","declared_features":"","target":0,"profile":0,"path":0,"deps":[[12347024475581975995,"build_script_build",false,16909916969120418042]],"local":[{"RerunIfChanged":{"output":"debug\\build\\zmij-8c3b467cd6d7dfae\\output","paths":["build.rs"]}}],"rustflags":[],"config":0,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-f826c7a5704d4328/dep-lib-zmij b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-f826c7a5704d4328/dep-lib-zmij new file mode 100644 index 000000000..ec3cb8bfd Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-f826c7a5704d4328/dep-lib-zmij differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-f826c7a5704d4328/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-f826c7a5704d4328/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-f826c7a5704d4328/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-f826c7a5704d4328/lib-zmij b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-f826c7a5704d4328/lib-zmij new file mode 100644 index 000000000..956c4d08c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-f826c7a5704d4328/lib-zmij @@ -0,0 +1 @@ +2000a9cef9123f82 \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-f826c7a5704d4328/lib-zmij.json b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-f826c7a5704d4328/lib-zmij.json new file mode 100644 index 000000000..d4969223c --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/.fingerprint/zmij-f826c7a5704d4328/lib-zmij.json @@ -0,0 +1 @@ +{"rustc":8323788817864214825,"features":"[]","declared_features":"[\"no-panic\"]","target":16603507647234574737,"profile":15657897354478470176,"path":13830302533372695155,"deps":[[12347024475581975995,"build_script_build",false,1575064674645194421]],"local":[{"CheckDepInfo":{"dep_info":"debug\\.fingerprint\\zmij-f826c7a5704d4328\\dep-lib-zmij","checksum":false}}],"rustflags":[],"config":2069994364910194474,"compile_kind":0} \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-a6fb742dbf592df4/build-script-build.exe b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-a6fb742dbf592df4/build-script-build.exe new file mode 100644 index 000000000..4680e8be9 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-a6fb742dbf592df4/build-script-build.exe differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-a6fb742dbf592df4/build_script_build-a6fb742dbf592df4.d b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-a6fb742dbf592df4/build_script_build-a6fb742dbf592df4.d new file mode 100644 index 000000000..5e3286367 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-a6fb742dbf592df4/build_script_build-a6fb742dbf592df4.d @@ -0,0 +1,5 @@ +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\anyhow-a6fb742dbf592df4\build_script_build-a6fb742dbf592df4.d: C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\anyhow-1.0.102\build.rs + +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\anyhow-a6fb742dbf592df4\build_script_build-a6fb742dbf592df4.exe: C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\anyhow-1.0.102\build.rs + +C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\anyhow-1.0.102\build.rs: diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-a6fb742dbf592df4/build_script_build-a6fb742dbf592df4.exe b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-a6fb742dbf592df4/build_script_build-a6fb742dbf592df4.exe new file mode 100644 index 000000000..4680e8be9 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-a6fb742dbf592df4/build_script_build-a6fb742dbf592df4.exe differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-ff7d2e6a15a69f2e/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-ff7d2e6a15a69f2e/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-ff7d2e6a15a69f2e/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-ff7d2e6a15a69f2e/output b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-ff7d2e6a15a69f2e/output new file mode 100644 index 000000000..81d9fc4f3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-ff7d2e6a15a69f2e/output @@ -0,0 +1,7 @@ +cargo:rerun-if-changed=src/nightly.rs +cargo:rerun-if-env-changed=RUSTC_BOOTSTRAP +cargo:rustc-check-cfg=cfg(anyhow_build_probe) +cargo:rustc-check-cfg=cfg(anyhow_nightly_testing) +cargo:rustc-check-cfg=cfg(anyhow_no_clippy_format_args) +cargo:rustc-check-cfg=cfg(anyhow_no_core_error) +cargo:rustc-check-cfg=cfg(error_generic_member_access) diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-ff7d2e6a15a69f2e/root-output b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-ff7d2e6a15a69f2e/root-output new file mode 100644 index 000000000..94f7083ac --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-ff7d2e6a15a69f2e/root-output @@ -0,0 +1 @@ +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\anyhow-ff7d2e6a15a69f2e\out \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-ff7d2e6a15a69f2e/stderr b/crates/tauri-plugin-splashscreen/target/debug/build/anyhow-ff7d2e6a15a69f2e/stderr new file mode 100644 index 000000000..e69de29bb diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/camino-0c4e0705d29bbab5/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/build/camino-0c4e0705d29bbab5/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/camino-0c4e0705d29bbab5/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/camino-0c4e0705d29bbab5/output b/crates/tauri-plugin-splashscreen/target/debug/build/camino-0c4e0705d29bbab5/output new file mode 100644 index 000000000..aceeeb893 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/camino-0c4e0705d29bbab5/output @@ -0,0 +1,16 @@ +cargo:rerun-if-changed=build.rs +cargo:rustc-check-cfg=cfg(doc_cfg) +cargo:rustc-check-cfg=cfg(path_buf_deref_mut) +cargo:rustc-check-cfg=cfg(try_reserve_2) +cargo:rustc-check-cfg=cfg(os_str_bytes) +cargo:rustc-check-cfg=cfg(os_string_pathbuf_leak) +cargo:rustc-check-cfg=cfg(absolute_path) +cargo:rustc-check-cfg=cfg(path_add_extension) +cargo:rustc-check-cfg=cfg(pathbuf_const_new) +cargo:rustc-cfg=try_reserve_2 +cargo:rustc-cfg=path_buf_deref_mut +cargo:rustc-cfg=os_str_bytes +cargo:rustc-cfg=absolute_path +cargo:rustc-cfg=os_string_pathbuf_leak +cargo:rustc-cfg=path_add_extension +cargo:rustc-cfg=pathbuf_const_new diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/camino-0c4e0705d29bbab5/root-output b/crates/tauri-plugin-splashscreen/target/debug/build/camino-0c4e0705d29bbab5/root-output new file mode 100644 index 000000000..2979c5fca --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/camino-0c4e0705d29bbab5/root-output @@ -0,0 +1 @@ +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\camino-0c4e0705d29bbab5\out \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/camino-0c4e0705d29bbab5/stderr b/crates/tauri-plugin-splashscreen/target/debug/build/camino-0c4e0705d29bbab5/stderr new file mode 100644 index 000000000..e69de29bb diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/camino-562a946e71c7f455/build-script-build.exe b/crates/tauri-plugin-splashscreen/target/debug/build/camino-562a946e71c7f455/build-script-build.exe new file mode 100644 index 000000000..ec0fa0db0 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/build/camino-562a946e71c7f455/build-script-build.exe differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/camino-562a946e71c7f455/build_script_build-562a946e71c7f455.d b/crates/tauri-plugin-splashscreen/target/debug/build/camino-562a946e71c7f455/build_script_build-562a946e71c7f455.d new file mode 100644 index 000000000..95ad26299 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/camino-562a946e71c7f455/build_script_build-562a946e71c7f455.d @@ -0,0 +1,5 @@ +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\camino-562a946e71c7f455\build_script_build-562a946e71c7f455.d: C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\camino-1.2.2\build.rs + +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\camino-562a946e71c7f455\build_script_build-562a946e71c7f455.exe: C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\camino-1.2.2\build.rs + +C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\camino-1.2.2\build.rs: diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/camino-562a946e71c7f455/build_script_build-562a946e71c7f455.exe b/crates/tauri-plugin-splashscreen/target/debug/build/camino-562a946e71c7f455/build_script_build-562a946e71c7f455.exe new file mode 100644 index 000000000..ec0fa0db0 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/build/camino-562a946e71c7f455/build_script_build-562a946e71c7f455.exe differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/cookie-44ca8ff62cdbace0/build-script-build.exe b/crates/tauri-plugin-splashscreen/target/debug/build/cookie-44ca8ff62cdbace0/build-script-build.exe new file mode 100644 index 000000000..bf7c56375 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/build/cookie-44ca8ff62cdbace0/build-script-build.exe differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/cookie-44ca8ff62cdbace0/build_script_build-44ca8ff62cdbace0.d b/crates/tauri-plugin-splashscreen/target/debug/build/cookie-44ca8ff62cdbace0/build_script_build-44ca8ff62cdbace0.d new file mode 100644 index 000000000..81548993e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/cookie-44ca8ff62cdbace0/build_script_build-44ca8ff62cdbace0.d @@ -0,0 +1,5 @@ +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\cookie-44ca8ff62cdbace0\build_script_build-44ca8ff62cdbace0.d: C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\cookie-0.18.1\build.rs + +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\cookie-44ca8ff62cdbace0\build_script_build-44ca8ff62cdbace0.exe: C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\cookie-0.18.1\build.rs + +C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\cookie-0.18.1\build.rs: diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/cookie-44ca8ff62cdbace0/build_script_build-44ca8ff62cdbace0.exe b/crates/tauri-plugin-splashscreen/target/debug/build/cookie-44ca8ff62cdbace0/build_script_build-44ca8ff62cdbace0.exe new file mode 100644 index 000000000..bf7c56375 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/build/cookie-44ca8ff62cdbace0/build_script_build-44ca8ff62cdbace0.exe differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/cookie-a6e069bda79c4511/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/build/cookie-a6e069bda79c4511/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/cookie-a6e069bda79c4511/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/cookie-a6e069bda79c4511/output b/crates/tauri-plugin-splashscreen/target/debug/build/cookie-a6e069bda79c4511/output new file mode 100644 index 000000000..e69de29bb diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/cookie-a6e069bda79c4511/root-output b/crates/tauri-plugin-splashscreen/target/debug/build/cookie-a6e069bda79c4511/root-output new file mode 100644 index 000000000..762c1dec5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/cookie-a6e069bda79c4511/root-output @@ -0,0 +1 @@ +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\cookie-a6e069bda79c4511\out \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/cookie-a6e069bda79c4511/stderr b/crates/tauri-plugin-splashscreen/target/debug/build/cookie-a6e069bda79c4511/stderr new file mode 100644 index 000000000..e69de29bb diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-6701f6668ce377a8/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-6701f6668ce377a8/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-6701f6668ce377a8/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-6701f6668ce377a8/output b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-6701f6668ce377a8/output new file mode 100644 index 000000000..a21ae73b4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-6701f6668ce377a8/output @@ -0,0 +1,2 @@ +cargo:rustc-cfg=stable_arm_crc32_intrinsics +cargo:rustc-check-cfg=cfg(stable_arm_crc32_intrinsics) diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-6701f6668ce377a8/root-output b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-6701f6668ce377a8/root-output new file mode 100644 index 000000000..5e84cd69e --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-6701f6668ce377a8/root-output @@ -0,0 +1 @@ +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\crc32fast-6701f6668ce377a8\out \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-6701f6668ce377a8/stderr b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-6701f6668ce377a8/stderr new file mode 100644 index 000000000..e69de29bb diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-c437355b07a76b54/build-script-build.exe b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-c437355b07a76b54/build-script-build.exe new file mode 100644 index 000000000..710c7c612 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-c437355b07a76b54/build-script-build.exe differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-c437355b07a76b54/build_script_build-c437355b07a76b54.d b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-c437355b07a76b54/build_script_build-c437355b07a76b54.d new file mode 100644 index 000000000..4db5695dc --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-c437355b07a76b54/build_script_build-c437355b07a76b54.d @@ -0,0 +1,5 @@ +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\crc32fast-c437355b07a76b54\build_script_build-c437355b07a76b54.d: C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crc32fast-1.5.0\build.rs + +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\crc32fast-c437355b07a76b54\build_script_build-c437355b07a76b54.exe: C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crc32fast-1.5.0\build.rs + +C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crc32fast-1.5.0\build.rs: diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-c437355b07a76b54/build_script_build-c437355b07a76b54.exe b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-c437355b07a76b54/build_script_build-c437355b07a76b54.exe new file mode 100644 index 000000000..710c7c612 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/build/crc32fast-c437355b07a76b54/build_script_build-c437355b07a76b54.exe differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-3ce9954fa01125cf/build-script-build.exe b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-3ce9954fa01125cf/build-script-build.exe new file mode 100644 index 000000000..1e2cc3ad9 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-3ce9954fa01125cf/build-script-build.exe differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-3ce9954fa01125cf/build_script_build-3ce9954fa01125cf.d b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-3ce9954fa01125cf/build_script_build-3ce9954fa01125cf.d new file mode 100644 index 000000000..5cea642b8 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-3ce9954fa01125cf/build_script_build-3ce9954fa01125cf.d @@ -0,0 +1,9 @@ +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\crossbeam-utils-3ce9954fa01125cf\build_script_build-3ce9954fa01125cf.d: C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\build.rs C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\no_atomic.rs C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\build-common.rs + +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\crossbeam-utils-3ce9954fa01125cf\build_script_build-3ce9954fa01125cf.exe: C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\build.rs C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\no_atomic.rs C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\build-common.rs + +C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\build.rs: +C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\no_atomic.rs: +C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\crossbeam-utils-0.8.21\build-common.rs: + +# env-dep:CARGO_PKG_NAME=crossbeam-utils diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-3ce9954fa01125cf/build_script_build-3ce9954fa01125cf.exe b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-3ce9954fa01125cf/build_script_build-3ce9954fa01125cf.exe new file mode 100644 index 000000000..1e2cc3ad9 Binary files /dev/null and b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-3ce9954fa01125cf/build_script_build-3ce9954fa01125cf.exe differ diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-e75a2593ac08ebbc/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-e75a2593ac08ebbc/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-e75a2593ac08ebbc/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-e75a2593ac08ebbc/output b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-e75a2593ac08ebbc/output new file mode 100644 index 000000000..d0bad9fd3 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-e75a2593ac08ebbc/output @@ -0,0 +1,2 @@ +cargo:rerun-if-changed=no_atomic.rs +cargo:rustc-check-cfg=cfg(crossbeam_no_atomic,crossbeam_sanitize_thread) diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-e75a2593ac08ebbc/root-output b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-e75a2593ac08ebbc/root-output new file mode 100644 index 000000000..bdf381561 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-e75a2593ac08ebbc/root-output @@ -0,0 +1 @@ +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\crossbeam-utils-e75a2593ac08ebbc\out \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-e75a2593ac08ebbc/stderr b/crates/tauri-plugin-splashscreen/target/debug/build/crossbeam-utils-e75a2593ac08ebbc/stderr new file mode 100644 index 000000000..e69de29bb diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/cssparser-afeda6e8c4222d84/build_script_build-afeda6e8c4222d84.d b/crates/tauri-plugin-splashscreen/target/debug/build/cssparser-afeda6e8c4222d84/build_script_build-afeda6e8c4222d84.d new file mode 100644 index 000000000..ca20e2357 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/cssparser-afeda6e8c4222d84/build_script_build-afeda6e8c4222d84.d @@ -0,0 +1,6 @@ +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\cssparser-afeda6e8c4222d84\build_script_build-afeda6e8c4222d84.d: C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\cssparser-0.29.6\build.rs C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\cssparser-0.29.6\build\match_byte.rs + +C:\Users\haz\dev\sable\crates\tauri-plugin-splashscreen\target\debug\build\cssparser-afeda6e8c4222d84\build_script_build-afeda6e8c4222d84.exe: C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\cssparser-0.29.6\build.rs C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\cssparser-0.29.6\build\match_byte.rs + +C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\cssparser-0.29.6\build.rs: +C:\Users\haz\.cargo\registry\src\index.crates.io-1949cf8c6b5b557f\cssparser-0.29.6\build\match_byte.rs: diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/cssparser-e497f5113bbd47c6/invoked.timestamp b/crates/tauri-plugin-splashscreen/target/debug/build/cssparser-e497f5113bbd47c6/invoked.timestamp new file mode 100644 index 000000000..e00328da5 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/cssparser-e497f5113bbd47c6/invoked.timestamp @@ -0,0 +1 @@ +This file has an mtime of when this was started. \ No newline at end of file diff --git a/crates/tauri-plugin-splashscreen/target/debug/build/cssparser-e497f5113bbd47c6/out/tokenizer.rs b/crates/tauri-plugin-splashscreen/target/debug/build/cssparser-e497f5113bbd47c6/out/tokenizer.rs new file mode 100644 index 000000000..fa01744a4 --- /dev/null +++ b/crates/tauri-plugin-splashscreen/target/debug/build/cssparser-e497f5113bbd47c6/out/tokenizer.rs @@ -0,0 +1,993 @@ +use self :: Token :: * ; use crate :: cow_rc_str :: CowRcStr ; use crate :: parser :: ParserState ; use matches :: matches ; use std :: char ; use std :: i32 ; use std :: ops :: Range ; # [doc = " One of the pieces the CSS input is broken into."] # [doc = ""] # [doc = " Some components use `Cow` in order to borrow from the original input string"] # [doc = " and avoid allocating/copying when possible."] # [derive (PartialEq , Debug , Clone)] pub enum Token < 'a > { +# [doc = " A [``](https://drafts.csswg.org/css-syntax/#ident-token-diagram)"] Ident (CowRcStr < 'a >) , # [doc = " A [``](https://drafts.csswg.org/css-syntax/#at-keyword-token-diagram)"] # [doc = ""] # [doc = " The value does not include the `@` marker."] AtKeyword (CowRcStr < 'a >) , # [doc = " A [``](https://drafts.csswg.org/css-syntax/#hash-token-diagram) with the type flag set to \"unrestricted\""] # [doc = ""] # [doc = " The value does not include the `#` marker."] Hash (CowRcStr < 'a >) , # [doc = " A [``](https://drafts.csswg.org/css-syntax/#hash-token-diagram) with the type flag set to \"id\""] # [doc = ""] # [doc = " The value does not include the `#` marker."] IDHash (CowRcStr < 'a >) , # [doc = " A [``](https://drafts.csswg.org/css-syntax/#string-token-diagram)"] # [doc = ""] # [doc = " The value does not include the quotes."] QuotedString (CowRcStr < 'a >) , # [doc = " A [``](https://drafts.csswg.org/css-syntax/#url-token-diagram)"] # [doc = ""] # [doc = " The value does not include the `url(` `)` markers. Note that `url( )` is represented by a"] # [doc = " `Function` token."] UnquotedUrl (CowRcStr < 'a >) , # [doc = " A ``"] Delim (char) , # [doc = " A [``](https://drafts.csswg.org/css-syntax/#number-token-diagram)"] Number { +# [doc = " Whether the number had a `+` or `-` sign."] # [doc = ""] # [doc = " This is used is some cases like the micro syntax. (See the `parse_nth` function.)"] has_sign : bool , # [doc = " The value as a float"] value : f32 , # [doc = " If the origin source did not include a fractional part, the value as an integer."] int_value : Option < i32 > , +} , # [doc = " A [``](https://drafts.csswg.org/css-syntax/#percentage-token-diagram)"] Percentage { +# [doc = " Whether the number had a `+` or `-` sign."] has_sign : bool , # [doc = " The value as a float, divided by 100 so that the nominal range is 0.0 to 1.0."] unit_value : f32 , # [doc = " If the origin source did not include a fractional part, the value as an integer."] # [doc = " It is **not** divided by 100."] int_value : Option < i32 > , +} , # [doc = " A [``](https://drafts.csswg.org/css-syntax/#dimension-token-diagram)"] Dimension { +# [doc = " Whether the number had a `+` or `-` sign."] # [doc = ""] # [doc = " This is used is some cases like the micro syntax. (See the `parse_nth` function.)"] has_sign : bool , # [doc = " The value as a float"] value : f32 , # [doc = " If the origin source did not include a fractional part, the value as an integer."] int_value : Option < i32 > , # [doc = " The unit, e.g. \"px\" in `12px`"] unit : CowRcStr < 'a > , +} , # [doc = " A [``](https://drafts.csswg.org/css-syntax/#whitespace-token-diagram)"] WhiteSpace (& 'a str) , # [doc = " A comment."] # [doc = ""] # [doc = " The CSS Syntax spec does not generate tokens for comments,"] # [doc = " But we do, because we can (borrowed &str makes it cheap)."] # [doc = ""] # [doc = " The value does not include the `/*` `*/` markers."] Comment (& 'a str) , # [doc = " A `:` ``"] Colon , # [doc = " A `;` ``"] Semicolon , # [doc = " A `,` ``"] Comma , # [doc = " A `~=` [``](https://drafts.csswg.org/css-syntax/#include-match-token-diagram)"] IncludeMatch , # [doc = " A `|=` [``](https://drafts.csswg.org/css-syntax/#dash-match-token-diagram)"] DashMatch , # [doc = " A `^=` [``](https://drafts.csswg.org/css-syntax/#prefix-match-token-diagram)"] PrefixMatch , # [doc = " A `$=` [``](https://drafts.csswg.org/css-syntax/#suffix-match-token-diagram)"] SuffixMatch , # [doc = " A `*=` [``](https://drafts.csswg.org/css-syntax/#substring-match-token-diagram)"] SubstringMatch , # [doc = " A `` [``](https://drafts.csswg.org/css-syntax/#CDC-token-diagram)"] CDC , # [doc = " A [``](https://drafts.csswg.org/css-syntax/#function-token-diagram)"] # [doc = ""] # [doc = " The value (name) does not include the `(` marker."] Function (CowRcStr < 'a >) , # [doc = " A `<(-token>`"] ParenthesisBlock , # [doc = " A `<[-token>`"] SquareBracketBlock , # [doc = " A `<{-token>`"] CurlyBracketBlock , # [doc = " A ``"] # [doc = ""] # [doc = " This token always indicates a parse error."] BadUrl (CowRcStr < 'a >) , # [doc = " A ``"] # [doc = ""] # [doc = " This token always indicates a parse error."] BadString (CowRcStr < 'a >) , # [doc = " A `<)-token>`"] # [doc = ""] # [doc = " When obtained from one of the `Parser::next*` methods,"] # [doc = " this token is always unmatched and indicates a parse error."] CloseParenthesis , # [doc = " A `<]-token>`"] # [doc = ""] # [doc = " When obtained from one of the `Parser::next*` methods,"] # [doc = " this token is always unmatched and indicates a parse error."] CloseSquareBracket , # [doc = " A `<}-token>`"] # [doc = ""] # [doc = " When obtained from one of the `Parser::next*` methods,"] # [doc = " this token is always unmatched and indicates a parse error."] CloseCurlyBracket , +} impl < 'a > Token < 'a > { +# [doc = " Return whether this token represents a parse error."] # [doc = ""] # [doc = " `BadUrl` and `BadString` are tokenizer-level parse errors."] # [doc = ""] # [doc = " `CloseParenthesis`, `CloseSquareBracket`, and `CloseCurlyBracket` are *unmatched*"] # [doc = " and therefore parse errors when returned by one of the `Parser::next*` methods."] pub fn is_parse_error (& self) -> bool { +matches ! (* self , BadUrl (_) | BadString (_) | CloseParenthesis | CloseSquareBracket | CloseCurlyBracket) +} +} # [derive (Clone)] pub struct Tokenizer < 'a > { +input : & 'a str , # [doc = " Counted in bytes, not code points. From 0."] position : usize , # [doc = " The position at the start of the current line; but adjusted to"] # [doc = " ensure that computing the column will give the result in units"] # [doc = " of UTF-16 characters."] current_line_start_position : usize , current_line_number : u32 , var_or_env_functions : SeenStatus , source_map_url : Option < & 'a str > , source_url : Option < & 'a str > , +} # [derive (Copy , Clone , PartialEq , Eq)] enum SeenStatus { +DontCare , LookingForThem , SeenAtLeastOne , +} impl < 'a > Tokenizer < 'a > { +# [inline] pub fn new (input : & str) -> Tokenizer { +Tokenizer :: with_first_line_number (input , 0) +} # [inline] pub fn with_first_line_number (input : & str , first_line_number : u32) -> Tokenizer { +Tokenizer { +input : input , position : 0 , current_line_start_position : 0 , current_line_number : first_line_number , var_or_env_functions : SeenStatus :: DontCare , source_map_url : None , source_url : None , +} +} # [inline] pub fn look_for_var_or_env_functions (& mut self) { +self . var_or_env_functions = SeenStatus :: LookingForThem ; +} # [inline] pub fn seen_var_or_env_functions (& mut self) -> bool { +let seen = self . var_or_env_functions == SeenStatus :: SeenAtLeastOne ; self . var_or_env_functions = SeenStatus :: DontCare ; seen +} # [inline] pub fn see_function (& mut self , name : & str) { +if self . var_or_env_functions == SeenStatus :: LookingForThem { +if name . eq_ignore_ascii_case ("var") || name . eq_ignore_ascii_case ("env") { +self . var_or_env_functions = SeenStatus :: SeenAtLeastOne ; +} +} +} # [inline] pub fn next (& mut self) -> Result < Token < 'a > , () > { +next_token (self) +} # [inline] pub fn position (& self) -> SourcePosition { +SourcePosition (self . position) +} # [inline] pub fn current_source_location (& self) -> SourceLocation { +SourceLocation { +line : self . current_line_number , column : (self . position - self . current_line_start_position + 1) as u32 , +} +} # [inline] pub fn current_source_map_url (& self) -> Option < & 'a str > { +self . source_map_url +} # [inline] pub fn current_source_url (& self) -> Option < & 'a str > { +self . source_url +} # [inline] pub fn state (& self) -> ParserState { +ParserState { +position : self . position , current_line_start_position : self . current_line_start_position , current_line_number : self . current_line_number , at_start_of : None , +} +} # [inline] pub fn reset (& mut self , state : & ParserState) { +self . position = state . position ; self . current_line_start_position = state . current_line_start_position ; self . current_line_number = state . current_line_number ; +} # [inline] pub fn slice_from (& self , start_pos : SourcePosition) -> & 'a str { +& self . input [start_pos . 0 .. self . position] +} # [inline] pub fn slice (& self , range : Range < SourcePosition >) -> & 'a str { +& self . input [range . start . 0 .. range . end . 0] +} pub fn current_source_line (& self) -> & 'a str { +let current = self . position ; let start = self . input [0 .. current] . rfind (| c | matches ! (c , '\r' | '\n' | '\x0C')) . map_or (0 , | start | start + 1) ; let end = self . input [current ..] . find (| c | matches ! (c , '\r' | '\n' | '\x0C')) . map_or (self . input . len () , | end | current + end) ; & self . input [start .. end] +} # [inline] pub fn next_byte (& self) -> Option < u8 > { +if self . is_eof () { +None +} else { +Some (self . input . as_bytes () [self . position]) +} +} # [inline] fn is_eof (& self) -> bool { +! self . has_at_least (0) +} # [inline] fn has_at_least (& self , n : usize) -> bool { +self . position + n < self . input . len () +} # [inline] pub fn advance (& mut self , n : usize) { +if cfg ! (debug_assertions) { +for i in 0 .. n { +let b = self . byte_at (i) ; debug_assert ! (b . is_ascii () || (b & 0xF0 != 0xF0 && b & 0xC0 != 0x80)) ; debug_assert ! (b != b'\r' && b != b'\n' && b != b'\x0C') ; +} +} self . position += n +} # [inline] fn next_byte_unchecked (& self) -> u8 { +self . byte_at (0) +} # [inline] fn byte_at (& self , offset : usize) -> u8 { +self . input . as_bytes () [self . position + offset] +} # [inline] fn consume_4byte_intro (& mut self) { +debug_assert ! (self . next_byte_unchecked () & 0xF0 == 0xF0) ; self . current_line_start_position = self . current_line_start_position . wrapping_sub (1) ; self . position += 1 ; +} # [inline] fn consume_continuation_byte (& mut self) { +debug_assert ! (self . next_byte_unchecked () & 0xC0 == 0x80) ; self . current_line_start_position = self . current_line_start_position . wrapping_add (1) ; self . position += 1 ; +} # [inline (never)] fn consume_known_byte (& mut self , byte : u8) { +debug_assert ! (byte != b'\r' && byte != b'\n' && byte != b'\x0C') ; self . position += 1 ; if byte & 0xF0 == 0xF0 { +self . current_line_start_position = self . current_line_start_position . wrapping_sub (1) ; +} else if byte & 0xC0 == 0x80 { +self . current_line_start_position = self . current_line_start_position . wrapping_add (1) ; +} +} # [inline] fn next_char (& self) -> char { +self . input [self . position ..] . chars () . next () . unwrap () +} # [inline] fn consume_newline (& mut self) { +let byte = self . next_byte_unchecked () ; debug_assert ! (byte == b'\r' || byte == b'\n' || byte == b'\x0C') ; self . position += 1 ; if byte == b'\r' && self . next_byte () == Some (b'\n') { +self . position += 1 ; +} self . current_line_start_position = self . position ; self . current_line_number += 1 ; +} # [inline] fn has_newline_at (& self , offset : usize) -> bool { +self . position + offset < self . input . len () && matches ! (self . byte_at (offset) , b'\n' | b'\r' | b'\x0C') +} # [inline] fn consume_char (& mut self) -> char { +let c = self . next_char () ; let len_utf8 = c . len_utf8 () ; self . position += len_utf8 ; self . current_line_start_position = self . current_line_start_position . wrapping_add (len_utf8 - c . len_utf16 ()) ; c +} # [inline] fn starts_with (& self , needle : & [u8]) -> bool { +self . input . as_bytes () [self . position ..] . starts_with (needle) +} pub fn skip_whitespace (& mut self) { +while ! self . is_eof () { +{ +enum Case { +Case1 = 1isize , Case2 = 2isize , Case3 = 3isize , Case4 = 4isize +} static __CASES : [Case ; 256] = [Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case1 , Case :: Case2 , Case :: Case4 , Case :: Case2 , Case :: Case2 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case1 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case3 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4 , Case :: Case4] ; match __CASES [self . next_byte_unchecked () as usize] { +Case :: Case1 => { +{ +self . advance (1) +} +} , Case :: Case2 => { +{ +self . consume_newline () ; +} +} , Case :: Case3 => { +{ +if self . starts_with (b"/*") { +consume_comment (self) ; +} else { +return +} +} +} , Case :: Case4 => { +{ +return +} +} +} +} +} +} pub fn skip_cdc_and_cdo (& mut self) { +while ! self . is_eof () { +{ +enum Case { +Case1 = 1isize , Case2 = 2isize , Case3 = 3isize , Case4 = 4isize , Case5 = 5isize , Case6 = 6isize +} static __CASES : [Case ; 256] = [Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case1 , Case :: Case2 , Case :: Case6 , Case :: Case2 , Case :: Case2 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case1 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case5 , Case :: Case6 , Case :: Case3 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case4 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6 , Case :: Case6] ; match __CASES [self . next_byte_unchecked () as usize] { +Case :: Case1 => { +{ +self . advance (1) +} +} , Case :: Case2 => { +{ +self . consume_newline () ; +} +} , Case :: Case3 => { +{ +if self . starts_with (b"/*") { +consume_comment (self) ; +} else { +return +} +} +} , Case :: Case4 => { +{ +if self . starts_with (b"") { +self . advance (3) +} else { +return +} +} +} , Case :: Case6 => { +{ +return +} +} +} +} +} +} +} # [doc = " A position from the start of the input, counted in UTF-8 bytes."] # [derive (PartialEq , Eq , PartialOrd , Ord , Debug , Clone , Copy)] pub struct SourcePosition (pub (crate) usize) ; impl SourcePosition { +# [doc = " Returns the current byte index in the original input."] # [inline] pub fn byte_index (& self) -> usize { +self . 0 +} +} # [doc = " The line and column number for a given position within the input."] # [derive (PartialEq , Eq , Debug , Clone , Copy)] pub struct SourceLocation { +# [doc = " The line number, starting at 0 for the first line, unless `with_first_line_number` was used."] pub line : u32 , # [doc = " The column number within a line, starting at 1 for first the character of the line."] # [doc = " Column numbers are counted in UTF-16 code units."] pub column : u32 , +} fn next_token < 'a > (tokenizer : & mut Tokenizer < 'a >) -> Result < Token < 'a > , () > { +if tokenizer . is_eof () { +return Err (()) ; +} let b = tokenizer . next_byte_unchecked () ; let token = { +enum Case { +Case1 = 1isize , Case2 = 2isize , Case3 = 3isize , Case4 = 4isize , Case5 = 5isize , Case6 = 6isize , Case7 = 7isize , Case8 = 8isize , Case9 = 9isize , Case10 = 10isize , Case11 = 11isize , Case12 = 12isize , Case13 = 13isize , Case14 = 14isize , Case15 = 15isize , Case16 = 16isize , Case17 = 17isize , Case18 = 18isize , Case19 = 19isize , Case20 = 20isize , Case21 = 21isize , Case22 = 22isize , Case23 = 23isize , Case24 = 24isize , Case25 = 25isize , Case26 = 26isize , Case27 = 27isize , Case28 = 28isize , Case29 = 29isize +} static __CASES : [Case ; 256] = [Case :: Case20 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case1 , Case :: Case2 , Case :: Case29 , Case :: Case2 , Case :: Case2 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case1 , Case :: Case29 , Case :: Case3 , Case :: Case4 , Case :: Case5 , Case :: Case29 , Case :: Case29 , Case :: Case6 , Case :: Case7 , Case :: Case8 , Case :: Case9 , Case :: Case10 , Case :: Case11 , Case :: Case12 , Case :: Case13 , Case :: Case14 , Case :: Case15 , Case :: Case15 , Case :: Case15 , Case :: Case15 , Case :: Case15 , Case :: Case15 , Case :: Case15 , Case :: Case15 , Case :: Case15 , Case :: Case15 , Case :: Case16 , Case :: Case17 , Case :: Case18 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case19 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case21 , Case :: Case22 , Case :: Case23 , Case :: Case24 , Case :: Case20 , Case :: Case29 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case20 , Case :: Case25 , Case :: Case26 , Case :: Case27 , Case :: Case28 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29 , Case :: Case29] ; match __CASES [b as usize] { +Case :: Case1 => { +{ +consume_whitespace (tokenizer , false) +} +} , Case :: Case2 => { +{ +consume_whitespace (tokenizer , true) +} +} , Case :: Case3 => { +{ +consume_string (tokenizer , false) +} +} , Case :: Case4 => { +{ +tokenizer . advance (1) ; if is_ident_start (tokenizer) { +IDHash (consume_name (tokenizer)) +} else if ! tokenizer . is_eof () && match tokenizer . next_byte_unchecked () { +b'0' ..= b'9' | b'-' => true , _ => false , +} { +Hash (consume_name (tokenizer)) +} else { +Delim ('#') +} +} +} , Case :: Case5 => { +{ +if tokenizer . starts_with (b"$=") { +tokenizer . advance (2) ; SuffixMatch +} else { +tokenizer . advance (1) ; Delim ('$') +} +} +} , Case :: Case6 => { +{ +consume_string (tokenizer , true) +} +} , Case :: Case7 => { +{ +tokenizer . advance (1) ; ParenthesisBlock +} +} , Case :: Case8 => { +{ +tokenizer . advance (1) ; CloseParenthesis +} +} , Case :: Case9 => { +{ +if tokenizer . starts_with (b"*=") { +tokenizer . advance (2) ; SubstringMatch +} else { +tokenizer . advance (1) ; Delim ('*') +} +} +} , Case :: Case10 => { +{ +if (tokenizer . has_at_least (1) && matches ! (tokenizer . byte_at (1) , b'0' ..= b'9')) || (tokenizer . has_at_least (2) && tokenizer . byte_at (1) == b'.' && matches ! (tokenizer . byte_at (2) , b'0' ..= b'9')) { +consume_numeric (tokenizer) +} else { +tokenizer . advance (1) ; Delim ('+') +} +} +} , Case :: Case11 => { +{ +tokenizer . advance (1) ; Comma +} +} , Case :: Case12 => { +{ +if (tokenizer . has_at_least (1) && matches ! (tokenizer . byte_at (1) , b'0' ..= b'9')) || (tokenizer . has_at_least (2) && tokenizer . byte_at (1) == b'.' && matches ! (tokenizer . byte_at (2) , b'0' ..= b'9')) { +consume_numeric (tokenizer) +} else if tokenizer . starts_with (b"-->") { +tokenizer . advance (3) ; CDC +} else if is_ident_start (tokenizer) { +consume_ident_like (tokenizer) +} else { +tokenizer . advance (1) ; Delim ('-') +} +} +} , Case :: Case13 => { +{ +if tokenizer . has_at_least (1) && matches ! (tokenizer . byte_at (1) , b'0' ..= b'9') { +consume_numeric (tokenizer) +} else { +tokenizer . advance (1) ; Delim ('.') +} +} +} , Case :: Case14 => { +{ +if tokenizer . starts_with (b"/*") { +Comment (consume_comment (tokenizer)) +} else { +tokenizer . advance (1) ; Delim ('/') +} +} +} , Case :: Case15 => { +{ +consume_numeric (tokenizer) +} +} , Case :: Case16 => { +{ +tokenizer . advance (1) ; Colon +} +} , Case :: Case17 => { +{ +tokenizer . advance (1) ; Semicolon +} +} , Case :: Case18 => { +{ +if tokenizer . starts_with (b"