chore(tvix/eval): bump rnix-parser to latest HEAD
This bumps rnix-parser to a commit that should be unaffected by the Nix >= 2.4 bug that prevents it from cloning repositories with filters. Change-Id: Ie01da95245ec6740fa889eb710819e512202f665 Reviewed-on: https://cl.tvl.fyi/c/depot/+/6634 Tested-by: BuildkiteCI Reviewed-by: sterni <sternenseemann@systemli.org>
This commit is contained in:
parent
a798efc77b
commit
b3cc4c8c2c
5 changed files with 6 additions and 6 deletions
2
corp/tvixbolt/Cargo.lock
generated
2
corp/tvixbolt/Cargo.lock
generated
|
@ -363,7 +363,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rnix"
|
name = "rnix"
|
||||||
version = "0.11.0-dev"
|
version = "0.11.0-dev"
|
||||||
source = "git+https://github.com/nix-community/rnix-parser.git?rev=97b438e34be5211a4b48aeed9cc3ded489b4d6da#97b438e34be5211a4b48aeed9cc3ded489b4d6da"
|
source = "git+https://github.com/nix-community/rnix-parser.git?rev=7d0d929c22ad27bdcc0779afe445b541d3ce9631#7d0d929c22ad27bdcc0779afe445b541d3ce9631"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"rowan",
|
"rowan",
|
||||||
]
|
]
|
||||||
|
|
|
@ -15,7 +15,7 @@ wasm-bindgen = "= 0.2.82"
|
||||||
|
|
||||||
[dependencies.rnix]
|
[dependencies.rnix]
|
||||||
git = "https://github.com/nix-community/rnix-parser.git"
|
git = "https://github.com/nix-community/rnix-parser.git"
|
||||||
rev = "97b438e34be5211a4b48aeed9cc3ded489b4d6da"
|
rev = "7d0d929c22ad27bdcc0779afe445b541d3ce9631"
|
||||||
|
|
||||||
[dependencies.tvix-eval]
|
[dependencies.tvix-eval]
|
||||||
path = "../../tvix/eval"
|
path = "../../tvix/eval"
|
||||||
|
|
|
@ -58,7 +58,7 @@ pkgs.rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
cargoLock.lockFile = ./Cargo.lock;
|
cargoLock.lockFile = ./Cargo.lock;
|
||||||
cargoLock.outputHashes = {
|
cargoLock.outputHashes = {
|
||||||
"rnix-0.11.0-dev" = "sha256:1dd8gf2v4v6451r3n9iaks7bqk55izgblkqzymx77advpqwlpymq";
|
"rnix-0.11.0-dev" = "sha256:1vvpnv0jbyr96z8cb1r6k613zqsryan9awi53f901q3qjc856iz0";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
|
|
2
tvix/eval/Cargo.lock
generated
2
tvix/eval/Cargo.lock
generated
|
@ -801,7 +801,7 @@ dependencies = [
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "rnix"
|
name = "rnix"
|
||||||
version = "0.11.0-dev"
|
version = "0.11.0-dev"
|
||||||
source = "git+https://github.com/nix-community/rnix-parser.git?rev=97b438e34be5211a4b48aeed9cc3ded489b4d6da#97b438e34be5211a4b48aeed9cc3ded489b4d6da"
|
source = "git+https://github.com/nix-community/rnix-parser.git?rev=7d0d929c22ad27bdcc0779afe445b541d3ce9631#7d0d929c22ad27bdcc0779afe445b541d3ce9631"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"rowan",
|
"rowan",
|
||||||
]
|
]
|
||||||
|
|
|
@ -24,11 +24,11 @@ codemap-diagnostic = "0.1.1"
|
||||||
proptest = { version = "1.0.0", default_features = false, features = ["std", "alloc", "break-dead-code", "tempfile"], optional = true }
|
proptest = { version = "1.0.0", default_features = false, features = ["std", "alloc", "break-dead-code", "tempfile"], optional = true }
|
||||||
test-strategy = { version = "0.2.1", optional = true }
|
test-strategy = { version = "0.2.1", optional = true }
|
||||||
|
|
||||||
# rnix has not been released in a while (as of 2022-09-01), we will
|
# rnix has not been released in a while (as of 2022-09-18), we will
|
||||||
# use it from git.
|
# use it from git.
|
||||||
[dependencies.rnix]
|
[dependencies.rnix]
|
||||||
git = "https://github.com/nix-community/rnix-parser.git"
|
git = "https://github.com/nix-community/rnix-parser.git"
|
||||||
rev = "97b438e34be5211a4b48aeed9cc3ded489b4d6da"
|
rev = "7d0d929c22ad27bdcc0779afe445b541d3ce9631"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
criterion = "0.3.6"
|
criterion = "0.3.6"
|
||||||
|
|
Loading…
Reference in a new issue