We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23419dd commit d1ecdacCopy full SHA for d1ecdac
tests/test_architecture.rs
@@ -66,9 +66,9 @@ fn test_architectural_rules() {
66
67
.rules_for_crate("rust_arkitect::rust_file")
68
.it_may_depend_on(&[
69
- "std::path",
70
- "syn",
71
- "toml", // Why?
+ "std::path", // Used to navigate the file system and get the logical name of the module
+ "syn", // Used to parse Rust code and build the AST
+ "toml", // Used to read Cargo.toml and find the crate of the file
72
])
73
74
.build();
0 commit comments