[package] name = "livesplit-one" version = "0.1.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 [build-dependencies] tauri-build = { version = "2", features = [] } [dependencies] tauri = { version = "2", features = [ ] } serde = { version = "1" } serde_derive = { version = "1" } serde_json = "1" livesplit-core = { path = "../livesplit-core" } tauri-plugin-dialog = "2" tauri-plugin-http = "2" tokio = { version = "1", features = ["full"] } tokio-tungstenite = "0.20" futures-util = "0.3" uuid = { version = "1.0", features = ["v4"] } [features] # This feature is used for production builds or when a dev server is not specified, DO NOT REMOVE!! custom-protocol = ["tauri/custom-protocol"] [profile.release] lto = true panic = "abort" codegen-units = 1 strip = true