forked from coracle/flotilla
c970038943
Adds a minimal Tauri desktop bootstrap. Run with: pnpm run tauri:dev Reviewed-on: coracle/flotilla#66 Co-authored-by: triesap <tyson@radroots.org> Co-committed-by: triesap <tyson@radroots.org>
19 lines
357 B
TOML
19 lines
357 B
TOML
[package]
|
|
name = "flotilla"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
name = "flotilla_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.5.3", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2.9.5", features = [] }
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|