Skip to content

Commit b1bfa8a

Browse files
Tauri init
1 parent 0054078 commit b1bfa8a

21 files changed

+105
-0
lines changed

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/

src-tauri/Cargo.toml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
[package]
2+
name = "app"
3+
version = "0.1.0"
4+
description = "A Tauri App"
5+
authors = ["you"]
6+
license = ""
7+
repository = ""
8+
default-run = "app"
9+
edition = "2021"
10+
rust-version = "1.60"
11+
12+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
13+
14+
[build-dependencies]
15+
tauri-build = { version = "1.5.3" }
16+
17+
[dependencies]
18+
serde_json = "1.0"
19+
serde = { version = "1.0", features = ["derive"] }
20+
tauri = { version = "1.7.0" }
21+
22+
[features]
23+
# this feature is used for production builds or when `devPath` points to the filesystem and the built-in dev server is disabled.
24+
# If you use cargo directly instead of tauri's cli you can use this feature flag to switch between tauri's `dev` and `build` modes.
25+
# DO NOT REMOVE!!
26+
custom-protocol = [ "tauri/custom-protocol" ]

src-tauri/build.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
fn main() {
2+
tauri_build::build()
3+
}

src-tauri/icons/128x128.png

10.8 KB
Loading

src-tauri/icons/[email protected]

22.6 KB
Loading

src-tauri/icons/32x32.png

2.17 KB
Loading

src-tauri/icons/Square107x107Logo.png

8.99 KB
Loading

src-tauri/icons/Square142x142Logo.png

12.2 KB
Loading

src-tauri/icons/Square150x150Logo.png

12.7 KB
Loading

src-tauri/icons/Square284x284Logo.png

25.3 KB
Loading

0 commit comments

Comments
 (0)