diff options
author | Florian Klink <flokli@flokli.de> | 2024-06-12T21·16+0300 |
---|---|---|
committer | clbot <clbot@tvl.fyi> | 2024-06-12T23·43+0000 |
commit | 99df0e73f462d5a783edf8ae5184fc80b61b7b6b (patch) | |
tree | 036548958b71df4973fbe1e45c21791bc0b9b34b | |
parent | ddd88a589b3a4610627ba5620e273f4d055541f0 (diff) |
chore(tvix/castore): drop unused indicatif dependency r/8256
Change-Id: I9fbd32596fbffe09a590a50044a4f1d074a424c3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11794 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com> Autosubmit: flokli <flokli@flokli.de>
-rw-r--r-- | tvix/Cargo.lock | 1 | ||||
-rw-r--r-- | tvix/Cargo.nix | 4 | ||||
-rw-r--r-- | tvix/castore/Cargo.toml | 1 |
3 files changed, 0 insertions, 6 deletions
diff --git a/tvix/Cargo.lock b/tvix/Cargo.lock index 9dd63c240c5a..6d5224c75c1e 100644 --- a/tvix/Cargo.lock +++ b/tvix/Cargo.lock @@ -4150,7 +4150,6 @@ dependencies = [ "fuse-backend-rs", "futures", "hex-literal", - "indicatif", "lazy_static", "libc", "object_store", diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix index 6200fe6025b9..2c40ef51f6fd 100644 --- a/tvix/Cargo.nix +++ b/tvix/Cargo.nix @@ -13062,10 +13062,6 @@ rec { packageId = "futures"; } { - name = "indicatif"; - packageId = "indicatif"; - } - { name = "lazy_static"; packageId = "lazy_static"; } diff --git a/tvix/castore/Cargo.toml b/tvix/castore/Cargo.toml index 40d4f24d9f75..c03dca3ebb34 100644 --- a/tvix/castore/Cargo.toml +++ b/tvix/castore/Cargo.toml @@ -14,7 +14,6 @@ data-encoding = "2.3.3" digest = "0.10.7" fastcdc = { version = "3.1.0", features = ["tokio"] } futures = "0.3.30" -indicatif = "0.17.8" lazy_static = "1.4.0" object_store = { version = "0.9.1", features = ["http"] } parking_lot = "0.12.1" |