Skip to content

Commit c991f47

Browse files
committed
Add initial rust application wrapper
1 parent 00677be commit c991f47

30 files changed

+4595
-5
lines changed

.vscode/settings.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,5 +107,8 @@
107107
"track",
108108
"width",
109109
"zIndex"
110-
]
110+
],
111+
"rust-analyzer.linkedProjects": [
112+
"./src-tauri/Cargo.toml"
113+
],
111114
}

package.json

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,10 @@
1616
"@iconify-json/ph": "^1.1.5",
1717
"@skeletonlabs/skeleton": "^1.10.0",
1818
"@sveltejs/adapter-node": "^1.3.1",
19+
"@sveltejs/adapter-static": "^2.0.3",
1920
"@sveltejs/kit": "^1.5.0",
2021
"@tailwindcss/typography": "^0.5.9",
22+
"@tauri-apps/cli": "^1.4.0",
2123
"@typescript-eslint/eslint-plugin": "^5.45.0",
2224
"@typescript-eslint/parser": "^5.45.0",
2325
"autoprefixer": "^10.4.14",
@@ -35,5 +37,8 @@
3537
"unplugin-icons": "^0.16.5",
3638
"vite": "^4.3.0"
3739
},
38-
"type": "module"
40+
"type": "module",
41+
"dependencies": {
42+
"@tauri-apps/api": "^1.4.0"
43+
}
3944
}

pnpm-lock.yaml

Lines changed: 131 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Generated by Cargo
2+
# will have compiled files and executables
3+
/target/

0 commit comments

Comments
 (0)