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-03-28 23:43:04 +03:00
|
|
|
version = "1.0.0-rc.8"
|
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-01-17 16:46:14 +03:00
|
|
|
rust-version = "1.57"
|
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"
|
2021-04-14 20:12:11 +03:00
|
|
|
homepage = "https://tauri.studio"
|
|
|
|
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",
|
|
|
|
"MergeModules/",
|
2022-04-03 17:26:57 +03:00
|
|
|
"scripts/",
|
2022-02-11 05:05:06 +03:00
|
|
|
"*.json",
|
|
|
|
"*.rs",
|
2022-02-12 01:41:50 +03:00
|
|
|
"tauri.gitignore"
|
2022-02-11 05:05:06 +03:00
|
|
|
]
|
2021-01-30 18:15:47 +03:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "cargo-tauri"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2022-02-27 23:35:43 +03:00
|
|
|
clap = { version = "3.1", features = [ "derive" ] }
|
2021-01-30 18:15:47 +03:00
|
|
|
anyhow = "1.0"
|
2022-03-28 23:43:04 +03:00
|
|
|
tauri-bundler = { version = "1.0.0-rc.4", path = "../bundler" }
|
2021-01-30 18:15:47 +03:00
|
|
|
colored = "2.0"
|
2022-03-10 03:01:08 +03:00
|
|
|
once_cell = "1.10"
|
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"
|
2022-02-09 17:36:29 +03:00
|
|
|
serde_with = "1.12"
|
2021-01-30 18:15:47 +03:00
|
|
|
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-03-28 23:43:04 +03:00
|
|
|
tauri-utils = { version = "1.0.0-rc.4", path = "../../core/tauri-utils", features = [ "isolation", "schema", "config-json5" ] }
|
2021-05-19 07:51:09 +03:00
|
|
|
toml = "0.5"
|
2021-02-24 21:16:31 +03:00
|
|
|
valico = "3.6"
|
2022-01-12 16:18:57 +03:00
|
|
|
handlebars = "4.2"
|
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"
|
2021-12-29 13:14:40 +03:00
|
|
|
ureq = "2.4"
|
2022-02-09 17:36:29 +03:00
|
|
|
os_info = "3.2"
|
2021-05-30 23:01:09 +03:00
|
|
|
semver = "1.0"
|
2022-03-22 04:34:07 +03:00
|
|
|
regex = "1.5.5"
|
2021-04-25 17:34:33 +03:00
|
|
|
lazy_static = "1"
|
|
|
|
libc = "0.2"
|
2021-05-19 07:51:09 +03:00
|
|
|
terminal_size = "0.1"
|
2021-04-25 17:34:33 +03:00
|
|
|
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"
|
2021-12-10 18:24:45 +03:00
|
|
|
url = { version = "2.2", 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"
|
2021-04-25 17:34:33 +03:00
|
|
|
|
2021-04-25 22:07:22 +03:00
|
|
|
[target."cfg(windows)".dependencies]
|
2021-04-25 17:34:33 +03:00
|
|
|
encode_unicode = "0.3"
|
|
|
|
|
2021-08-10 22:02:46 +03:00
|
|
|
[target."cfg(target_os = \"linux\")".build-dependencies]
|
2021-12-15 23:18:59 +03:00
|
|
|
heck = "0.4"
|
2021-08-10 22:02:46 +03:00
|
|
|
|
2021-02-20 17:36:17 +03:00
|
|
|
[build-dependencies]
|
2022-02-11 00:03:25 +03:00
|
|
|
tauri-utils = { version = "1.0.0-rc.0", features = [ "schema", "isolation" ], path = "../../core/tauri-utils" }
|
|
|
|
schemars = { version = "0.8", features = [ "url" ] }
|
2021-02-20 17:36:17 +03:00
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
|
|
serde_json = "1.0"
|
2022-02-09 17:36:29 +03:00
|
|
|
serde_with = "1.12"
|
2021-12-10 18:24:45 +03:00
|
|
|
url = { version = "2.2", features = [ "serde" ] }
|
2022-02-10 04:11:00 +03:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
lto = true
|