tauri/cli/tauri.js/test/jest/fixtures/app/src-tauri/Cargo.toml
renovate[bot] 006514e4c6
chore(deps) Update Rust crate serde_json to 1.0.60 (#1102)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2020-12-04 23:00:50 -03:00

39 lines
702 B
TOML

workspace = { }
[package]
name = "app"
version = "0.1.0"
description = "A Tauri App"
author = [ "Daniel Thompson-Yvetot" ]
license = ""
repository = ""
default-run = "app"
edition = "2018"
[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.60"
serde = "1.0"
serde_derive = "1.0"
tiny_http = "0.7"
phf = "0.8.0"
includedir = "0.6.0"
tauri = { path = "../../../../../../../tauri", features = [ "all-api" ] }
[features]
embedded-server = [ "tauri/embedded-server" ]
no-server = [ "tauri/no-server" ]
[[bin]]
name = "app"
path = "src/main.rs"