25 lines
448 B
TOML
25 lines
448 B
TOML
[package]
|
|
name = "nac-cross-layer-test"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "cross_layer_test"
|
|
path = "cross_layer_test.rs"
|
|
|
|
[dependencies]
|
|
nvm-l0 = { path = "nvm-l0" }
|
|
nvm-l1 = { path = "nvm-l1" }
|
|
nac-udm = { path = "../nac-udm" }
|
|
|
|
[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"
|