diff options
author | Yureka <tvl@yuka.dev> | 2024-08-07T11·09+0200 |
---|---|---|
committer | yuka <tvl@yuka.dev> | 2024-08-07T11·36+0000 |
commit | 1d7ba89c19b231898a997f1af3c13ed8c7247793 (patch) | |
tree | 0c02b85bd144bc24d275b088f4fc7616f5198ba2 /tvix/eval | |
parent | 5b0264223f3c97f937fb8e74e114e1d1619b8bdb (diff) |
chore(tvix): change deprecated default_features to default-features r/8452
Change-Id: Ida31fe9a1205cdfc852d2ecbcbda32933b634562 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12143 Reviewed-by: aspen <root@gws.fyi> Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/eval')
-rw-r--r-- | tvix/eval/Cargo.toml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/eval/Cargo.toml b/tvix/eval/Cargo.toml index ed2ed0440804..3ebb13f23ce1 100644 --- a/tvix/eval/Cargo.toml +++ b/tvix/eval/Cargo.toml @@ -13,14 +13,14 @@ bstr = { version = "1.8.0", features = ["serde"] } codemap = "0.1.3" codemap-diagnostic = "0.1.1" dirs = "4.0.0" -genawaiter = { version = "0.99.1", default_features = false } +genawaiter = { version = "0.99.1", default-features = false } imbl = { version = "3.0", features = [ "serde" ] } itertools = "0.12.0" lazy_static = "1.4.0" lexical-core = { version = "0.8.5", features = ["format", "parse-floats"] } os_str_bytes = { version = "6.3", features = ["conversions"] } path-clean = "0.1" -proptest = { version = "1.3.0", default_features = false, features = ["std", "alloc", "tempfile"], optional = true } +proptest = { version = "1.3.0", default-features = false, features = ["std", "alloc", "tempfile"], optional = true } regex = "1.6.0" rnix = "0.11.0" rowan = "*" # pinned by rnix |