forked from ethereum/kzg-ceremony-sequencer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
81 lines (72 loc) · 2.23 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
[package]
name = "kzg-ceremony-sequencer"
version = "0.1.0"
description = "Implementation of the Ethereum KZG Ceremony specification sequencer"
authors = [
"Remco Bloemen <[email protected]>",
"Kevaundray Wedderburn <[email protected]>",
"Marcin Kostrzewa <[email protected]>",
"Grzegorz Świrski <[email protected]>",
]
homepage = "https://github.com/ethereum/kzg-ceremony-sequencer"
repository = "https://github.com/ethereum/kzg-ceremony-sequencer"
edition = "2021"
license-file = "./mit-license.md"
keywords = ["cryptography"]
categories = ["cryptography::cryptocurrencies"]
[features]
default = [ "sqlite" ]
mimalloc = ["cli-batteries/mimalloc"]
postgres = [ "sqlx/postgres" ]
sqlite = [ "sqlx/sqlite" ]
# Dummy lib target so we can run doc tests
[lib]
path = "src/lib.rs"
[[bin]]
name = "kzg-ceremony-sequencer"
path = "src/main.rs"
[workspace]
members = [
"crypto",
]
[dependencies]
cli-batteries = { version = "0.3.3", features = ["signals", "prometheus", "metered-allocator", "otlp"] }
uuid = { version = "1.1.2", features = ["serde", "v4"] }
axum = { version = "0.5.15", features = ["headers"] }
axum-extra = { version = "0.3.7", features = ["erased-json"] }
hyper = "0.14"
rand = "0.8"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1", features = ["full", "test-util"] }
tokio-util = "0.7.4"
tower = { version = "0.4.13", features = ["full"] }
tower-http = { version = "0.3.4", features = ["full"] }
tracing = "0.1.35"
serde_json = "1.0"
oauth2 = "4.1"
headers = "0.3"
chrono = "0.4"
http = "0.2"
async-session = "3.0.0"
sqlx = { version = "0.6", features = ["runtime-tokio-rustls", "any", "chrono"] }
small-powers-of-tau = { git = "https://github.com/crate-crypto/small-powers-of-tau" }
ethers-signers = "0.17.0"
ethers-core = "0.17.0"
k256 = "0.11.5"
kzg-ceremony-crypto = { path = "./crypto", features = ["arkworks"] }
once_cell = "1.8"
indexmap = "1.9.1"
clap = { version = "3.2.21", features = ["derive"] }
eyre = "0.6.8"
url = "2.3.1"
hex = "0.4.3"
# Use Rustls because it makes it easier to cross-compile on CI
reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls",
"json",
] }
thiserror = "1.0.35"
[build-dependencies]
cli-batteries = "0.3.1"
[dev-dependencies]
tempfile = "3.3.0"