diff options
author | Akshay <[email protected]> | 2022-01-29 11:01:20 +0000 |
---|---|---|
committer | Akshay <[email protected]> | 2022-01-29 11:01:20 +0000 |
commit | df29effd59bb8971395419b79e8c0e51f373d4fb (patch) | |
tree | 1d1fd9c1fdbb68260a7de24c2a799541f3ad1e24 /lib/Cargo.toml | |
parent | 8e4eeb979ebaa8f0f461e66d986a75c3a80220b6 (diff) |
bump rnix to latest master, support nix 2.5 syntax
Diffstat (limited to 'lib/Cargo.toml')
-rw-r--r-- | lib/Cargo.toml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/Cargo.toml b/lib/Cargo.toml index 54b9c52..d90c5bf 100644 --- a/lib/Cargo.toml +++ b/lib/Cargo.toml | |||
@@ -7,13 +7,16 @@ license = "MIT" | |||
7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | 7 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
8 | 8 | ||
9 | [dependencies] | 9 | [dependencies] |
10 | rnix = "0.9.0" | ||
11 | if_chain = "1.0" | 10 | if_chain = "1.0" |
12 | macros = { path = "../macros" } | 11 | macros = { path = "../macros" } |
13 | lazy_static = "1.0" | 12 | lazy_static = "1.0" |
14 | rowan = "0.12.5" | 13 | rowan = "0.12.5" |
15 | serde_json = { version = "1.0.68", optional = true } | 14 | serde_json = { version = "1.0.68", optional = true } |
16 | 15 | ||
16 | [dependencies.rnix] | ||
17 | git = "https://github.com/nix-community/rnix-parser" | ||
18 | rev = "8083f5694ddeaca47c946aa9ae7ecf117fa4823b" | ||
19 | |||
17 | [dependencies.serde] | 20 | [dependencies.serde] |
18 | version = "1.0.130" | 21 | version = "1.0.130" |
19 | features = [ "derive" ] | 22 | features = [ "derive" ] |