about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAdam Joseph <adam@westernsemico.com>2022-11-22T23·55-0800
committerAdam Joseph <adam@westernsemico.com>2022-11-24T20·11+0000
commit11874d3a7119b9a02abdbb406ca9a84c5db7fae7 (patch)
treeae5252538fa71cd76228260ba278d9288bc21fad
parentbc537d2c0dcabe7324929e2fe2f310d4a9386095 (diff)
chore(tvix/eval): postpone use of "dep:" for a bit r/5309
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 <tazjin@tvl.su>
Tested-by: BuildkiteCI
-rw-r--r--tvix/eval/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
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 = []