From 48534f8c321cb33190a3cc80a9c364ffbf68c878 Mon Sep 17 00:00:00 2001 From: stuebinm Date: Tue, 19 Mar 2024 02:44:58 +0100 Subject: rust script to automatically add meta.mainProgram to nixpkgs with thanks to pennae, who showed that this approach was possible (and wrote the status-report widget) https://github.com/pennae/nix-doc-munge --- Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..7c3c8d6 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "nixq" +version = "0.1.0" +edition = "2021" +authors = [ "stuebinm " ] + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +rnix = "0.11" +anyhow = "1.0.57" +regex = "1.6" +threadpool = "1.8.1" +rowan = "0.15.15" +serde_json = "1.0.114" +serde = { version = "1.0.197", features = ["derive"] } +itertools = "0.12.1" -- cgit v1.2.3