diff options
author | Akshay <[email protected]> | 2021-11-03 09:18:35 +0000 |
---|---|---|
committer | Akshay <[email protected]> | 2021-11-08 05:03:13 +0000 |
commit | 4e063b2abc402ac4d6902647e821978269025c7d (patch) | |
tree | a8935a5432fe86d0e5facb9ff8acc71edcb7f782 /bin/Cargo.toml | |
parent | 78decf580d22fa792c19c40ace39762fb027067c (diff) |
add snapshot test suitesnapshot-tests
Diffstat (limited to 'bin/Cargo.toml')
-rw-r--r-- | bin/Cargo.toml | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/bin/Cargo.toml b/bin/Cargo.toml index d67e6c1..7c48083 100644 --- a/bin/Cargo.toml +++ b/bin/Cargo.toml | |||
@@ -6,7 +6,13 @@ license = "MIT" | |||
6 | authors = [ "Akshay <[email protected]>" ] | 6 | authors = [ "Akshay <[email protected]>" ] |
7 | description = "Lints and suggestions for the Nix programming language" | 7 | description = "Lints and suggestions for the Nix programming language" |
8 | 8 | ||
9 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | 9 | [lib] |
10 | name = "statix" | ||
11 | path = "src/lib.rs" | ||
12 | |||
13 | [[bin]] | ||
14 | name = "statix" | ||
15 | path = "src/main.rs" | ||
10 | 16 | ||
11 | [dependencies] | 17 | [dependencies] |
12 | ariadne = "0.1.3" | 18 | ariadne = "0.1.3" |
@@ -27,5 +33,9 @@ version = "1.0.68" | |||
27 | features = [ "derive" ] | 33 | features = [ "derive" ] |
28 | optional = true | 34 | optional = true |
29 | 35 | ||
36 | [dev-dependencies] | ||
37 | insta = "1.8.0" | ||
38 | strip-ansi-escapes = "0.1.1" | ||
39 | |||
30 | [features] | 40 | [features] |
31 | json = [ "lib/json-out", "serde_json", "serde" ] | 41 | json = [ "lib/json-out", "serde_json", "serde" ] |