diff --git a/.gitignore b/.gitignore index eb5a316..a9d37c5 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ target +Cargo.lock diff --git a/Cargo.lock b/Cargo.lock deleted file mode 100644 index 8df8424..0000000 --- a/Cargo.lock +++ /dev/null @@ -1,4 +0,0 @@ -[root] -name = "rusty-cheddar" -version = "0.0.0" - diff --git a/Cargo.toml b/Cargo.toml index cf28687..2359172 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ name = "rusty-cheddar" version = "0.0.0" authors = ["Sean Marshallsay "] -description = "A compiler drop-in to automatically generate C-style header files." +description = "A compiler lint to automatically generate C-style header files." readme = "README.md" homepage = "https://github.com/Sean1708/rusty-cheddar" @@ -11,5 +11,6 @@ repository = "https://github.com/Sean1708/rusty-cheddar.git" license = "MIT" -[[bin]] +[lib] name = "cheddar" +plugin = true