-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (33 loc) · 980 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
38
39
40
[package]
name = "fastrlp"
version = "0.3.0"
edition = "2021"
license = "MPL-2.0"
description = "Fast RLP serialization library"
repository = "https://github.com/vorot93/fastrlp"
[dependencies]
arrayvec = { version = "0.7", default-features = false }
auto_impl = "1"
bytes = { version = "1", default-features = false }
ethnum = { version = "1", default-features = false, optional = true }
primitive-types = { version = "0.11.0" }
ethbloom = "0.11.0"
ethereum = { version = "0.12", default-features = false }
fastrlp-derive = { version = "0.2", path = "derive", optional = true }
thiserror = { version = "1", default-features = false, optional = true }
[dev-dependencies]
fastrlp-test = { path = ".", package = "fastrlp", features = [
"derive",
"ethnum",
"handle-thiserror"
] }
criterion = "0.4"
hex-literal = "0.4"
[features]
derive = ["fastrlp-derive"]
handle-thiserror = ["thiserror"]
[[bench]]
name = "bench"
harness = false
[workspace]
members = ["derive"]