2021-02-09 21:20:24 +03:00
|
|
|
workspace = { }
|
2021-01-30 18:15:47 +03:00
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "tauri-cli"
|
2021-08-24 17:40:10 +03:00
|
|
|
version = "1.0.0-beta.7"
|
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"
|
|
|
|
rust-version = "1.56"
|
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"
|
2021-04-14 21:51:25 +03:00
|
|
|
include = [ "src/", "/templates", "MergeModules/", "*.json", "*.rs" ]
|
2021-01-30 18:15:47 +03:00
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "cargo-tauri"
|
|
|
|
path = "src/main.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-10-20 17:01:00 +03:00
|
|
|
clap = { version = "3.0.0-beta.5", features = [ "yaml" ] }
|
2021-01-30 18:15:47 +03:00
|
|
|
anyhow = "1.0"
|
2021-08-16 23:59:06 +03:00
|
|
|
tauri-bundler = { version = "1.0.0-beta.4", path = "../bundler" }
|
2021-01-30 18:15:47 +03:00
|
|
|
colored = "2.0"
|
2021-06-16 15:19:50 +03:00
|
|
|
once_cell = "1.8"
|
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"
|
2021-10-20 17:01:00 +03:00
|
|
|
serde_with = "1.11"
|
2021-01-30 18:15:47 +03:00
|
|
|
notify = "4.0"
|
|
|
|
shared_child = "0.3"
|
2021-11-17 15:48:58 +03:00
|
|
|
toml_edit = "0.9"
|
2021-01-30 18:15:47 +03:00
|
|
|
json-patch = "0.2"
|
2021-02-20 17:36:17 +03:00
|
|
|
schemars = "0.8"
|
2021-05-19 07:51:09 +03:00
|
|
|
toml = "0.5"
|
2021-02-24 21:16:31 +03:00
|
|
|
valico = "3.6"
|
2021-07-08 18:05:06 +03:00
|
|
|
handlebars = "4.1"
|
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-10-27 17:58:15 +03:00
|
|
|
ureq = "2.3"
|
2021-03-26 04:19:32 +03:00
|
|
|
os_info = "3.0"
|
2021-05-30 23:01:09 +03:00
|
|
|
semver = "1.0"
|
2021-05-05 08:03:41 +03:00
|
|
|
regex = "1.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"
|
2021-08-09 00:14:52 +03:00
|
|
|
zeroize = "1.4"
|
2021-09-24 05:37:27 +03:00
|
|
|
glob = "0.3"
|
2021-09-28 02:15:17 +03:00
|
|
|
heck = "0.3"
|
2021-10-22 16:41:43 +03:00
|
|
|
dialoguer = "0.9"
|
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]
|
|
|
|
heck = "0.3"
|
|
|
|
|
2021-02-20 17:36:17 +03:00
|
|
|
[build-dependencies]
|
|
|
|
schemars = "0.8"
|
|
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
|
|
serde_json = "1.0"
|
2021-10-20 17:01:00 +03:00
|
|
|
serde_with = "1.11"
|