-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
37 lines (33 loc) · 808 Bytes
/
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
[package]
name = "rs-blobs"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
debug = true
[dependencies]
eyre = "0.6.12"
tokio = { features = ["full"] }
alloy = { git = "https://github.com/noahfigueras/alloy.git", branch="eip4844-transaction-missing-sidecar", features = [
"signers",
"network",
"providers",
"provider-http",
"rpc",
"rpc-client",
"rpc-types-eth",
"consensus",
"signer-wallet",
"sol-types",
"eips",
"node-bindings",
"reqwest",
"transport-http",
"rlp"
] }
alloy-consensus = { git = "https://github.com/noahfigueras/alloy", branch="eip4844-transaction-missing-sidecar"}
c-kzg = { features = ["std", "serde"] }
[features]
default = [
"alloy-consensus/kzg",
]