about summary refs log tree commit diff
path: root/tvix
diff options
context:
space:
mode:
Diffstat (limited to 'tvix')
-rw-r--r--tvix/Cargo.nix4
-rw-r--r--tvix/store/src/bin/tvix-store.rs (renamed from tvix/store/src/main.rs)1
2 files changed, 2 insertions, 3 deletions
diff --git a/tvix/Cargo.nix b/tvix/Cargo.nix
index 2c35727427..20751f596a 100644
--- a/tvix/Cargo.nix
+++ b/tvix/Cargo.nix
@@ -8279,8 +8279,8 @@ rec {
         edition = "2021";
         crateBin = [
           {
-            name = "tvix-store-bin";
-            path = "src/main.rs";
+            name = "tvix-store";
+            path = "src/bin/tvix-store.rs";
             requiredFeatures = [ ];
           }
         ];
diff --git a/tvix/store/src/main.rs b/tvix/store/src/bin/tvix-store.rs
index 6c3b44eec7..d2095a079f 100644
--- a/tvix/store/src/main.rs
+++ b/tvix/store/src/bin/tvix-store.rs
@@ -23,7 +23,6 @@ use tracing::{info, Level};
 struct Cli {
     #[clap(long, short = 'l')]
     listen_address: Option<String>,
-
     /// Whether to log in JSON
     #[clap(long)]
     json: bool,