Files
tauri/examples/helloworld/src-tauri/Cargo.toml
2021-03-14 23:35:48 -03:00

18 lines
450 B
TOML

[package]
name = "helloworld"
version = "0.1.0"
description = "A very simple Tauri Appplication"
edition = "2018"
[build-dependencies]
tauri-build = { path = "../../../core/tauri-build", features = [ "codegen" ]}
[dependencies]
serde_json = "1.0"
serde = { version = "1.0", features = [ "derive" ] }
tauri = { path = "../../../tauri", features =["api-all"]}
[features]
default = [ "custom-protocol" ]
custom-protocol = [ "tauri/custom-protocol" ]