32 lines
890 B
TOML
32 lines
890 B
TOML
[package]
|
|
name = "nymvpn-ui"
|
|
version = "0.0.0"
|
|
description = "Application UI for Nym VPN desktop clients"
|
|
authors = ["you"]
|
|
license = ""
|
|
repository = ""
|
|
edition = "2021"
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "1.5", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "1.5.2", features = ["updater", "shell-open"] }
|
|
tokio = { version = "1.33", features = ["rt", "sync", "time", "fs"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3.1", features = ["tracing-log", "env-filter"] }
|
|
anyhow = "1.0"
|
|
dotenvy = "0.15.7"
|
|
thiserror = "1.0"
|
|
ts-rs = { version = "7.0.0", features = ["chrono-impl"] }
|
|
once_cell = "1.18.0"
|
|
toml = "0.8.5"
|
|
time = "0.3.9"
|
|
|
|
[features]
|
|
# this feature is used for production builds or when `devPath` points to the filesystem
|
|
# DO NOT REMOVE!!
|
|
custom-protocol = ["tauri/custom-protocol"]
|