@duonghieu0712z/create-tauri-vue-template 0.1.0 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/template/.github/workflows/code-quality.yml +3 -4
- package/template/.github/workflows/release.yml +5 -11
- package/template/package.json +10 -10
- package/template/pnpm-lock.yaml +380 -415
- package/template/rust-toolchain.toml +1 -0
- package/template/src-tauri/Cargo.lock +4 -4
- package/template/src-tauri/rustfmt.toml +0 -17
|
@@ -4167,9 +4167,9 @@ checksum = "61c41af27dd6d1e27b1b16b489db798443478cef1f06a660c96db617ba5de3b1"
|
|
|
4167
4167
|
|
|
4168
4168
|
[[package]]
|
|
4169
4169
|
name = "tauri"
|
|
4170
|
-
version = "2.11.
|
|
4170
|
+
version = "2.11.5"
|
|
4171
4171
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4172
|
-
checksum = "
|
|
4172
|
+
checksum = "667b20e2726d572dea2de7370da16e188eb06008faf9a92fab7cdc46791190b5"
|
|
4173
4173
|
dependencies = [
|
|
4174
4174
|
"anyhow",
|
|
4175
4175
|
"bytes",
|
|
@@ -4408,9 +4408,9 @@ dependencies = [
|
|
|
4408
4408
|
|
|
4409
4409
|
[[package]]
|
|
4410
4410
|
name = "tauri-runtime-wry"
|
|
4411
|
-
version = "2.11.
|
|
4411
|
+
version = "2.11.4"
|
|
4412
4412
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
4413
|
-
checksum = "
|
|
4413
|
+
checksum = "4e6fac707727b7a2f48e4ded90976324267371073edbb415ffb73bb0458d203f"
|
|
4414
4414
|
dependencies = [
|
|
4415
4415
|
"gtk",
|
|
4416
4416
|
"http 1.4.1",
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
edition = "2024"
|
|
2
|
-
style_edition = "2024"
|
|
3
|
-
|
|
4
|
-
max_width = 100
|
|
5
|
-
tab_spaces = 4
|
|
6
|
-
newline_style = "Unix"
|
|
7
|
-
|
|
8
|
-
format_macro_bodies = true
|
|
9
|
-
format_macro_matchers = true
|
|
10
|
-
overflow_delimited_expr = true
|
|
11
|
-
use_field_init_shorthand = true
|
|
12
|
-
|
|
13
|
-
imports_granularity = "Crate"
|
|
14
|
-
group_imports = "StdExternalCrate"
|
|
15
|
-
reorder_imports = true
|
|
16
|
-
reorder_modules = true
|
|
17
|
-
reorder_impl_items = true
|