mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 16:41:34 +03:00
def79c5af1
* chore(examples) Update Rust crate serde_json to 1.0.46 * Update Cargo.toml Co-authored-by: WhiteSource Renovate <renovatebot@gmail.com> Co-authored-by: Tensor-Programming <abeltensor@tensor-programming.com>
41 lines
744 B
TOML
41 lines
744 B
TOML
workspace = { }
|
|
|
|
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
author = [ "you" ]
|
|
license = ""
|
|
repository = ""
|
|
default-run = "app"
|
|
edition = "2018"
|
|
build = "src/build.rs"
|
|
|
|
[package.metadata.bundle]
|
|
identifier = "com.tauri.dev"
|
|
icon = [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
|
|
[dependencies]
|
|
serde_json = "1.0"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
tauri = { path = "../../../../tauri", features = [ "all-api", "edge" ] }
|
|
|
|
[target."cfg(windows)".build-dependencies]
|
|
winres = "0.1"
|
|
|
|
[features]
|
|
dev-server = [ "tauri/dev-server" ]
|
|
embedded-server = [ "tauri/embedded-server" ]
|
|
no-server = [ "tauri/no-server" ]
|
|
|
|
[[bin]]
|
|
name = "app"
|
|
path = "src/main.rs"
|