26 lines
768 B
TOML
26 lines
768 B
TOML
[package]
|
|
name = "fastwave"
|
|
version = "0.1.0"
|
|
authors = ["FastWave authors"]
|
|
repository = "https://github.com/JoyOfHardware/FastWave2.0"
|
|
edition = "2021"
|
|
rust-version = "1.70"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "app_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "=2.0.0-beta.17", features = [] }
|
|
|
|
[dependencies]
|
|
wellen.workspace = true
|
|
shared = { path = "../shared", features = ["backend"] }
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tauri = { version = "=2.0.0-beta.22", features = ["macos-private-api", "linux-ipc-protocol"] }
|
|
tauri-plugin-window-state = "=2.0.0-beta.9"
|
|
tauri-plugin-dialog = "=2.0.0-beta.9"
|