mirror of
https://github.com/astro/deadnix.git
synced 2024-11-28 01:44:32 +03:00
24 lines
610 B
TOML
24 lines
610 B
TOML
[package]
|
|
name = "deadnix"
|
|
description = "Find unused code in Nix projects"
|
|
version = "1.2.1"
|
|
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.15" # dependency version of rnix-0.11.0
|
|
rnix = "0.11"
|
|
clap = "4"
|
|
walkdir = "2"
|
|
ariadne = "0.3"
|
|
serde = { version = "1", optional = true }
|
|
serde_json = { version = "1", optional = true }
|
|
|
|
[features]
|
|
default = [ "json-out" ]
|
|
json-out = [ "serde", "serde_json" ]
|