Files
renovate[bot] efb1450f2c chore(examples) Update Rust Deps (#598)
Co-authored-by: Renovate Bot <bot@renovateapp.com>
2021-05-03 15:27:16 -03:00

26 lines
496 B
TOML

[package]
name = "app"
version = "0.1.0"
description = "A Tauri App"
authors = [ "you" ]
license = ""
repository = ""
default-run = "app"
edition = "2018"
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = [ "derive" ] }
tauri = { version = "1.0.0-beta-rc.4", features = [ "all-api" ] }
[build-dependencies]
tauri-build = "1.0.0-beta-rc.1"
[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]
[[bin]]
name = "app"
path = "src/main.rs"