diff options
Diffstat (limited to 'nix-doc/Cargo.toml')
-rw-r--r-- | nix-doc/Cargo.toml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/nix-doc/Cargo.toml b/nix-doc/Cargo.toml new file mode 100644 index 000000000..21dc54d1b --- /dev/null +++ b/nix-doc/Cargo.toml @@ -0,0 +1,17 @@ +[package] +description = "Nix documentation grepping tool" +edition = "2018" +name = "nix-doc" +version = "0.0.1" +license = "BSD-2-Clause OR MIT" +homepage = "https://github.com/lf-/nix-doc" +repository = "https://github.com/lf-/nix-doc" + +[lib] +crate_type = ["staticlib"] + +[dependencies] +rnix = "0.8.0" + +[dev-dependencies] +expect-test = "1.1.0" |