18 lines
310 B
TOML
18 lines
310 B
TOML
[package]
|
|
name = "decode"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = []
|
|
fake = []
|
|
|
|
[dependencies]
|
|
time = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
bytemuck = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
decode = { path = ".", features = ["fake"] }
|