Files
archived-create-tauri-app/Cargo.toml
github-actions[bot] 16c3d9f928 apply version updates (#931)
Co-authored-by: amrbashir <amrbashir@users.noreply.github.com>
2026-01-06 19:48:53 +02:00

40 lines
873 B
TOML

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