forked from Nanle-code/StarForge
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (52 loc) · 1.42 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (52 loc) · 1.42 KB
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
[package]
name = "starforge"
version = "0.1.0"
edition = "2021"
description = "A developer productivity CLI for Stellar and Soroban workflows"
license = "MIT"
repository = "https://github.com/YOUR_USERNAME/starforge"
keywords = ["stellar", "soroban", "blockchain", "cli", "web3"]
[[bin]]
name = "starforge"
path = "src/main.rs"
[dependencies]
clap = { version = "=4.4.18", features = ["derive", "color"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "=0.8.8"
colored = "=2.1.0"
dirs = "=5.0.1"
anyhow = "1.0"
chrono = { version = "0.4", features = ["serde"] }
rand = "0.8"
ed25519-dalek = "2.1"
ureq = { version = "=2.7.1", features = ["json"] }
clap_complete = "=4.4.10"
dialoguer = { version = "0.11", features = ["fuzzy-select", "password"] }
aes-gcm = "0.10.3"
argon2 = "0.5.3"
stellar-strkey = "=0.0.9"
stellar-xdr = { version = "22.0.0", features = ["serde"] }
base64 = "0.21"
urlencoding = "2.1"
indicatif = "0.17.7"
libloading = "0.8.1"
uuid = { version = "1.6.1", features = ["v4"] }
hidapi = { version = "2.6.5", optional = true }
hex = "0.4.3"
sha2 = "0.10"
[features]
hardware-wallet = ["dep:hidapi"]
[dev-dependencies]
criterion = "0.5.1"
tempfile = "3.8"
mockito = "1.2"
[[bench]]
name = "benchmarks"
harness = false
[profile.release]
opt-level = 3
lto = true
[build-dependencies]
clap = { version = "4.4.18", features = ["derive"] }
clap_complete = "4.4.10"