mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
25 lines
505 B
TOML
25 lines
505 B
TOML
[package]
|
|
name = "codecs-derive"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/foundry-rs/reth"
|
|
readme = "../README.md"
|
|
|
|
[lib]
|
|
proc-macro = true
|
|
|
|
[dependencies]
|
|
proc-macro2 = "1.0"
|
|
quote = "1.0"
|
|
syn = { version = "1.0", features = ["full"] }
|
|
|
|
# codecs
|
|
serde = { version = "1.0.*", default-features = false }
|
|
parity-scale-codec = { version = "3.2.1", features = ["derive", "bytes"] }
|
|
|
|
[features]
|
|
default = ["scale"]
|
|
scale = []
|
|
postcard = []
|
|
no_codec = [] |