2019-07-14 15:47:29 +03:00
|
|
|
[package]
|
|
|
|
name = "app"
|
|
|
|
version = "0.1.0"
|
2019-07-21 00:42:07 +03:00
|
|
|
description = "A Quasar Proton App"
|
|
|
|
author = []
|
|
|
|
license = ""
|
|
|
|
repository = ""
|
2019-07-14 15:47:29 +03:00
|
|
|
build = "build.rs"
|
|
|
|
include = ["data"]
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
proton-ui = { path = "../../proton/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"
|
|
|
|
proton = { path = "../../proton/lib/rust" }
|
|
|
|
|
|
|
|
[build-dependencies]
|
|
|
|
includedir_codegen = "0.5.0"
|
|
|
|
|
|
|
|
[features]
|
|
|
|
dev = [] # has no explicit dependencies
|
2019-07-21 01:53:11 +03:00
|
|
|
serverless = [] # has no explicit dependencies
|
2019-07-14 15:47:29 +03:00
|
|
|
|
|
|
|
[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"
|