diff options
author | Akshay <[email protected]> | 2021-09-11 16:48:09 +0100 |
---|---|---|
committer | Akshay <[email protected]> | 2021-09-11 16:48:09 +0100 |
commit | 171a4fa4d15c4be14d63fdc5d258610bb26bd162 (patch) | |
tree | 3a8c105edb03481fe11e1486a23d165a686aecd5 /Cargo.toml | |
parent | e6ee0c4246c95d48dc7a63565ccb6f022f67dbec (diff) |
restructure repo into bin, lib and macros
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 14 |
1 files changed, 6 insertions, 8 deletions
@@ -1,10 +1,8 @@ | |||
1 | [package] | 1 | [workspace] |
2 | name = "nix-analyzer" | ||
3 | version = "0.1.0" | ||
4 | edition = "2018" | ||
5 | 2 | ||
6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | 3 | members = [ |
4 | "bin", | ||
5 | "lib", | ||
6 | "macros" | ||
7 | ] | ||
7 | 8 | ||
8 | [dependencies] | ||
9 | anyhow = "1.0" | ||
10 | rnix = "0.9.0" | ||