-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathCargo.toml
More file actions
68 lines (62 loc) · 1.9 KB
/
Copy pathCargo.toml
File metadata and controls
68 lines (62 loc) · 1.9 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.5.2"
[workspace.lints]
[workspace.lints.clippy]
dbg-macro = "warn"
manual-string-new = "warn"
uninlined-format-args = "warn"
use-self = "warn"
redundant-clone = "warn"
default-constructed-unit-structs = "allow"
[workspace.lints.rust]
rust-2018-idioms = "warn"
unreachable-pub = "warn"
unused-must-use = "warn"
redundant-lifetimes = "warn"
unnameable-types = "warn"
[workspace.lints.rustdoc]
all = "warn"
[workspace.dependencies]
alloy = { version = "2.0", default-features = false, features = ["std", "providers", "provider-http", "reqwest", "signer-local", "sol-types", "contract", "rpc-types"] }
base64 = "0.22"
clap = { version = "4.6", features = ["derive", "env"] }
clap_complete = "4.6"
colored = "3.1"
dirs = "6.0"
minisign-verify = "0.2"
fs2 = "0.4"
futures = "0.3"
getrandom = "0.4"
hex = "0.4"
minisign = "0.9"
hostname = "0.4"
mpp = { git = "https://github.com/tempoxyz/mpp-rs", rev = "0d57f96ff670b290801b2ead9e0f1d637e0f2b3e", features = ["tempo", "evm", "utils", "client", "server"] }
posthog-rs = "0.12.0"
qrcode = { version = "0.14", default-features = false }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "http2", "json"] }
rusqlite = { version = "0.40", features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
sha2 = "0.11"
tempfile = "3.27"
tempo-primitives = { version = "1.6", features = ["serde"] }
thiserror = "2.0"
time = "0.3"
tokio = { version = "1.52", features = ["macros", "rt-multi-thread", "signal"] }
toon-format = "0.5"
toml = "1.1"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2.5"
urlencoding = "2.1"
webbrowser = "1"
zeroize = { version = "1", features = ["serde"] }
# dev-dependencies
assert_cmd = "2.2"
tempo-test = { path = "crates/tempo-test" }
axum = "0.8"
predicates = "3.1"
serial_test = "3.2"