mirror of
https://github.com/ApfelTeeSaft/LiveSplitOne.git
synced 2026-08-26 19:23:40 +00:00
Added Tokio to handle Websocket Requests from external programs, for example SpltNotes, did not have time to dig through the core, so someone else needs to finish this impkementation :p
35 lines
886 B
TOML
35 lines
886 B
TOML
[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 |