2019-12-21 01:28:11 +03:00
|
|
|
workspace = { }
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "app"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "A Tauri App"
|
|
|
|
author = [ "you" ]
|
|
|
|
license = ""
|
|
|
|
repository = ""
|
|
|
|
default-run = "app"
|
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[package.metadata.bundle]
|
|
|
|
identifier = "com.tauri.dev"
|
|
|
|
icon = [
|
|
|
|
"icons/32x32.png",
|
|
|
|
"icons/128x128.png",
|
|
|
|
"icons/128x128@2x.png",
|
|
|
|
"icons/icon.icns",
|
|
|
|
"icons/icon.ico"
|
|
|
|
]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
serde_json = "1.0.41"
|
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
|
|
|
tiny_http = "0.6"
|
|
|
|
phf = "0.7.24"
|
|
|
|
includedir = "0.5.0"
|
2019-12-26 13:35:24 +03:00
|
|
|
|
|
|
|
[dependencies.tauri]
|
|
|
|
path = "../../../../tauri"
|
|
|
|
features = [ "edge" ]
|
2019-12-21 01:28:11 +03:00
|
|
|
|
|
|
|
[features]
|
|
|
|
dev-server = [ "tauri/dev-server" ]
|
|
|
|
embedded-server = [ "tauri/embedded-server" ]
|
|
|
|
no-server = [ "tauri/no-server" ]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "app"
|
|
|
|
path = "src/main.rs"
|