tauri/templates/rust/Cargo.toml

38 lines
864 B
TOML
Raw Normal View History

[package]
name = "app"
version = "0.1.0"
2019-08-14 14:24:08 +03:00
description = "A Quasar Tauri App"
author = []
license = ""
repository = ""
default-run = "app"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2019-08-14 14:24:08 +03:00
tauri-ui = { path = "../../tauri/bindings/rust" }
serde_json = "1.0.39"
serde = "1.0"
serde_derive = "1.0"
tiny_http = "0.6"
clap = {version = "2.33", features = ["yaml"]}
phf = "0.7.21"
includedir = "0.5.0"
2019-08-14 14:24:08 +03:00
tauri = { path = "../../tauri/lib/rust" }
[features]
dev = [] # has no explicit dependencies
embedded-server = [] # has no explicit dependencies
[package.metadata.bundle]
identifier = "com.quasar.dev"
icon = ["icons/32x32.png", "icons/128x128.png", "icons/128x128@2x.png", "icons/icon.icns", "icons/icon.ico"]
[[bin]]
name = "updater"
path = "src/updater.rs"
[[bin]]
name = "app"
path = "src/main.rs"