2022-08-04 15:00:24 +02:00
|
|
|
[package]
|
|
|
|
name = "narinfo"
|
2022-08-18 22:33:42 +02:00
|
|
|
version = "1.0.0"
|
2022-08-04 15:00:24 +02:00
|
|
|
edition = "2021"
|
|
|
|
description = "A parser for the narinfo file format"
|
2022-08-18 22:33:42 +02:00
|
|
|
repository = "https://im.badat.dev/bad/narinfo-rs"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
keywords = ["nix", "nixos"]
|
2022-08-04 15:00:24 +02:00
|
|
|
|
2022-08-19 23:33:27 +02:00
|
|
|
[features]
|
|
|
|
libnixstore = ["dep:libnixstore"]
|
|
|
|
|
2022-08-04 15:00:24 +02:00
|
|
|
[dependencies]
|
|
|
|
derive_builder = { version = "0.11.2", default-features = false }
|
2022-08-19 23:33:27 +02:00
|
|
|
libnixstore = { version = "0.2.0", optional = true }
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|