2020-03-07 19:40:24 +03:00
|
|
|
workspace = { }
|
|
|
|
|
|
|
|
[package]
|
|
|
|
name = "app"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "A Tauri App"
|
|
|
|
author = [ "Daniel Thompson-Yvetot" ]
|
|
|
|
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]
|
2020-05-22 13:57:08 +03:00
|
|
|
serde_json = "1.0.53"
|
2020-03-07 19:40:24 +03:00
|
|
|
serde = "1.0"
|
|
|
|
serde_derive = "1.0"
|
2020-04-26 14:30:44 +03:00
|
|
|
tiny_http = "0.7"
|
2020-03-07 19:40:24 +03:00
|
|
|
phf = "0.8.0"
|
2020-05-29 22:00:51 +03:00
|
|
|
includedir = "0.6.0"
|
2020-03-07 19:40:24 +03:00
|
|
|
tauri = { path = "../../../../../../../tauri", features = [ "all-api", "edge" ] }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
embedded-server = [ "tauri/embedded-server" ]
|
|
|
|
no-server = [ "tauri/no-server" ]
|
|
|
|
|
|
|
|
[[bin]]
|
|
|
|
name = "app"
|
|
|
|
path = "src/main.rs"
|