deadnix/Cargo.toml

24 lines
610 B
TOML
Raw Normal View History

2021-12-06 02:04:52 +03:00
[package]
name = "deadnix"
description = "Find unused code in Nix projects"
2023-10-31 19:00:41 +03:00
version = "1.2.1"
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]
2023-04-15 01:39:26 +03:00
rowan = "0.15" # dependency version of rnix-0.11.0
rnix = "0.11"
2022-10-12 23:44:07 +03:00
clap = "4"
2021-12-08 21:17:09 +03:00
walkdir = "2"
ariadne = "0.3"
2022-04-08 01:40:25 +03:00
serde = { version = "1", optional = true }
serde_json = { version = "1", optional = true }
2022-02-09 18:03:18 +03:00
[features]
default = [ "json-out" ]
2022-02-09 18:03:18 +03:00
json-out = [ "serde", "serde_json" ]