mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-11 10:43:31 +02:00
* refactor(core): split allowlist configuration per module * fix: build with all features * fix(cli): run fmt * fix(core): run fmt
28 lines
502 B
TOML
28 lines
502 B
TOML
workspace = { }
|
|
|
|
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = [ "you" ]
|
|
license = ""
|
|
repository = ""
|
|
default-run = "app"
|
|
edition = "2018"
|
|
build = "src/build.rs"
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = [ "derive" ] }
|
|
tauri = { path = "../../..", features =["api-all", "cli"]}
|
|
|
|
[target."cfg(windows)".build-dependencies]
|
|
winres = "0.1"
|
|
|
|
[features]
|
|
embedded-server = [ "tauri/embedded-server" ]
|
|
|
|
[[bin]]
|
|
name = "app"
|
|
path = "src/main.rs"
|