From 11874d3a7119b9a02abdbb406ca9a84c5db7fae7 Mon Sep 17 00:00:00 2001 From: Adam Joseph Date: Tue, 22 Nov 2022 15:55:03 -0800 Subject: chore(tvix/eval): postpone use of "dep:" for a bit The "dep:" syntax in Cargo.toml is very new; crate2nix master has support for it, but they have not yet made a release with this update, and therefore the crate2nix in nixpkgs does not yet support it. Could we avoid using "dep:" for a few weeks to give crate2nix a chance to release so I can bump the version in nixpkgs? I've opened an issue asking crate2nix to make a release: https://github.com/kolloch/crate2nix/issues/264 I propose that if they haven't acted within a month we stop waiting and revert this at that time. Change-Id: I999a72429db667bedf4b2cdba27cb63b3f3d9657 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7350 Reviewed-by: tazjin Tested-by: BuildkiteCI --- tvix/eval/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tvix/eval/Cargo.toml b/tvix/eval/Cargo.toml index ee177c7def..ce72745889 100644 --- a/tvix/eval/Cargo.toml +++ b/tvix/eval/Cargo.toml @@ -50,7 +50,7 @@ default = [ "repl", "impure", "arbitrary", "nix_tests" ] nix_tests = [] # Enables building the binary (tvix-eval REPL) -repl = [ "dep:rustyline", "dep:clap" ] +repl = [ "rustyline", "clap" ] # Enables operations in the VM which depend on the ability to perform I/O impure = [] -- cgit 1.4.1