8a3f7a869b
* wallet: add archive_wallet_file * wallet: fix append filename test * wallet: simplify exit logic * rustfmt * changelog: add entry * wallet: fix append filename test
74 lines
2.0 KiB
TOML
74 lines
2.0 KiB
TOML
[package]
|
|
name = "nym_wallet"
|
|
version = "1.0.6"
|
|
description = "Nym Native Wallet"
|
|
authors = ["Nym Technologies SA"]
|
|
license = ""
|
|
repository = ""
|
|
default-run = "nym_wallet"
|
|
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.2", features = [] }
|
|
|
|
tauri-codegen = "=1.0.0-rc.1"
|
|
tauri-macros = "=1.0.0-rc.1"
|
|
|
|
[dependencies]
|
|
bip39 = "1.0"
|
|
cfg-if = "1.0.0"
|
|
chrono = "0.4"
|
|
colored = "2.0"
|
|
dirs = "4.0"
|
|
dotenv = "0.15.0"
|
|
eyre = "0.6.5"
|
|
futures = "0.3.15"
|
|
itertools = "0.10"
|
|
log = "0.4"
|
|
once_cell = "1.7.2"
|
|
pretty_env_logger = "0.4"
|
|
rand = "0.6.5"
|
|
reqwest = "0.11.9"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
strum = { version = "0.23", features = ["derive"] }
|
|
tauri = { version = "=1.0.0-rc.2", features = ["clipboard-all", "shell-open", "updater", "window-maximize"] }
|
|
tendermint-rpc = "0.23.0"
|
|
thiserror = "1.0"
|
|
tokio = { version = "1.10", features = ["sync", "time"] }
|
|
toml = "0.5.8"
|
|
url = "2.2"
|
|
|
|
aes-gcm = "0.9.4"
|
|
argon2 = { version = "0.3.2", features = ["std"] }
|
|
base64 = "0.13"
|
|
zeroize = "1.4.3"
|
|
|
|
cosmwasm-std = "1.0.0"
|
|
cosmrs = "0.7.0"
|
|
|
|
validator-client = { path = "../../common/client-libs/validator-client", features = [
|
|
"nymd-client",
|
|
] }
|
|
mixnet-contract-common = { path = "../../common/cosmwasm-smart-contracts/mixnet-contract" }
|
|
vesting-contract-common = { path = "../../common/cosmwasm-smart-contracts/vesting-contract" }
|
|
config = { path = "../../common/config" }
|
|
coconut-interface = { path = "../../common/coconut-interface" }
|
|
# Used for Type conversion, can be extracted but its a lot of work
|
|
vesting-contract = { path = "../../contracts/vesting" }
|
|
nym-types = { path = "../../common/types" }
|
|
nym-wallet-types = { path = "../nym-wallet-types" }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.3.0"
|
|
ts-rs = "6.1.2"
|
|
|
|
[features]
|
|
default = ["custom-protocol"]
|
|
custom-protocol = ["tauri/custom-protocol"]
|
|
generate-ts = []
|