mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-01 03:02:28 +03:00
11b5e9c525
Co-authored-by: lucasfernog <lucasfernog@users.noreply.github.com>
151 lines
4.0 KiB
TOML
151 lines
4.0 KiB
TOML
[package]
|
|
name = "tauri-cli"
|
|
version = "2.0.0-rc.18"
|
|
authors = ["Tauri Programme within The Commons Conservancy"]
|
|
edition = "2021"
|
|
rust-version = "1.71"
|
|
categories = ["gui", "web-programming"]
|
|
license = "Apache-2.0 OR MIT"
|
|
homepage = "https://tauri.app"
|
|
repository = "https://github.com/tauri-apps/tauri"
|
|
description = "Command line interface for building Tauri apps"
|
|
include = [
|
|
"src/",
|
|
"/templates",
|
|
"scripts/",
|
|
"*.json",
|
|
"*.rs",
|
|
"tauri.gitignore",
|
|
"tauri-dev-watcher.gitignore",
|
|
"LICENSE*",
|
|
]
|
|
|
|
[package.metadata.binstall]
|
|
pkg-url = "{ repo }/releases/download/tauri-cli-v{ version }/cargo-tauri-{ target }.{ archive-format }"
|
|
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"
|
|
|
|
[[bin]]
|
|
name = "cargo-tauri"
|
|
path = "src/main.rs"
|
|
|
|
[target."cfg(any(target_os = \"linux\", target_os = \"dragonfly\", target_os = \"freebsd\", target_os = \"openbsd\", target_os = \"netbsd\", target_os = \"windows\", target_os = \"macos\"))".dependencies]
|
|
cargo-mobile2 = { version = "0.17.2", default-features = false }
|
|
|
|
[dependencies]
|
|
jsonrpsee = { version = "0.24.5", features = ["server"] }
|
|
jsonrpsee-core = "0.24.5"
|
|
jsonrpsee-client-transport = { version = "0.24.5", features = ["ws"] }
|
|
jsonrpsee-ws-client = { version = "0.24.5", default-features = false }
|
|
sublime_fuzzy = "0.7"
|
|
clap_complete = "4"
|
|
clap = { version = "4.5", features = ["derive", "env"] }
|
|
anyhow = "1.0"
|
|
tauri-bundler = { version = "2.0.1-rc.15", default-features = false, path = "../tauri-bundler" }
|
|
colored = "2.1"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = { version = "1.0", features = ["preserve_order"] }
|
|
notify = "6.1"
|
|
notify-debouncer-mini = "0.4"
|
|
shared_child = "1.0"
|
|
duct = "0.13"
|
|
toml_edit = { version = "0.22", features = ["serde"] }
|
|
json-patch = "2.0"
|
|
tauri-utils = { version = "2.0.0-rc.13", path = "../tauri-utils", features = [
|
|
"isolation",
|
|
"schema",
|
|
"config-json5",
|
|
"config-toml",
|
|
] }
|
|
tauri-utils-v1 = { version = "1", package = "tauri-utils", features = [
|
|
"isolation",
|
|
"schema",
|
|
"config-json5",
|
|
"config-toml",
|
|
] }
|
|
toml = "0.8"
|
|
jsonschema = "0.18"
|
|
handlebars = "6.0"
|
|
include_dir = "0.7"
|
|
minisign = "=0.7.3"
|
|
base64 = "0.22.0"
|
|
ureq = { version = "2.9.6", default-features = false, features = ["gzip"] }
|
|
os_info = "3"
|
|
semver = "1.0"
|
|
regex = "1.10.3"
|
|
heck = "0.5"
|
|
dialoguer = "0.11"
|
|
url = { version = "2.5", features = ["serde"] }
|
|
os_pipe = "1"
|
|
ignore = "0.4"
|
|
ctrlc = "3.4"
|
|
log = { version = "0.4.21", features = ["kv", "kv_std"] }
|
|
env_logger = "0.11.5"
|
|
icns = { package = "tauri-icns", version = "0.1" }
|
|
image = { version = "0.25", default-features = false, features = ["ico"] }
|
|
axum = { version = "0.7.4", features = ["ws"] }
|
|
html5ever = "0.26"
|
|
kuchiki = { package = "kuchikiki", version = "0.8" }
|
|
tokio = { version = "1", features = ["macros", "sync"] }
|
|
common-path = "1"
|
|
serde-value = "0.7.0"
|
|
itertools = "0.13"
|
|
local-ip-address = "0.6"
|
|
css-color = "0.2"
|
|
resvg = "0.43.0"
|
|
dunce = "1"
|
|
glob = "0.3"
|
|
oxc_parser = "0.24"
|
|
oxc_span = "0.24"
|
|
oxc_allocator = "0.24"
|
|
oxc_ast = "0.24"
|
|
magic_string = "0.3"
|
|
phf = { version = "0.11", features = ["macros"] }
|
|
walkdir = "2"
|
|
elf = "0.7"
|
|
memchr = "2"
|
|
tempfile = "3"
|
|
uuid = { version = "1", features = ["v5"] }
|
|
rand = "0.8"
|
|
|
|
[dev-dependencies]
|
|
insta = "1"
|
|
pretty_assertions = "1"
|
|
|
|
[target."cfg(windows)".dependencies.windows-sys]
|
|
version = "0.59"
|
|
features = [
|
|
"Win32_Storage_FileSystem",
|
|
"Win32_System_IO",
|
|
"Win32_System_Console",
|
|
]
|
|
|
|
[target."cfg(unix)".dependencies]
|
|
libc = "0.2"
|
|
|
|
[target."cfg(target_os = \"macos\")".dependencies]
|
|
plist = "1"
|
|
tauri-macos-sign = { version = "0.1.1-rc.1", path = "../tauri-macos-sign" }
|
|
object = { version = "0.36", default-features = false, features = [
|
|
"macho",
|
|
"read_core",
|
|
"std",
|
|
] }
|
|
ar = "0.9"
|
|
|
|
[features]
|
|
default = ["rustls"]
|
|
native-tls = [
|
|
"tauri-bundler/native-tls",
|
|
"cargo-mobile2/native-tls",
|
|
"ureq/native-tls",
|
|
]
|
|
native-tls-vendored = ["native-tls", "tauri-bundler/native-tls-vendored"]
|
|
rustls = ["tauri-bundler/rustls", "cargo-mobile2/rustls", "ureq/tls"]
|