2022-02-10 04:11:00 +03:00
|
|
|
[workspace]
|
2022-02-11 00:03:25 +03:00
|
|
|
members = [ "node" ]
|
2021-01-30 18:15:47 +03:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "tauri-cli"
|
2023-06-14 18:59:28 +03:00
|
|
|
version = "1.4.0"
|
2021-04-14 21:11:08 +03:00
|
|
|
authors = [ "Tauri Programme within The Commons Conservancy" ]
|
2021-10-22 16:04:42 +03:00
|
|
|
edition = "2021"
|
2023-03-31 18:36:59 +03:00
|
|
|
rust-version = "1.60"
|
2021-04-14 20:12:11 +03:00
|
|
|
categories = [ "gui", "web-programming" ]
|
2021-04-11 01:09:09 +03:00
|
|
|
license = "Apache-2.0 OR MIT"
|
2022-06-16 05:08:50 +03:00
|
|
|
homepage = "https://tauri.app"
|
2021-04-14 20:12:11 +03:00
|
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
|
|
description = "Command line interface for building Tauri apps"
|
2022-02-11 05:05:06 +03:00
|
|
|
include = [
|
|
|
|
"src/",
|
|
|
|
"/templates",
|
2022-04-03 17:26:57 +03:00
|
|
|
"scripts/",
|
2022-02-11 05:05:06 +03:00
|
|
|
"*.json",
|
|
|
|
"*.rs",
|
2022-04-22 03:15:22 +03:00
|
|
|
"tauri.gitignore",
|
2022-08-27 16:10:05 +03:00
|
|
|
"tauri-dev-watcher.gitignore",
|
|
|
|
"LICENSE*"
|
2022-02-11 05:05:06 +03:00
|
|
|
]
|
2021-01-30 18:15:47 +03:00
|
|
|
|
2022-09-15 18:03:45 +03:00
|
|
|
[package.metadata.binstall]
|
2023-05-22 18:52:44 +03:00
|
|
|
pkg-url = "{ repo }/releases/download/tauri-cli-v{ version }/cargo-tauri-{ target }.{ archive-format }"
|
2022-09-15 18:03:45 +03:00
|
|
|
bin-dir = "{ bin }{ binary-ext }"
|
|
|
|
pkg-fmt = "tgz"
|
|
|
|
|
|
|
|
[package.metadata.binstall.overrides.x86_64-pc-windows-msvc]
|
|
|
|
pkg-fmt = "zip"
|
|
|
|
|
|
|
|
[package.metadata.binstall.overrides.x86_64-apple-darwin]
|
|
|
|
pkg-fmt = "zip"
|
|
|
|
|
2021-01-30 18:15:47 +03:00
|
|
|
[[bin]]
|
|
|
|
name = "cargo-tauri"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2023-05-25 17:34:37 +03:00
|
|
|
clap_complete = "4"
|
2022-10-19 16:04:13 +03:00
|
|
|
clap = { version = "4.0", features = [ "derive" ] }
|
2021-01-30 18:15:47 +03:00
|
|
|
anyhow = "1.0"
|
2023-06-14 18:59:28 +03:00
|
|
|
tauri-bundler = { version = "1.3.0", path = "../bundler", default-features = false }
|
2021-01-30 18:15:47 +03:00
|
|
|
colored = "2.0"
|
2022-09-07 17:55:21 +03:00
|
|
|
once_cell = "1"
|
2021-02-09 21:20:24 +03:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
2021-01-30 18:15:47 +03:00
|
|
|
serde_json = "1.0"
|
2023-05-22 20:22:46 +03:00
|
|
|
notify = "6.0"
|
|
|
|
notify-debouncer-mini = "0.3"
|
2021-11-17 16:30:55 +03:00
|
|
|
shared_child = "1.0"
|
2022-04-02 03:03:11 +03:00
|
|
|
toml_edit = "0.14"
|
2023-05-22 20:22:46 +03:00
|
|
|
json-patch = "1.0"
|
2023-06-14 18:59:28 +03:00
|
|
|
tauri-utils = { version = "1.4.0", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5", "config-toml" ] }
|
2021-05-19 07:51:09 +03:00
|
|
|
toml = "0.5"
|
2022-09-28 17:44:14 +03:00
|
|
|
jsonschema = "0.16"
|
2022-05-18 15:56:16 +03:00
|
|
|
handlebars = "4.3"
|
2021-11-17 15:48:58 +03:00
|
|
|
include_dir = "0.7"
|
2023-06-14 14:00:28 +03:00
|
|
|
minisign = "=0.7.3"
|
2023-01-26 17:23:08 +03:00
|
|
|
base64 = "0.21.0"
|
2023-06-14 18:59:28 +03:00
|
|
|
ureq = { version = "2.5", default-features = false, features = [ "gzip" ] }
|
2023-03-31 18:36:59 +03:00
|
|
|
os_info = "3"
|
2021-05-30 23:01:09 +03:00
|
|
|
semver = "1.0"
|
2022-07-06 15:23:59 +03:00
|
|
|
regex = "1.6.0"
|
2021-04-25 17:34:33 +03:00
|
|
|
unicode-width = "0.1"
|
2022-02-09 17:36:29 +03:00
|
|
|
zeroize = "1.5"
|
2022-12-26 17:38:13 +03:00
|
|
|
heck = { version = "0.4", features = [ "unicode" ] }
|
2022-02-16 16:06:09 +03:00
|
|
|
dialoguer = "0.10"
|
2022-09-10 15:45:32 +03:00
|
|
|
url = { version = "2.3", features = [ "serde" ] }
|
2022-02-10 04:11:00 +03:00
|
|
|
os_pipe = "1"
|
2023-05-16 14:27:15 +03:00
|
|
|
ignore = "0.4"
|
2022-03-28 03:26:04 +03:00
|
|
|
ctrlc = "3.2"
|
2022-05-08 02:01:58 +03:00
|
|
|
log = { version = "0.4.17", features = [ "kv_unstable", "kv_unstable_std" ] }
|
2022-09-28 19:47:50 +03:00
|
|
|
env_logger = "0.9.1"
|
2022-09-03 20:37:41 +03:00
|
|
|
icns = { package = "tauri-icns", version = "0.1" }
|
|
|
|
image = { version = "0.24", default-features = false, features = [ "ico" ] }
|
2022-11-08 15:24:09 +03:00
|
|
|
axum = { version = "0.5.16", features = [ "ws" ] }
|
2023-07-11 13:19:13 +03:00
|
|
|
html5ever = "0.26"
|
|
|
|
kuchiki = { package = "kuchikiki", version = "0.8" }
|
2022-11-08 15:24:09 +03:00
|
|
|
tokio = { version = "1", features = [ "macros", "sync" ] }
|
2022-10-28 01:01:28 +03:00
|
|
|
common-path = "1"
|
2022-12-14 19:39:05 +03:00
|
|
|
serde-value = "0.7.0"
|
2023-01-26 16:47:23 +03:00
|
|
|
itertools = "0.10"
|
2021-04-25 17:34:33 +03:00
|
|
|
|
2021-04-25 22:07:22 +03:00
|
|
|
[target."cfg(windows)".dependencies]
|
2022-05-08 02:01:58 +03:00
|
|
|
winapi = { version = "0.3", features = [ "handleapi", "processenv", "winbase", "wincon", "winnt" ] }
|
2023-05-18 22:47:28 +03:00
|
|
|
cc = "1"
|
2021-04-25 17:34:33 +03:00
|
|
|
|
2022-04-29 19:28:13 +03:00
|
|
|
[target."cfg(unix)".dependencies]
|
|
|
|
libc = "0.2"
|
|
|
|
|
2022-02-10 04:11:00 +03:00
|
|
|
[profile.release]
|
|
|
|
lto = true
|
2023-05-03 20:59:09 +03:00
|
|
|
|
|
|
|
[features]
|
2023-05-08 15:29:17 +03:00
|
|
|
default = [ "rustls" ]
|
2023-06-01 06:04:14 +03:00
|
|
|
native-tls = [ "tauri-bundler/native-tls", "ureq/native-tls" ]
|
2023-06-06 19:29:52 +03:00
|
|
|
native-tls-vendored = [ "native-tls", "tauri-bundler/native-tls-vendored" ]
|
2023-06-01 06:04:14 +03:00
|
|
|
rustls = [ "tauri-bundler/rustls", "ureq/tls" ]
|