diff options
Diffstat (limited to 'lix-doc/Cargo.toml')
-rw-r--r-- | lix-doc/Cargo.toml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lix-doc/Cargo.toml b/lix-doc/Cargo.toml index df4eed932..3f8ded0f7 100644 --- a/lix-doc/Cargo.toml +++ b/lix-doc/Cargo.toml @@ -1,6 +1,6 @@ [package] description = "Nix function documentation tool, stripped down into a library" -edition = "2018" +edition = "2021" name = "lix-doc" version = "0.0.1" license = "BSD-2-Clause OR MIT" @@ -12,7 +12,9 @@ repository = "https://github.com/lf-/nix-doc" crate_type = ["staticlib"] [dependencies] -rnix = "0.8.0" +rnix = "0.11.0" +# Necessary because rnix fails to export a critical trait (Rowan's AstNode). +rowan = "0.15.0" [dev-dependencies] expect-test = "1.1.0" |