deadnix/Cargo.toml

24 lines
572 B
TOML
Raw Normal View History

2021-12-06 02:04:52 +03:00
[package]
name = "deadnix"
description = "Find unused code in Nix projects"
2022-01-14 21:38:49 +03:00
version = "0.1.3"
2021-12-06 02:04:52 +03:00
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"
2022-01-14 21:37:38 +03:00
clap = "3"
2021-12-08 21:17:09 +03:00
walkdir = "2"
2022-02-04 19:41:28 +03:00
ariadne = "0.1"
2022-02-09 18:03:18 +03:00
serde = { version = "1.0.136", optional = true }
serde_json = { version = "1.0.78", optional = true }
[features]
default = []
json-out = [ "serde", "serde_json" ]