-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
50 lines (44 loc) · 1.16 KB
/
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
45
46
47
48
49
50
[workspace]
members = [
"bin",
"crates/args",
"crates/context-macro",
"crates/fmt",
"crates/ops",
# "crates/probe",
"crates/waiter",
]
resolver = "2"
[workspace.package]
authors = [ "Kari <[email protected]>" ]
description = "A Starknet toolkit."
edition = "2021"
repository = "https://github.com/kariy/probe"
version = "0.1.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace.dependencies]
probe-args = { path = "crates/args" }
probe-fmt = { path = "crates/fmt" }
probe-ops = { path = "crates/ops" }
alloy-primitives = "0.8"
chrono = "0.4.23"
clap = { version = "4.5", features = [ "derive", "env" ] }
clap_complete = "4.5"
color-eyre = "0.6"
colored_json = "5.0"
hex = "0.4.3"
reqwest = { version = "0.12", features = [ "json", "rustls-tls" ], default-features = false }
serde_json = "1.0"
shellexpand = "3.1.0"
similar-asserts = "1.5.0"
starknet = "0.9.0"
thiserror = "1.0.56"
# Ref https://docs.rs/color-eyre/0.6.3/color_eyre/#improving-perf-on-debug-builds
[profile.dev.package.backtrace]
opt-level = 3
[profile.maxperf]
codegen-units = 1
incremental = false
inherits = "release"
lto = "fat"
strip = true