This allows cargo metadata to operate on it without adding the source files to the build. (A choice which will save a few rebuilds of the manual) (cherry picked from commit 1779295f3e13cc15f8422d52a3753bb927ac8fa7)
13 lines
221 B
TOML
13 lines
221 B
TOML
[package]
|
|
name = "nix-store"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.79"
|
|
nix-util = { path = "../nix-util" }
|
|
nix-c-raw = { path = "../nix-c-raw" }
|
|
lazy_static = "1.4.0"
|