mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-30 06:23:46 +03:00
b9cc35ca39
* feat(template) serverless code for JS and CSS loading * fix(ffi) define struct (#5) Per Boscops self-raised, but never merged issue https://doc.rust-lang.org/nomicon/ffi.html#representing-opaque-structs Basically removes potentially undefined behavior
42 lines
933 B
TOML
Executable File
42 lines
933 B
TOML
Executable File
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Quasar Proton App"
|
|
author = []
|
|
license = ""
|
|
repository = ""
|
|
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
|
|
serverless = [] # 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"
|