mirror of
https://github.com/tauri-apps/tauri.git
synced 2024-12-19 00:21:32 +03:00
b93bded180
* feat(cli) init tauri mode Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(cli:init) add force & logging flags, full JSDoc Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(cli:init) remove console.log Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(cli:dev) get rust compile to finish Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(cli:build) get rust compile to finish Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(cli) set template with current working defaults Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * chore(version) bump Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * fix(typo) Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * fix(template): missing name warning Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * fix(bundler): correct repository link Signed-off-by: Daniel Thompson-Yvetot <denjell@quasar.dev> * feat(lib|cli) read config from tauriDir * chore(cli) remove console.log statement * fix(embedded-server) JS content type * feat(template): add rust2018 flag * feat(cli): cleanup
38 lines
909 B
TOML
Executable File
38 lines
909 B
TOML
Executable File
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
author = ["you"]
|
|
license = ""
|
|
repository = ""
|
|
default-run = "app"
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tauri-ui = { path = "../node_modules/@tauri-apps/tauri/bindings/rust" }
|
|
serde_json = "1.0.39"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
tiny_http = "0.6"
|
|
phf = "0.7.21"
|
|
includedir = "0.5.0"
|
|
tauri = { path = "../node_modules/@tauri-apps/tauri/lib/rust" }
|
|
|
|
[features]
|
|
dev = ["tauri/dev"] # has no explicit dependencies
|
|
embedded-server = ["tauri/embedded-server"] # has no explicit dependencies
|
|
|
|
[package.metadata.bundle]
|
|
identifier = "com.tauri.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"
|