-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathCargo.toml
137 lines (123 loc) · 4.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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
[package]
name = "sequencer"
version = "0.1.0"
authors = ["Espresso Systems <hello@espressosys.com>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["fee"]
testing = [
"hotshot-testing",
"marketplace-builder-core",
"espresso-types/testing",
"sequencer-utils/testing",
"hotshot-query-service/testing"
]
benchmarking = []
embedded-db = ["hotshot-query-service/embedded-db", "sqlx/sqlite"]
sqlite-unbundled = ["hotshot-query-service/sqlite-unbundled", "sqlx/sqlite-unbundled"]
fee = []
pos = []
marketplace = []
[[bin]]
name = "espresso-dev-node"
required-features = ["testing", "embedded-db"]
[dev-dependencies]
escargot = "0.5.10"
espresso-macros = { git = "https://github.com/EspressoSystems/espresso-macros.git", tag = "0.1.0" }
hotshot-example-types = { workspace = true }
hotshot-query-service = { workspace = true }
hotshot-testing = { workspace = true }
pretty_assertions = { workspace = true }
rand = "0.9.0"
reqwest = { workspace = true }
# Enable "testing" feature when running tests
sequencer = { path = ".", features = [ "testing" ] }
tempfile = { workspace = true }
[build-dependencies]
anyhow = { workspace = true }
vergen = { workspace = true }
[dependencies]
anyhow = { workspace = true }
ark-ff = { workspace = true }
ark-serialize = { workspace = true, features = ["derive"] }
async-channel = { workspace = true }
async-lock = { workspace = true }
async-once-cell = { workspace = true }
async-trait = { workspace = true }
bincode = { workspace = true }
byteorder = "1"
# CDN imports
cdn-broker = { git = "https://github.com/EspressoSystems/Push-CDN", tag = "0.5.1-upgrade", package = "cdn-broker", features = ["global-permits"] }
cdn-marshal = { git = "https://github.com/EspressoSystems/Push-CDN", tag = "0.5.1-upgrade", package = "cdn-marshal" }
clap = { workspace = true }
client = { path = "../client" }
committable = "0.2"
contract-bindings-ethers = { path = "../contract-bindings-ethers" }
csv = "1"
derivative = "2.2"
derive_more = { workspace = true }
dotenvy = { workspace = true }
espresso-types = { path = "../types" }
ethers = { workspace = true }
ethers-conv = { workspace = true }
futures = { workspace = true }
hotshot = { workspace = true }
hotshot-contract-adapter = { workspace = true }
hotshot-events-service = { workspace = true }
hotshot-libp2p-networking = { workspace = true }
hotshot-orchestrator = { workspace = true }
hotshot-query-service = { workspace = true }
hotshot-stake-table = { workspace = true }
hotshot-state-prover = { workspace = true }
# Dependencies for feature `testing`
hotshot-testing = { workspace = true, optional = true }
hotshot-types = { workspace = true }
include_dir = "0.7"
itertools = { workspace = true }
jf-crhf = { workspace = true }
jf-merkle-tree = { workspace = true }
jf-rescue = { workspace = true }
jf-signature = { workspace = true, features = ["bls", "schnorr"] }
jf-vid = { workspace = true }
libp2p = { workspace = true }
marketplace-builder-core = { workspace = true, optional = true }
marketplace-solver = { path = "../marketplace-solver" }
num_enum = "0.7"
parking_lot = "0.12"
portpicker = { workspace = true }
priority-queue = { workspace = true }
rand = { workspace = true }
rand_chacha = { workspace = true }
rand_distr = { workspace = true }
request-response = { path = "../request-response" }
sequencer-utils = { path = "../utils" }
serde = { workspace = true }
serde_json = { workspace = true }
sha2 = { workspace = true }
snafu = "0.8"
sqlx = { workspace = true, features = [
"bit-vec",
"postgres",
"runtime-tokio",
"tls-native-tls",
] }
static_assertions = "1"
strum = { workspace = true }
surf-disco = { workspace = true }
tagged-base64 = { workspace = true }
tempfile = { workspace = true }
tide-disco = { workspace = true }
time = { workspace = true }
todo_by = "0.3"
tokio = { workspace = true }
toml = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
url = { workspace = true }
vbs = { workspace = true }
vec1 = { workspace = true }
[package.metadata.cargo-udeps.ignore]
normal = ["hotshot-testing"]
[package.metadata.cargo-machete]
ignored = ["vergen", "include_dir", "hotshot_builder_api"]