-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
73 lines (61 loc) · 1.48 KB
/
Cargo.toml
File metadata and controls
73 lines (61 loc) · 1.48 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
[package]
name = "aethelred-cli"
version = "2.0.0"
edition = "2021"
authors = ["Aethelred Team"]
description = "Advanced CLI for Aethelred AI Blockchain"
license = "Apache-2.0"
repository = "https://github.com/aethelred/cli"
keywords = ["blockchain", "ai", "cli", "aethelred"]
categories = ["command-line-utilities", "cryptography::cryptocurrencies"]
[[bin]]
name = "aethelred"
path = "src/main.rs"
[dependencies]
# CLI framework
clap = { version = "4.4", features = ["derive", "env", "unicode", "wrap_help"] }
clap_complete = "4.4"
clap_mangen = "0.2"
# Async runtime
tokio = { version = "1.35", features = ["full"] }
# Error handling
anyhow = "1.0"
thiserror = "1.0"
# Serialization
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
toml = "0.8"
# Terminal UI
colored = "2.1"
dialoguer = "0.11"
indicatif = "0.17"
prettytable-rs = "0.10"
rustyline = "14.0"
console = "0.15"
textwrap = "0.16"
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
# Utilities
chrono = { version = "0.4", features = ["serde"] }
dirs = "5.0"
uuid = { version = "1.6", features = ["v4", "serde"] }
url = "2.5"
base64 = "0.21"
hex = "0.4"
sha2 = "0.10"
# HTTP client
reqwest = { version = "0.11", features = ["json", "rustls-tls"], default-features = false }
# Crypto
rand = "0.8"
ring = "0.17"
[dev-dependencies]
assert_cmd = "2.0"
predicates = "3.1"
tempfile = "3.10"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true