-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (40 loc) · 1.18 KB
/
Cargo.toml
File metadata and controls
44 lines (40 loc) · 1.18 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
[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"] }
[profile.release]
opt-level = 3
lto = true
[build-dependencies]
clap = { version = "4.4.18", features = ["derive"] }
clap_complete = "4.4.10"