aboutsummaryrefslogtreecommitdiff
path: root/bin/Cargo.toml
blob: cec2d117e233ff6fc694dcff21640c0d295a3e16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "statix"
version = "0.3.4"
edition = "2018"
license = "MIT"
authors = [ "Akshay <[email protected]>" ]
description = "Lints and suggestions for the Nix programming language"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
ariadne = "0.1.3"
rnix = "0.9.0"
clap = "3.0.0-beta.4"
globset = "0.4.8"
thiserror = "1.0.30"
similar = "2.1.0"
vfs = { path = "../vfs" }
lib = { path = "../lib" }

[dependencies.serde_json]
version = "1.0.68"
optional = true

[dependencies.serde]
version = "1.0.68"
features = [ "derive" ]
optional = true

[features]
json = [ "lib/json-out", "serde_json", "serde" ]