diff options
Diffstat (limited to 'lix-doc/Cargo.toml')
-rw-r--r-- | lix-doc/Cargo.toml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lix-doc/Cargo.toml b/lix-doc/Cargo.toml new file mode 100644 index 000000000..df4eed932 --- /dev/null +++ b/lix-doc/Cargo.toml @@ -0,0 +1,18 @@ +[package] +description = "Nix function documentation tool, stripped down into a library" +edition = "2018" +name = "lix-doc" +version = "0.0.1" +license = "BSD-2-Clause OR MIT" +# upstream details +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" |