-
Notifications
You must be signed in to change notification settings - Fork 3
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
024d1e9
commit 29d1554
Showing
3 changed files
with
43 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "qspider", | ||
"version": "1.1.0", | ||
"version": "1.2.0", | ||
"license": "MIT", | ||
"type": "module", | ||
"scripts": { | ||
|
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
[package] | ||
name = "qspider" | ||
version = "1.1.0" | ||
version = "1.2.0" | ||
description = "qSpider - player for QSP games" | ||
authors = ["[email protected]"] | ||
authors = [ "[email protected]" ] | ||
license = "MIT" | ||
repository = "" | ||
default-run = "qspider" | ||
|
@@ -11,45 +11,45 @@ build = "src/build.rs" | |
|
||
[build-dependencies.tauri-build] | ||
version = "1.5.3" | ||
features = ["config-toml"] | ||
features = [ "config-toml" ] | ||
|
||
[dependencies] | ||
serde_json = "1.0" | ||
entity-tag = "0.1.5" | ||
mime_guess = "2.0.3" | ||
urlencoding = "2.1.0" | ||
|
||
[dependencies.tauri-plugin-window-state] | ||
git = "https://github.com/tauri-apps/plugins-workspace" | ||
branch = "v1" | ||
[dependencies.tauri-plugin-window-state] | ||
git = "https://github.com/tauri-apps/plugins-workspace" | ||
branch = "v1" | ||
|
||
[dependencies.serde] | ||
version = "1.0" | ||
features = ["derive"] | ||
[dependencies.serde] | ||
version = "1.0" | ||
features = [ "derive" ] | ||
|
||
[dependencies.tauri] | ||
version = "1.7.1" | ||
features = [ | ||
[dependencies.tauri] | ||
version = "1.7.1" | ||
features = [ | ||
"api-all", | ||
"cli", | ||
"devtools", | ||
"icon-png", | ||
"icon-ico", | ||
"updater", | ||
"config-toml", | ||
"config-toml" | ||
] | ||
|
||
[dependencies.uuid] | ||
version = "1.5.0" | ||
features = ["serde", "v4"] | ||
[dependencies.uuid] | ||
version = "1.5.0" | ||
features = [ "serde", "v4" ] | ||
|
||
[features] | ||
default = ["custom-protocol"] | ||
custom-protocol = ["tauri/custom-protocol"] | ||
default = [ "custom-protocol" ] | ||
custom-protocol = [ "tauri/custom-protocol" ] | ||
|
||
[profile.release] | ||
panic = "abort" # Strip expensive panic clean-up logic | ||
codegen-units = 1 # Compile crates one after another so the compiler can optimize better | ||
lto = true # Enables link to optimizations | ||
opt-level = "s" # Optimize for binary size | ||
strip = true # Remove debug symbols | ||
panic = "abort" | ||
codegen-units = 1 | ||
lto = true | ||
opt-level = "s" | ||
strip = true |