62 lines
1.8 KiB
TOML
62 lines
1.8 KiB
TOML
[package]
|
|
name = "nym-connect"
|
|
version = "1.1.4"
|
|
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.2.1", features = [] }
|
|
|
|
tauri-codegen = "^1.2.1"
|
|
tauri-macros = "^1.2.1"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0"
|
|
bip39 = "1.0"
|
|
chrono = "0.4"
|
|
dirs = "4.0"
|
|
eyre = "0.6.5"
|
|
fix-path-env = { git = "https://github.com/tauri-apps/fix-path-env-rs", branch = "release"}
|
|
futures = "0.3"
|
|
fern = { version = "0.6.1", features = ["colored"] }
|
|
itertools = "0.10.5"
|
|
log = { version = "0.4", features = ["serde"] }
|
|
pretty_env_logger = "0.4.0"
|
|
rand = "0.8"
|
|
reqwest = { version = "0.11", features = ["json", "socks"] }
|
|
rust-embed = { version = "6.4.2", features = ["include-exclude"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_repr = "0.1"
|
|
tap = "1.0.1"
|
|
tauri = { version = "^1.2.2", features = ["clipboard-write-text", "macos-private-api", "notification-all", "shell-open", "system-tray", "updater", "window-close", "window-minimize", "window-start-dragging"] }
|
|
tendermint-rpc = "0.23.0"
|
|
thiserror = "1.0"
|
|
tokio = { version = "1.21.2", features = ["sync", "time"] }
|
|
url = "2.2"
|
|
yaml-rust = "0.4"
|
|
|
|
client-core = { path = "../../clients/client-core" }
|
|
config-common = { path = "../../common/config", package = "config" }
|
|
crypto = { path = "../../common/crypto" }
|
|
logging = { path = "../../common/logging"}
|
|
nym-socks5-client = { path = "../../clients/socks5" }
|
|
task = { path = "../../common/task" }
|
|
topology = { path = "../../common/topology" }
|
|
|
|
[dev-dependencies]
|
|
ts-rs = "6.1.2"
|
|
tempfile = "3.3.0"
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|