FastWave2.0/src-tauri/Cargo.toml

33 lines
1.1 KiB
TOML
Raw Normal View History

2024-05-27 19:24:46 +00:00
[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]
2024-06-03 17:11:22 +00:00
tauri-build = { version = "=2.0.0-beta.17", features = [] }
2024-05-27 19:24:46 +00:00
[dependencies]
wellen.workspace = true
2024-06-06 20:04:57 +00:00
shared = { path = "../shared", features = ["backend"] }
2024-05-27 19:24:46 +00:00
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
2024-06-03 17:11:22 +00:00
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"
2024-07-07 20:26:44 +00:00
once_cell = "1.19.0"
2024-07-05 00:09:26 +00:00
# wasmtime = "22.0.0"
# wasmtime-wasi = "22.0.0"
# ~23.0.0
wasmtime = { git = "https://github.com/bytecodealliance/wasmtime", rev = "842fa767acdc26f096ac108605353b8b71e23169" }
wasmtime-wasi = { git = "https://github.com/bytecodealliance/wasmtime", rev = "842fa767acdc26f096ac108605353b8b71e23169" }