33 lines
663 B
TOML
33 lines
663 B
TOML
[package]
|
|
name = "nac-serde"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["NAC Team"]
|
|
description = "NAC Serialization Framework - GNACS encoding and constitutional data serialization"
|
|
|
|
[dependencies]
|
|
nac-upgrade-framework = { path = "../nac-upgrade-framework" }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
bincode = "1.3"
|
|
hex = "0.4"
|
|
sha2 = "0.10"
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.5"
|
|
|
|
[[bench]]
|
|
name = "gnacs_bench"
|
|
harness = false
|
|
|
|
[lints.rust]
|
|
missing_docs = "allow"
|
|
unused_doc_comments = "allow"
|
|
non_camel_case_types = "allow"
|
|
dead_code = "allow"
|
|
unused_imports = "allow"
|
|
unused_variables = "allow"
|
|
|
|
[lints.rustdoc]
|
|
all = "allow"
|