deadnix/Cargo.toml
2022-02-09 18:13:19 +03:00

24 lines
572 B
TOML

[package]
name = "deadnix"
description = "Find unused code in Nix projects"
version = "0.1.3"
authors = ["Astro <astro@spaceboyz.net>"]
edition = "2021"
license = "GPL-3.0-or-later"
homepage = "https://github.com/astro/deadnix"
repository = "https://github.com/astro/deadnix.git"
documentation = "https://docs.rs/deadnix"
[dependencies]
rowan = "0.12"
rnix = "0.10"
clap = "3"
walkdir = "2"
ariadne = "0.1"
serde = { version = "1.0.136", optional = true }
serde_json = { version = "1.0.78", optional = true }
[features]
default = []
json-out = [ "serde", "serde_json" ]