b866be4fcf
- Update the wallet to the latest version
79 lines
2.5 KiB
TOML
79 lines
2.5 KiB
TOML
[package]
|
|
name = "NymWallet"
|
|
description = "Nym Native Wallet"
|
|
version = "1.2.21"
|
|
authors = ["Nym Technologies SA"]
|
|
edition = "2021"
|
|
license = ""
|
|
repository = ""
|
|
rust-version = "1.85"
|
|
publish = false
|
|
build = "src/build.rs"
|
|
default-run = "NymWallet"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2.5.6", features = [] }
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.68"
|
|
tauri-plugin-updater = "2.10.1"
|
|
tauri-plugin-clipboard-manager = "2.3.2"
|
|
tauri-plugin-process = "2.3.1"
|
|
tauri-plugin-opener = "2.5.3"
|
|
bip39 = { version = "2.0.0", features = ["zeroize", "rand"] }
|
|
cfg-if = "1.0.0"
|
|
colored = "2.0"
|
|
dirs = "4.0"
|
|
dotenvy = "0.15.6"
|
|
eyre = "0.6.5"
|
|
fern = { version = "0.6.1", features = ["colored"] }
|
|
futures = "0.3.15"
|
|
itertools = "0.10"
|
|
log = { version = "0.4", features = ["serde"] }
|
|
once_cell = "1.7.2"
|
|
pretty_env_logger = "0.4"
|
|
reqwest = { version = "0.12.4", features = ["json"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_repr = "0.1"
|
|
strum = { version = "0.27.2", features = ["derive"] }
|
|
tap = "1"
|
|
tauri = { version = "2.11.1", features = ["devtools"] }
|
|
#tendermint-rpc = "0.23.0"
|
|
time = { version = "0.3.30", features = ["local-offset"] }
|
|
thiserror = "1.0"
|
|
tokio = { version = "1.44", features = ["full"] }
|
|
toml = "0.5.8"
|
|
url = "2.2"
|
|
k256 = { version = "0.13", features = ["ecdsa", "sha256"] }
|
|
base64 = "0.13"
|
|
zeroize = { version = "1.5", features = ["zeroize_derive", "serde"] }
|
|
plist = "1.6.0"
|
|
|
|
cosmwasm-std = "=2.2.2"
|
|
cosmrs = { version = "0.22.0" }
|
|
|
|
nym-node-requests = { path = "../../nym-node/nym-node-requests" }
|
|
nym-validator-client = { path = "../../common/client-libs/validator-client" }
|
|
nym-crypto = { path = "../../common/crypto", features = ["asymmetric"] }
|
|
nym-contracts-common = { path = "../../common/cosmwasm-smart-contracts/contracts-common" }
|
|
nym-mixnet-contract-common = { path = "../../common/cosmwasm-smart-contracts/mixnet-contract" }
|
|
nym-vesting-contract-common = { path = "../../common/cosmwasm-smart-contracts/vesting-contract" }
|
|
nym-config = { path = "../../common/config" }
|
|
nym-types = { path = "../../common/types" }
|
|
nym-wallet-types = { path = "../nym-wallet-types" }
|
|
nym-store-cipher = { path = "../../common/store-cipher", features = ["json"] }
|
|
|
|
[dev-dependencies]
|
|
nym-crypto = { path = "../../common/crypto", features = ["rand"] }
|
|
rand_chacha = "0.3"
|
|
tempfile = "3.3.0"
|
|
ts-rs = "12.0.1"
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|
|
generate-ts = []
|