[package]
edition = "2021"
rust-version = "1.71"
name = "create-tauri-app"
version = "4.7.3"
authors = ["Tauri Programme within The Commons Conservancy"]
build = false
exclude = [
"node",
"worker",
".github",
".changes",
".scripts",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rapidly scaffold out a new tauri app project."
readme = "README.md"
keywords = ["tauri"]
categories = ["gui"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/tauri-apps/create-tauri-app"
[lib]
name = "create_tauri_app"
path = "src/lib.rs"
[[bin]]
name = "cargo-create-tauri-app"
path = "src/main.rs"
[dependencies.anyhow]
version = "1"
[dependencies.ctrlc]
version = "3.3"
[dependencies.dialoguer]
version = "0.12"
[dependencies.pico-args]
version = "0.5"
[dependencies.rust-embed]
version = "8.3"
features = ["interpolate-folder-path"]
[dependencies.whoami]
version = "1.6.0"
default-features = false
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
panic = "abort"
strip = true