37 lines
1.2 KiB
TOML
37 lines
1.2 KiB
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.3", features = [] }
|
|
|
|
[dependencies]
|
|
wellen.workspace = true
|
|
alacritty_terminal = { git = "https://github.com/alacritty/alacritty", rev = "cacdb5bb3b72bad2c729227537979d95af75978f" }
|
|
shared = { path = "../shared", features = ["backend"] }
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
tauri = { version = "2.1.1", features = ["macos-private-api"] }
|
|
tauri-plugin-window-state = "2.0.2"
|
|
tauri-plugin-dialog = "2.0.4"
|
|
once_cell = "1.19.0"
|
|
futures = "0.3.30"
|
|
reqwest = "0.12.9"
|
|
tokio = "*"
|
|
|
|
# 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" }
|