Files
nym/nym-connect/src-tauri/Cargo.toml
T
2022-06-10 13:55:14 +02:00

51 lines
1.2 KiB
TOML

[package]
name = "nym-connect"
version = "1.0.0"
description = "nym-connect"
authors = ["Nym Technologies SA"]
license = ""
repository = ""
default-run = "nym-connect"
edition = "2021"
build = "src/build.rs"
rust-version = "1.58"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[build-dependencies]
tauri-build = { version = "=1.0.0-rc.7", features = [] }
tauri-codegen = "=1.0.0-rc.5"
tauri-macros = "=1.0.0-rc.5"
[dependencies]
bip39 = "1.0"
dirs = "4.0"
eyre = "0.6.5"
futures = "0.3"
once_cell = "1.12"
rand = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tauri = { version = "=1.0.0-rc.8", features = ["ayatana-tray", "shell-open", "system-tray"] }
tendermint-rpc = "0.23.0"
thiserror = "1.0"
tokio = { version = "1.19.1", features = ["sync"] }
url = "2.2"
log = "0.4"
pretty_env_logger = "0.4.0"
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs", branch = "release"}
client-core = { path = "../../clients/client-core" }
nym-socks5-client = { path = "../../clients/socks5" }
config = { path = "../../common/config" }
[dev-dependencies]
ts-rs = "6.1.2"
tempfile = "3.3.0"
[features]
default = ["custom-protocol"]
custom-protocol = ["tauri/custom-protocol"]