|
@@ -1,13 +1,13 @@
|
|
|
[workspace]
|
|
|
-members = ["node"]
|
|
|
+members = [ "node" ]
|
|
|
|
|
|
[package]
|
|
|
name = "tauri-cli"
|
|
|
-version = "1.5.10"
|
|
|
-authors = ["Tauri Programme within The Commons Conservancy"]
|
|
|
+version = "1.5.11"
|
|
|
+authors = [ "Tauri Programme within The Commons Conservancy" ]
|
|
|
edition = "2021"
|
|
|
rust-version = "1.60"
|
|
|
-categories = ["gui", "web-programming"]
|
|
|
+categories = [ "gui", "web-programming" ]
|
|
|
license = "Apache-2.0 OR MIT"
|
|
|
homepage = "https://tauri.app"
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
@@ -20,7 +20,7 @@ include = [
|
|
|
"*.rs",
|
|
|
"tauri.gitignore",
|
|
|
"tauri-dev-watcher.gitignore",
|
|
|
- "LICENSE*",
|
|
|
+ "LICENSE*"
|
|
|
]
|
|
|
|
|
|
[package.metadata.binstall]
|
|
@@ -40,63 +40,52 @@ path = "src/main.rs"
|
|
|
|
|
|
[dependencies]
|
|
|
clap_complete = "4"
|
|
|
-clap = { version = "4.4", features = ["derive"] }
|
|
|
+clap = { version = "4.4", features = [ "derive" ] }
|
|
|
anyhow = "1.0"
|
|
|
-tauri-bundler = { version = "1.5.0", path = "../bundler", default-features = false }
|
|
|
+tauri-bundler = { version = "1.5.1", path = "../bundler", default-features = false }
|
|
|
colored = "2.0"
|
|
|
once_cell = "1"
|
|
|
-serde = { version = "1.0", features = ["derive"] }
|
|
|
+serde = { version = "1.0", features = [ "derive" ] }
|
|
|
serde_json = "1.0"
|
|
|
notify = "6.1"
|
|
|
notify-debouncer-mini = "0.4"
|
|
|
shared_child = "1.0"
|
|
|
toml_edit = "0.21"
|
|
|
json-patch = "1.2"
|
|
|
-tauri-utils = { version = "1.5.3", path = "../../core/tauri-utils", features = [
|
|
|
- "isolation",
|
|
|
- "schema",
|
|
|
- "config-json5",
|
|
|
- "config-toml",
|
|
|
-] }
|
|
|
+tauri-utils = { version = "1.5.3", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
|
|
|
toml = "0.8"
|
|
|
jsonschema = "0.17"
|
|
|
handlebars = "4.4"
|
|
|
include_dir = "0.7"
|
|
|
minisign = "=0.7.3"
|
|
|
base64 = "0.21.5"
|
|
|
-ureq = { version = "2.9.1", default-features = false, features = ["gzip"] }
|
|
|
+ureq = { version = "2.9.1", default-features = false, features = [ "gzip" ] }
|
|
|
os_info = "3"
|
|
|
semver = "1.0"
|
|
|
regex = "1.10.2"
|
|
|
unicode-width = "0.1"
|
|
|
zeroize = "1.6"
|
|
|
-heck = { version = "0.4", features = ["unicode"] }
|
|
|
+heck = { version = "0.4", features = [ "unicode" ] }
|
|
|
dialoguer = "0.11"
|
|
|
-url = { version = "2.4", features = ["serde"] }
|
|
|
+url = { version = "2.4", features = [ "serde" ] }
|
|
|
os_pipe = "1"
|
|
|
ignore = "0.4"
|
|
|
ctrlc = "3.4"
|
|
|
-log = { version = "0.4.21", features = ["kv", "kv_std"] }
|
|
|
+log = { version = "0.4.21", features = [ "kv", "kv_std" ] }
|
|
|
env_logger = "0.10.0"
|
|
|
icns = { package = "tauri-icns", version = "0.1" }
|
|
|
-image = { version = "0.24", default-features = false, features = ["ico"] }
|
|
|
-axum = { version = "0.6.20", features = ["ws"] }
|
|
|
+image = { version = "0.24", default-features = false, features = [ "ico" ] }
|
|
|
+axum = { version = "0.6.20", features = [ "ws" ] }
|
|
|
html5ever = "0.26"
|
|
|
kuchiki = { package = "kuchikiki", version = "0.8" }
|
|
|
-tokio = { version = "1", features = ["macros", "sync"] }
|
|
|
+tokio = { version = "1", features = [ "macros", "sync" ] }
|
|
|
common-path = "1"
|
|
|
serde-value = "0.7.0"
|
|
|
itertools = "0.11"
|
|
|
glob = "0.3"
|
|
|
|
|
|
[target."cfg(windows)".dependencies]
|
|
|
-winapi = { version = "0.3", features = [
|
|
|
- "handleapi",
|
|
|
- "processenv",
|
|
|
- "winbase",
|
|
|
- "wincon",
|
|
|
- "winnt",
|
|
|
-] }
|
|
|
+winapi = { version = "0.3", features = [ "handleapi", "processenv", "winbase", "wincon", "winnt" ] }
|
|
|
cc = "1"
|
|
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
@@ -106,7 +95,7 @@ libc = "0.2"
|
|
|
lto = true
|
|
|
|
|
|
[features]
|
|
|
-default = ["rustls"]
|
|
|
-native-tls = ["tauri-bundler/native-tls", "ureq/native-tls"]
|
|
|
-native-tls-vendored = ["native-tls", "tauri-bundler/native-tls-vendored"]
|
|
|
-rustls = ["tauri-bundler/rustls", "ureq/tls"]
|
|
|
+default = [ "rustls" ]
|
|
|
+native-tls = [ "tauri-bundler/native-tls", "ureq/native-tls" ]
|
|
|
+native-tls-vendored = [ "native-tls", "tauri-bundler/native-tls-vendored" ]
|
|
|
+rustls = [ "tauri-bundler/rustls", "ureq/tls" ]
|