-
Notifications
You must be signed in to change notification settings - Fork 133
/
Copy pathCargo.toml
43 lines (39 loc) · 1008 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
[package]
name = "heimdall-cli"
description = "CLI for the heimdall-rs toolkit"
version.workspace = true
edition.workspace = true
license.workspace = true
rust-version.workspace = true
homepage.workspace = true
repository.workspace = true
keywords.workspace = true
exclude.workspace = true
[dependencies]
clap = { workspace = true, features = ["derive"] }
colored = "2"
heimdall-tracing = { workspace = true }
heimdall-cache = { workspace = true }
heimdall-core = { workspace = true }
heimdall-common = { workspace = true }
heimdall-config = { workspace = true }
tokio = { version = "1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0.50"
tracing = "0.1.40"
tracing-subscriber = "0.3.18"
eyre = "0.6.12"
alloy-json-abi = "0.8.3"
alloy = { version = "0.3.3", features = [
"full",
"rpc-types-debug",
"rpc-types-trace",
] }
async-trait = "0.1.51"
[lints]
workspace = true
[[bin]]
name = "heimdall"
path = "src/main.rs"
bench = false