about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2024-10-12T22·33+0300
committerclbot <clbot@tvl.fyi>2024-10-12T23·02+0000
commit398a9b531758297417280ccf06b82c85f3d236dd (patch)
tree1cc1461a07db173c2c2594f447d6d584976dcac1
parentb21cb11b7f65d84baca62a0492d63d184e4f5095 (diff)
chore(tvix/tools): move crunch-v2 to //users/edef r/8798
This is not a core Tvix tool, it's some sort of one-off analysis thing.

Change-Id: I05fcbed45abad27d6b5cfd49db1727249dad3971
Reviewed-on: https://cl.tvl.fyi/c/depot/+/12603
Autosubmit: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Reviewed-by: edef <edef@edef.eu>
-rw-r--r--users/edef/crunch-v2/.gitignore (renamed from tvix/tools/crunch-v2/.gitignore)0
-rw-r--r--users/edef/crunch-v2/Cargo.lock (renamed from tvix/tools/crunch-v2/Cargo.lock)0
-rw-r--r--users/edef/crunch-v2/Cargo.nix (renamed from tvix/tools/crunch-v2/Cargo.nix)4
-rw-r--r--users/edef/crunch-v2/Cargo.toml (renamed from tvix/tools/crunch-v2/Cargo.toml)2
-rw-r--r--users/edef/crunch-v2/OWNERS (renamed from tvix/tools/crunch-v2/OWNERS)0
-rw-r--r--users/edef/crunch-v2/build.rs (renamed from tvix/tools/crunch-v2/build.rs)0
-rw-r--r--users/edef/crunch-v2/default.nix (renamed from tvix/tools/crunch-v2/default.nix)0
-rw-r--r--users/edef/crunch-v2/protos/flatstore.proto (renamed from tvix/tools/crunch-v2/protos/flatstore.proto)0
-rw-r--r--users/edef/crunch-v2/src/bin/extract.rs (renamed from tvix/tools/crunch-v2/src/bin/extract.rs)0
-rw-r--r--users/edef/crunch-v2/src/lib.rs (renamed from tvix/tools/crunch-v2/src/lib.rs)0
-rw-r--r--users/edef/crunch-v2/src/main.rs (renamed from tvix/tools/crunch-v2/src/main.rs)0
-rw-r--r--users/edef/crunch-v2/src/remote.rs (renamed from tvix/tools/crunch-v2/src/remote.rs)0
12 files changed, 3 insertions, 3 deletions
diff --git a/tvix/tools/crunch-v2/.gitignore b/users/edef/crunch-v2/.gitignore
index 4bed5da93fb2..4bed5da93fb2 100644
--- a/tvix/tools/crunch-v2/.gitignore
+++ b/users/edef/crunch-v2/.gitignore
diff --git a/tvix/tools/crunch-v2/Cargo.lock b/users/edef/crunch-v2/Cargo.lock
index b82ef1f8acc5..b82ef1f8acc5 100644
--- a/tvix/tools/crunch-v2/Cargo.lock
+++ b/users/edef/crunch-v2/Cargo.lock
diff --git a/tvix/tools/crunch-v2/Cargo.nix b/users/edef/crunch-v2/Cargo.nix
index 59c08709cf53..1cbcfa6a5e67 100644
--- a/tvix/tools/crunch-v2/Cargo.nix
+++ b/users/edef/crunch-v2/Cargo.nix
@@ -4087,7 +4087,7 @@ rec {
         version = "0.1.0";
         edition = "2021";
         crateBin = [ ];
-        src = lib.cleanSourceWith { filter = sourceFilter; src = ../../nix-compat; };
+        src = lib.cleanSourceWith { filter = sourceFilter; src = ../../../tvix/nix-compat; };
         libName = "nix_compat";
         dependencies = [
           {
@@ -4199,7 +4199,7 @@ rec {
         crateName = "nix-compat-derive";
         version = "0.1.0";
         edition = "2021";
-        src = lib.cleanSourceWith { filter = sourceFilter; src = ../../nix-compat-derive; };
+        src = lib.cleanSourceWith { filter = sourceFilter; src = ../../../tvix/nix-compat-derive; };
         procMacro = true;
         libName = "nix_compat_derive";
         dependencies = [
diff --git a/tvix/tools/crunch-v2/Cargo.toml b/users/edef/crunch-v2/Cargo.toml
index 4421c8b9ab34..2dd94203367f 100644
--- a/tvix/tools/crunch-v2/Cargo.toml
+++ b/users/edef/crunch-v2/Cargo.toml
@@ -19,7 +19,7 @@ tokio = { version = "1.37.0", features = ["full"] }
 rusoto_core = { version = "0.48.0", default-features = false, features = ["hyper-rustls"] }
 rusoto_s3 = { version = "0.48.0", default-features = false, features = ["rustls"] }
 
-nix-compat = { version = "0.1.0", path = "../../nix-compat" }
+nix-compat = { version = "0.1.0", path = "../../../tvix/nix-compat" }
 sled = "0.34.7"
 
 fastcdc = "3.1.0"
diff --git a/tvix/tools/crunch-v2/OWNERS b/users/edef/crunch-v2/OWNERS
index b9bc074a8020..b9bc074a8020 100644
--- a/tvix/tools/crunch-v2/OWNERS
+++ b/users/edef/crunch-v2/OWNERS
diff --git a/tvix/tools/crunch-v2/build.rs b/users/edef/crunch-v2/build.rs
index 25e6d0be21a4..25e6d0be21a4 100644
--- a/tvix/tools/crunch-v2/build.rs
+++ b/users/edef/crunch-v2/build.rs
diff --git a/tvix/tools/crunch-v2/default.nix b/users/edef/crunch-v2/default.nix
index 8014aa9443c8..8014aa9443c8 100644
--- a/tvix/tools/crunch-v2/default.nix
+++ b/users/edef/crunch-v2/default.nix
diff --git a/tvix/tools/crunch-v2/protos/flatstore.proto b/users/edef/crunch-v2/protos/flatstore.proto
index 2f2838fc75c2..2f2838fc75c2 100644
--- a/tvix/tools/crunch-v2/protos/flatstore.proto
+++ b/users/edef/crunch-v2/protos/flatstore.proto
diff --git a/tvix/tools/crunch-v2/src/bin/extract.rs b/users/edef/crunch-v2/src/bin/extract.rs
index 416d201f4e04..416d201f4e04 100644
--- a/tvix/tools/crunch-v2/src/bin/extract.rs
+++ b/users/edef/crunch-v2/src/bin/extract.rs
diff --git a/tvix/tools/crunch-v2/src/lib.rs b/users/edef/crunch-v2/src/lib.rs
index 09ea2e75d5a3..09ea2e75d5a3 100644
--- a/tvix/tools/crunch-v2/src/lib.rs
+++ b/users/edef/crunch-v2/src/lib.rs
diff --git a/tvix/tools/crunch-v2/src/main.rs b/users/edef/crunch-v2/src/main.rs
index 5be8c28e293f..5be8c28e293f 100644
--- a/tvix/tools/crunch-v2/src/main.rs
+++ b/users/edef/crunch-v2/src/main.rs
diff --git a/tvix/tools/crunch-v2/src/remote.rs b/users/edef/crunch-v2/src/remote.rs
index 93952ecd737f..93952ecd737f 100644
--- a/tvix/tools/crunch-v2/src/remote.rs
+++ b/users/edef/crunch-v2/src/remote.rs