narinfo-rs/Cargo.toml
bad 459ed33bdd Add integration for libnixstore
This adds a conditional feature flag for loading data from libnixstore
exposed behind a feature flag dependency
2022-08-19 23:33:27 +02:00

18 lines
453 B
TOML

[package]
name = "narinfo"
version = "1.0.0"
edition = "2021"
description = "A parser for the narinfo file format"
repository = "https://im.badat.dev/bad/narinfo-rs"
license = "MIT OR Apache-2.0"
keywords = ["nix", "nixos"]
[features]
libnixstore = ["dep:libnixstore"]
[dependencies]
derive_builder = { version = "0.11.2", default-features = false }
libnixstore = { version = "0.2.0", optional = true }
[package.metadata.docs.rs]
all-features = true