forked from FuelLabs/forc-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (37 loc) · 992 Bytes
/
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
[package]
name = "forc-wallet"
version = "0.11.1"
edition = "2021"
homepage = "https://fuel.network/"
license = "Apache-2.0"
repository = "https://github.com/FuelLabs/forc-wallet"
description = "A forc plugin for generating or importing wallets using BIP39 phrases."
[dependencies]
anyhow = "1.0"
clap = { version = "4.2.4", features = ["derive"] }
eth-keystore = { version = "0.5" }
forc-tracing = "0.47.0"
# Dependencies from the `fuel-vm` repository:
fuel-crypto = { version = "0.58.2" }
fuel-types = { version = "0.58.2" }
# Dependencies from the `fuels-rs` repository:
fuels = "0.66.9"
fuels-core = "0.66.9"
futures = "0.3"
hex = "0.4"
home = "0.5.3"
rand = { version = "0.8.4", default-features = false }
rpassword = "7.2"
serde_json = "1.0"
termion = "2.0"
tiny-bip39 = "1.0"
tokio = { version = "1.10.1", features = ["full"] }
url = "2.3"
[lib]
name = "forc_wallet"
path = "src/lib.rs"
[[bin]]
name = "forc-wallet"
path = "src/main.rs"
[dev-dependencies]
tempfile = "3.13.0"