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"
|
2022-09-16 20:30:18 +03:00
|
|
|
version = "1.1.1"
|
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"
|
2022-09-28 20:33:35 +03:00
|
|
|
rust-version = "1.59"
|
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]
|
2022-09-15 20:14:59 +03:00
|
|
|
pkg-url = "{ repo }/releases/download/cli.rs-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]
|
2022-06-15 15:06:07 +03:00
|
|
|
clap = { version = "3.2", features = [ "derive" ] }
|
2021-01-30 18:15:47 +03:00
|
|
|
anyhow = "1.0"
|
2022-09-16 20:30:18 +03:00
|
|
|
tauri-bundler = { version = "1.0.7", path = "../bundler" }
|
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"
|
|
|
|
notify = "4.0"
|
2021-11-17 16:30:55 +03:00
|
|
|
shared_child = "1.0"
|
2022-04-02 03:03:11 +03:00
|
|
|
toml_edit = "0.14"
|
2021-01-30 18:15:47 +03:00
|
|
|
json-patch = "0.2"
|
2022-09-16 20:30:18 +03:00
|
|
|
tauri-utils = { version = "1.1.1", 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"
|
2021-10-13 16:02:14 +03:00
|
|
|
minisign = "0.7"
|
2021-04-05 20:51:17 +03:00
|
|
|
base64 = "0.13.0"
|
2022-07-25 18:46:19 +03:00
|
|
|
ureq = "2.5"
|
2022-08-04 20:05:01 +03:00
|
|
|
os_info = "3.5"
|
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
|
|
|
lazy_static = "1"
|
|
|
|
unicode-width = "0.1"
|
|
|
|
tempfile = "3"
|
2022-02-09 17:36:29 +03:00
|
|
|
zeroize = "1.5"
|
2021-09-24 05:37:27 +03:00
|
|
|
glob = "0.3"
|
2021-12-15 23:18:59 +03:00
|
|
|
heck = "0.4"
|
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"
|
2022-02-11 19:35: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-09-28 19:16:58 +03:00
|
|
|
axum = { version = "0.5.16", features = ["ws"] }
|
|
|
|
html5ever = "0.25"
|
|
|
|
infer = "0.9"
|
|
|
|
kuchiki = "0.8"
|
|
|
|
tokio = { version = "1.21.1", features = ["macros", "sync"] }
|
|
|
|
|
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" ] }
|
2021-04-25 17:34:33 +03:00
|
|
|
|
2022-04-29 19:28:13 +03:00
|
|
|
[target."cfg(unix)".dependencies]
|
|
|
|
libc = "0.2"
|
|
|
|
|
2022-06-14 06:03:11 +03:00
|
|
|
[target."cfg(target_os = \"linux\")".build-dependencies]
|
|
|
|
heck = "0.4"
|
|
|
|
|
2021-02-20 17:36:17 +03:00
|
|
|
[build-dependencies]
|
2022-06-16 05:08:50 +03:00
|
|
|
tauri-utils = { version = "1.0.0", features = [ "schema", "isolation" ], path = "../../core/tauri-utils" }
|
2022-05-18 15:53:56 +03:00
|
|
|
schemars = { version = "0.8", features = [ "url", "preserve_order" ] }
|
2021-02-20 17:36:17 +03:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
|
|
serde_json = "1.0"
|
2022-09-10 15:45:32 +03:00
|
|
|
url = { version = "2.3", features = [ "serde" ] }
|
2022-02-10 04:11:00 +03:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|