Lints and suggestions for the Nix programming language
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

do not use git dependency

Akshay effe06e2 df29effd

+4 -9
+2 -1
Cargo.lock
··· 399 399 [[package]] 400 400 name = "rnix" 401 401 version = "0.10.1" 402 - source = "git+https://github.com/nix-community/rnix-parser?rev=8083f5694ddeaca47c946aa9ae7ecf117fa4823b#8083f5694ddeaca47c946aa9ae7ecf117fa4823b" 402 + source = "registry+https://github.com/rust-lang/crates.io-index" 403 + checksum = "065c5eac8e8f7e7b0e7227bdc46e2d8dd7d69fff7a9a2734e21f686bbcb9b2c9" 403 404 dependencies = [ 404 405 "cbitset", 405 406 "rowan",
+1 -4
bin/Cargo.toml
··· 16 16 17 17 [dependencies] 18 18 ariadne = "0.1.3" 19 + rnix = "0.10.1" 19 20 clap = "3.0.0-beta.4" 20 21 ignore = "0.4.18" 21 22 thiserror = "1.0.30" ··· 23 24 vfs = { path = "../vfs" } 24 25 lib = { path = "../lib" } 25 26 toml = "0.5.8" 26 - 27 - [dependencies.rnix] 28 - git = "https://github.com/nix-community/rnix-parser" 29 - rev = "8083f5694ddeaca47c946aa9ae7ecf117fa4823b" 30 27 31 28 [dependencies.serde] 32 29 version = "1.0.68"
+1 -4
lib/Cargo.toml
··· 7 7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 8 9 9 [dependencies] 10 + rnix = "0.10.1" 10 11 if_chain = "1.0" 11 12 macros = { path = "../macros" } 12 13 lazy_static = "1.0" 13 14 rowan = "0.12.5" 14 15 serde_json = { version = "1.0.68", optional = true } 15 - 16 - [dependencies.rnix] 17 - git = "https://github.com/nix-community/rnix-parser" 18 - rev = "8083f5694ddeaca47c946aa9ae7ecf117fa4823b" 19 16 20 17 [dependencies.serde] 21 18 version = "1.0.130"