27 lines
648 B
TOML
27 lines
648 B
TOML
|
[package]
|
||
|
name = "tauri-app"
|
||
|
version = "0.0.0"
|
||
|
description = "A Tauri App"
|
||
|
authors = ["you"]
|
||
|
edition = "2021"
|
||
|
|
||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||
|
|
||
|
[lib]
|
||
|
name = "tauri_app_lib"
|
||
|
crate-type = ["lib", "cdylib"]
|
||
|
|
||
|
[build-dependencies]
|
||
|
tauri-build = { version = "2.0.0-beta", features = [] }
|
||
|
|
||
|
[dependencies]
|
||
|
tauri = { version = "2.0.0-beta", features = [] }
|
||
|
tauri-plugin-shell = "2.0.0-beta"
|
||
|
serde_json = "1.0"
|
||
|
wasmtime = "18.0.1"
|
||
|
|
||
|
[features]
|
||
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
||
|
# DO NOT REMOVE!!
|
||
|
custom-protocol = ["tauri/custom-protocol"]
|