Skip to content

Commit

Permalink
feat: check use of keys that do not exist (#6)
Browse files Browse the repository at this point in the history
* feat: check use of keys that do not exist

* refactor: rust_src_to_check() remove support for symlink

* style: clippy

* feat: check use of keys that do not exist
  • Loading branch information
SteveLauC authored Oct 4, 2024
1 parent 8e5a72f commit 2df5dfb
Show file tree
Hide file tree
Showing 11 changed files with 695 additions and 22 deletions.
298 changes: 296 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ edition = "2021"

[dependencies]
bitflags = "2.6.0"
clap = { version = "4.5.19", features = ["derive"] }
indexmap = "2.2.6"
once_cell = "1.19.0"
proc-macro2 = { version = "1.0.86", features = ["span-locations"] }
serde_yaml_ng = "0.10.0"
syn = { version = "2.0.79", features = ["full", "visit"] }
walkdir = "2.5.0"

[dev-dependencies]
tempfile = "3.13.0"
Loading

0 comments on commit 2df5dfb

Please sign in to comment.