forked from op-rs/kona
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
37 lines (30 loc) · 852 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 = "kona-preimage"
description = "Bindings and types for interacting with the PreimageOracle ABI"
version = "0.2.1"
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
[lints]
workspace = true
[dependencies]
# General
tracing.workspace = true
thiserror.workspace = true
async-trait.workspace = true
alloy-primitives.workspace = true
# `std` feature dependencies
async-channel = { workspace = true, optional = true }
# `rkyv` feature dependencies
rkyv = { workspace = true, optional = true }
# `serde` feature dependencies
serde = { workspace = true, optional = true, features = ["derive"] }
[dev-dependencies]
tokio = { workspace = true, features = ["full"] }
[features]
default = []
std = ["dep:async-channel"]
rkyv = ["dep:rkyv"]
serde = ["dep:serde"]