Fixes rnix not parsing files with chained pipe operators in them. Though honestly I'm not sure how this was working before with any pipe operators at all? See: https://github.com/nix-community/rnix-parser/pull/167 Fixes: https://git.lix.systems/lix-project/lix/issues/938 Change-Id: Ifbd737a02bd43f994bfef61d035d40391836aeb9
18 lines
450 B
TOML
18 lines
450 B
TOML
[package]
|
|
description = "Nix function documentation tool, stripped down into a library"
|
|
edition = "2021"
|
|
name = "lix-doc"
|
|
version = "0.0.1"
|
|
license = "BSD-2-Clause OR MIT"
|
|
# upstream details
|
|
homepage = "https://github.com/lf-/nix-doc"
|
|
repository = "https://github.com/lf-/nix-doc"
|
|
|
|
[dependencies]
|
|
rnix = "0.12.0"
|
|
# Necessary because rnix fails to export a critical trait (Rowan's AstNode).
|
|
rowan = "0.15.16"
|
|
|
|
[dev-dependencies]
|
|
expect-test = "1.1.0"
|