2019-07-14 15:47:29 +03:00
|
|
|
[package]
|
|
|
|
name = "app"
|
|
|
|
version = "0.1.0"
|
2019-10-07 21:36:56 +03:00
|
|
|
description = "A Tauri App"
|
|
|
|
author = ["you"]
|
2019-07-21 00:42:07 +03:00
|
|
|
license = ""
|
|
|
|
repository = ""
|
2019-08-16 01:48:32 +03:00
|
|
|
default-run = "app"
|
2019-10-07 21:36:56 +03:00
|
|
|
edition = "2018"
|
2019-07-14 15:47:29 +03:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
|
|
|
[dependencies]
|
2019-10-07 21:36:56 +03:00
|
|
|
tauri-ui = { path = "../node_modules/@tauri-apps/tauri/bindings/rust" }
|
2019-07-14 15:47:29 +03:00
|
|
|
serde_json = "1.0.39"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
tiny_http = "0.6"
|
|
|
|
phf = "0.7.21"
|
|
|
|
includedir = "0.5.0"
|
2019-10-07 21:36:56 +03:00
|
|
|
tauri = { path = "../node_modules/@tauri-apps/tauri/lib/rust" }
|
2019-07-14 15:47:29 +03:00
|
|
|
|
|
|
|
[features]
|
2019-08-16 13:58:30 +03:00
|
|
|
dev = ["tauri/dev"] # has no explicit dependencies
|
|
|
|
embedded-server = ["tauri/embedded-server"] # has no explicit dependencies
|
2019-07-14 15:47:29 +03:00
|
|
|
|
|
|
|
[package.metadata.bundle]
|
2019-10-07 21:36:56 +03:00
|
|
|
identifier = "com.tauri.dev"
|
2019-07-14 15:47:29 +03:00
|
|
|
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"
|