aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2022-01-29 11:28:19 +0000
committerAkshay <[email protected]>2022-01-29 11:28:19 +0000
commiteffe06e2f16f5b6faab258ff2b031dd5f14d59ec (patch)
tree187a4daca3b45f894ac09448f69a751c63ad21cf
parentdf29effd59bb8971395419b79e8c0e51f373d4fb (diff)
do not use git dependencyfeat/nix-2.5
-rw-r--r--Cargo.lock3
-rw-r--r--bin/Cargo.toml5
-rw-r--r--lib/Cargo.toml5
3 files changed, 4 insertions, 9 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 5b347d2..b75c29c 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -399,7 +399,8 @@ checksum = "f497285884f3fcff424ffc933e56d7cbca511def0c9831a7f9b5f6153e3cc89b"
399[[package]] 399[[package]]
400name = "rnix" 400name = "rnix"
401version = "0.10.1" 401version = "0.10.1"
402source = "git+https://github.com/nix-community/rnix-parser?rev=8083f5694ddeaca47c946aa9ae7ecf117fa4823b#8083f5694ddeaca47c946aa9ae7ecf117fa4823b" 402source = "registry+https://github.com/rust-lang/crates.io-index"
403checksum = "065c5eac8e8f7e7b0e7227bdc46e2d8dd7d69fff7a9a2734e21f686bbcb9b2c9"
403dependencies = [ 404dependencies = [
404 "cbitset", 405 "cbitset",
405 "rowan", 406 "rowan",
diff --git a/bin/Cargo.toml b/bin/Cargo.toml
index 34d6513..832ce72 100644
--- a/bin/Cargo.toml
+++ b/bin/Cargo.toml
@@ -16,6 +16,7 @@ path = "src/main.rs"
16 16
17[dependencies] 17[dependencies]
18ariadne = "0.1.3" 18ariadne = "0.1.3"
19rnix = "0.10.1"
19clap = "3.0.0-beta.4" 20clap = "3.0.0-beta.4"
20ignore = "0.4.18" 21ignore = "0.4.18"
21thiserror = "1.0.30" 22thiserror = "1.0.30"
@@ -24,10 +25,6 @@ vfs = { path = "../vfs" }
24lib = { path = "../lib" } 25lib = { path = "../lib" }
25toml = "0.5.8" 26toml = "0.5.8"
26 27
27[dependencies.rnix]
28git = "https://github.com/nix-community/rnix-parser"
29rev = "8083f5694ddeaca47c946aa9ae7ecf117fa4823b"
30
31[dependencies.serde] 28[dependencies.serde]
32version = "1.0.68" 29version = "1.0.68"
33features = [ "derive" ] 30features = [ "derive" ]
diff --git a/lib/Cargo.toml b/lib/Cargo.toml
index d90c5bf..82edfe8 100644
--- a/lib/Cargo.toml
+++ b/lib/Cargo.toml
@@ -7,16 +7,13 @@ 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]
10rnix = "0.10.1"
10if_chain = "1.0" 11if_chain = "1.0"
11macros = { path = "../macros" } 12macros = { path = "../macros" }
12lazy_static = "1.0" 13lazy_static = "1.0"
13rowan = "0.12.5" 14rowan = "0.12.5"
14serde_json = { version = "1.0.68", optional = true } 15serde_json = { version = "1.0.68", optional = true }
15 16
16[dependencies.rnix]
17git = "https://github.com/nix-community/rnix-parser"
18rev = "8083f5694ddeaca47c946aa9ae7ecf117fa4823b"
19
20[dependencies.serde] 17[dependencies.serde]
21version = "1.0.130" 18version = "1.0.130"
22features = [ "derive" ] 19features = [ "derive" ]