-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
66 lines (62 loc) · 1.73 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
[package]
name = "metamask"
version = "0.1.0"
edition = "2021"
description = "MetaMask wallet for the desktop"
default-run = "metamask"
[dependencies]
anyhow = "1"
wry = "0.13.1"
rust-embed = "6.3"
tokio = { version = "1", features = ["full"] }
futures = "0.3"
mime_guess = "2"
mime = "0.3"
clap = { version = "3", features = ["derive"] }
ctrlc = { version = "3", features = ["termination"] }
log = "0.4"
pretty_env_logger = "0.4"
actix = { version = "0.12", default-features = false }
actix-web = "4.0.0-rc.2"
actix-cors = "0.6.0-beta.8"
actix-rt = "2.6"
url = "2"
json-rpc2 = { version = "0.11", features = ["async"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
ethers-signers = { version = "0.6.2", default-features = false }
ethers-core = "0.6"
once_cell = "1.9"
async-trait = "0.1"
hex = "0.4"
home = "0.5.3"
bip39 = { version = "1", features = ["rand"] }
rand = "0.8"
eth-keystore = "0.3"
reqwest = { version = "0.11", features = ["json"] }
tinyfiledialogs = "3.9"
qrcode = "0.12"
image = "0.23"
totp-rs = "0.7.3"
zeroize = { version = "1.5", features = ["zeroize_derive"] }
open = "2"
chrono = "0.4"
[dependencies.oxide-auth]
version = "0.5.1"
branch = "actix-4.x"
git = "https://github.com/tmpfs/oxide-auth"
[dependencies.oxide-auth-actix]
version = "0.1.0"
branch = "actix-4.x"
git = "https://github.com/tmpfs/oxide-auth"
[package.metadata.bundle]
name = "MetaMask"
identifier = "io.metamask.wallet"
icon = ["icon/32x32.png", "icon/128x128.png", "icon/[email protected]"]
version = "1.0.0"
#resources = ["assets", "images/**/*.png", "secrets/public_key.txt"]
copyright = "Copyright (c) Consensys 2022. All rights reserved."
short_description = "Crypto Wallet"
long_description = """
A crypto wallet and gateway to blockchain applications.
"""