forked from boundless-xyz/boundless
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
99 lines (93 loc) · 3.19 KB
/
Cargo.toml
File metadata and controls
99 lines (93 loc) · 3.19 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
[workspace]
resolver = "2"
members = [
"crates/assessor",
"crates/bench",
"crates/boundless-cli",
"crates/boundless-market",
"crates/boundless-market/test-utils",
"crates/broker",
"crates/broker-stress",
"crates/distributor",
"crates/guest/assessor",
"crates/guest/util",
"crates/indexer",
"crates/ops-lambdas/indexer-monitor",
"crates/order-generator",
"crates/order-stream",
"crates/slasher",
"documentation/doc-test",
]
[workspace.package]
version = "0.14.0"
edition = "2021"
homepage = "https://beboundless.xyz/"
repository = "https://github.com/boundless-xyz/boundless/"
[workspace.dependencies]
boundless-assessor = { version = "0.14.0", path = "crates/assessor" }
boundless-cli = { version = "0.14.0", path = "crates/boundless-cli" }
boundless-market = { version = "0.14.0", path = "crates/boundless-market" }
boundless-market-test-utils = { path = "crates/boundless-market/test-utils" }
distributor = { path = "crates/distributor" }
guest-assessor = { path = "crates/guest/assessor" }
guest-util = { path = "crates/guest/util" }
order-stream = { path = "crates/order-stream" }
async-stream = "0.3"
alloy = { version = "1.0.24", default-features = false }
alloy-primitives = { version = "1.0" }
alloy-sol-types = { version = "1.0", features = ["json"] }
alloy-chains = "0.2.0"
anyhow = { version = "1.0" }
async-trait = "0.1"
aws-config = { version = "1.6", features = ["behavior-version-latest"] }
aws-sdk-s3 = "1.34" # used for minio for max compatibility
axum = "0.8"
axum-extra = { version = "0.10" }
bincode = "1.3"
bonsai-sdk = { version = "1.4", features = ["non_blocking"] }
bs58 = "0.5"
bytemuck = "1.16"
clap = { version = "4.5", features = ["derive", "env"] }
clap_complete = "4.5"
chrono = { version = "0.4", features = ["serde"] }
futures-util = "0.3"
hex = { version = "0.4", default-features = false, features = ["alloc"] }
postcard = { version = "1.0" }
rand = { version = "0.9" }
reqwest = "0.12"
risc0-aggregation = { version = "0.7.1" }
risc0-build = { version = "2.3", features = ["docker", "unstable"] }
risc0-circuit-recursion = { version = "3.0" }
risc0-build-ethereum = { version = "2.2" }
risc0-ethereum-contracts = { version = "2.2" }
risc0-zkvm = { version = "2.3", default-features = false }
risc0-zkp = { version = "2.0" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
guest-set-builder = { git = "https://github.com/risc0/risc0-ethereum", tag = "aggregation-v0.7.1" }
rmp-serde = { version = "1.3" }
sha2 = { version = "0.10" }
sqlx = { version = "0.8", default-features = false }
tempfile = "3.10"
test-log = { version = "0.2", features = ["trace"] }
thiserror = "2.0"
tokio = { version = "1" }
tokio-util = { version = "0.7" }
tokio-tungstenite = { version = "0.24", features = ["native-tls"] }
tower-http = { version = "0.5", features = ["trace"] }
tracing = "0.1"
tracing-subscriber = "0.3"
tracing-test = { version = "0.2" }
url = "2.5"
uuid = { version = "1.7", features = ["v4"] }
utoipa = "5.2"
# Always optimize; building and running the guest takes much longer without optimization.
[profile.dev]
opt-level = 3
[profile.release]
debug = 1
lto = true
# [profile.release]
# lto = "fat"
# codegen-units = 1