25 lines
759 B
TOML
25 lines
759 B
TOML
[package]
|
|
name = "orbital-simulator-gui"
|
|
version = "0.1.0"
|
|
description = "Desktop GUI for Orbital Simulator"
|
|
authors = ["Thomas Faour"]
|
|
license = "MIT"
|
|
repository = ""
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.0", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1.0", features = ["api-all"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
[features]
|
|
# by default Tauri runs in production mode
|
|
# when `tauri dev` runs it is executed with `cargo run --no-default-features` if `devPath` is an URL
|
|
default = ["custom-protocol"]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
custom-protocol = ["tauri/custom-protocol"]
|