-
Notifications
You must be signed in to change notification settings - Fork 149
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 873 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 873 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[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.12"
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 }