-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (43 loc) · 1.21 KB
/
Copy pathCargo.toml
File metadata and controls
50 lines (43 loc) · 1.21 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
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.package]
version = "0.1.1"
edition = "2024"
rust-version = "1.88"
authors = ["init4"]
license = "Apache-2.0 OR MIT"
[workspace.lints.rust]
missing_copy_implementations = "warn"
missing_debug_implementations = "warn"
missing_docs = "warn"
unreachable_pub = "warn"
unused_must_use = "deny"
rust_2018_idioms = { level = "deny", priority = -1 }
[workspace.lints.clippy]
missing_const_for_fn = "warn"
[workspace.lints.rustdoc]
all = "warn"
[workspace.dependencies]
signet-tracker = { path = "crates/tracker" }
signet-constants = "0.19.0"
signet-orders = "0.19.0"
signet-tx-cache = "0.19.0"
signet-types = "0.19.0"
signet-zenith = "0.19.0"
init4-bin-base = "0.23.1"
alloy = { version = "1.8.3", features = ["full"] }
axum = { version = "0.8.8", features = ["json", "ws"] }
backon = { version = "1.6.0", features = ["tokio-sleep"] }
eyre = "0.6.12"
futures-util = "0.3.32"
git-version = "0.3.9"
jiff = "0.2.23"
itertools = "0.14.0"
reqwest = "0.12.28"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tokio = { version = "1.51.0", features = ["full", "macros", "rt-multi-thread", "signal"] }
tokio-util = "0.7.18"
tracing = "0.1.44"
url = "2.5.8"