mirror of
https://github.com/tauri-apps/create-tauri-app.git
synced 2026-01-31 00:45:16 +01:00
40 lines
873 B
TOML
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 }
|