-
Notifications
You must be signed in to change notification settings - Fork 18
/
Cargo.toml
52 lines (43 loc) · 1.28 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
[workspace]
members = ["crates/*"]
resolver = "2"
[workspace.package]
version = "0.3.9"
edition = "2021"
rust-version = "1.64"
authors = ["Alloy Contributors"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/alloy-rs/rlp"
repository = "https://github.com/alloy-rs/rlp"
exclude = ["benches/", "tests/"]
[workspace.lints.rust]
missing-debug-implementations = "warn"
missing-docs = "warn"
unreachable-pub = "warn"
unused-must-use = "deny"
rust-2018-idioms = "deny"
unnameable-types = "warn"
[workspace.lints.rustdoc]
all = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
missing-const-for-fn = "warn"
use-self = "warn"
option-if-let-else = "warn"
redundant-clone = "warn"
[workspace.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[workspace.dependencies]
# workspace crates
alloy-rlp = { version = "0.3.9", path = "crates/rlp", default-features = false }
alloy-rlp-derive = { version = "0.3.9", path = "crates/rlp-derive", default-features = false }
# macros
proc-macro2 = "1.0"
quote = "1.0"
syn = "2.0"
hex = { package = "const-hex", version = "1", default-features = false, features = ["alloc"] }
hex-literal = "0.4"
# misc
arrayvec = { version = "0.7", default-features = false }
bytes = { version = "1.4", default-features = false }