-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7ab30f1
commit 25f995a
Showing
5 changed files
with
128 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
{ | ||
"build-dependencies": { | ||
"tauri-build": { | ||
"features": [], | ||
"version": "1.2" | ||
} | ||
}, | ||
"dependencies": { | ||
"serde_json": "1.0", | ||
"tsu": "1.0.1", | ||
"serde": { | ||
"features": [ | ||
"derive" | ||
], | ||
"version": "1.0" | ||
}, | ||
"tauri": { | ||
"features": [ | ||
"dialog-open", | ||
"dialog-save", | ||
"fs-copy-file", | ||
"fs-create-dir", | ||
"fs-exists", | ||
"fs-read-dir", | ||
"fs-read-file", | ||
"fs-write-file" | ||
], | ||
"version": "1.2" | ||
} | ||
}, | ||
"features": { | ||
"custom-protocol": [ | ||
"tauri/custom-protocol" | ||
], | ||
"default": [ | ||
"custom-protocol" | ||
] | ||
}, | ||
"package": { | ||
"authors": [ | ||
"you" | ||
], | ||
"description": "A Tauri App", | ||
"edition": "2021", | ||
"license": "", | ||
"name": "tauri-desktop-app", | ||
"repository": "", | ||
"rust-version": "1.57", | ||
"version": "0.0.0" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[package] | ||
name = "tauri-desktop-app" | ||
version = "0.0.0" | ||
description = "A Tauri App" | ||
authors = ["you"] | ||
license = "" | ||
repository = "" | ||
edition = "2021" | ||
rust-version = "1.57" | ||
|
||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
|
||
[build-dependencies] | ||
tauri-build = {version = "1.2", features = [] } | ||
|
||
[dependencies] | ||
serde_json = "1.0" | ||
serde = { version = "1.0", features = ["derive"] } | ||
tauri = {version = "1.2", features = ["dialog-open", "dialog-save", "fs-copy-file", "fs-create-dir", "fs-exists", "fs-read-dir", "fs-read-file", "fs-write-file"] } | ||
tsu = "1.0.1" | ||
|
||
[features] | ||
# by default Tauri runs in production mode | ||
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL | ||
default = [ "custom-protocol" ] | ||
# this feature is used used for production builds where `devPath` points to the filesystem | ||
# DO NOT remove this | ||
custom-protocol = [ "tauri/custom-protocol" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
build-dependencies: | ||
tauri-build: | ||
features: [] | ||
version: '1.2' | ||
dependencies: | ||
serde_json: '1.0' | ||
tsu: 1.0.1 | ||
serde: | ||
features: | ||
- derive | ||
version: '1.0' | ||
tauri: | ||
features: | ||
- dialog-open | ||
- dialog-save | ||
- fs-copy-file | ||
- fs-create-dir | ||
- fs-exists | ||
- fs-read-dir | ||
- fs-read-file | ||
- fs-write-file | ||
version: '1.2' | ||
features: | ||
custom-protocol: | ||
- tauri/custom-protocol | ||
default: | ||
- custom-protocol | ||
package: | ||
authors: | ||
- you | ||
description: A Tauri App | ||
edition: '2021' | ||
license: '' | ||
name: tauri-desktop-app | ||
repository: '' | ||
rust-version: '1.57' | ||
version: 0.0.0 |