about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-07-15 00:19:37 +0200
committerBaitinq <[email protected]>2025-07-15 00:19:37 +0200
commitee431d66d44decf36ac2cbbc0e12e20fdd9e7ef4 (patch)
tree6ebbe490f4ce7ff4c692f50b9d83d93bba34267c
parentBoostrap: Add todos (diff)
downloadpry-lang-ee431d66d44decf36ac2cbbc0e12e20fdd9e7ef4.tar.gz
pry-lang-ee431d66d44decf36ac2cbbc0e12e20fdd9e7ef4.tar.bz2
pry-lang-ee431d66d44decf36ac2cbbc0e12e20fdd9e7ef4.zip
Misc: Rename zig project
-rw-r--r--build.zig4
-rw-r--r--build.zig.zon4
2 files changed, 4 insertions, 4 deletions
diff --git a/build.zig b/build.zig
index 780c0e2..084e328 100644
--- a/build.zig
+++ b/build.zig
@@ -53,7 +53,7 @@ pub fn build(b: *std.Build) !void {
     // This creates another `std.Build.Step.Compile`, but this one builds an executable
     // rather than a static library.
     const exe = b.addExecutable(.{
-        .name = "interpreter",
+        .name = "pry-lang",
         .root_module = exe_mod,
     });
 
@@ -64,7 +64,7 @@ pub fn build(b: *std.Build) !void {
 
     // This is needed for better lsp errors
     const exe_check = b.addExecutable(.{
-        .name = "interpreter-lsp",
+        .name = "pry-lang-lsp",
         .root_source_file = b.path("src/main.zig"),
         .root_module = exe_mod,
         .optimize = optimize,
diff --git a/build.zig.zon b/build.zig.zon
index 3e45422..ec1df76 100644
--- a/build.zig.zon
+++ b/build.zig.zon
@@ -6,9 +6,9 @@
     //
     // It is redundant to include "zig" in this name because it is already
     // within the Zig package namespace.
-    .name = .interpreter,
+    .name = .pry_lang,
 
-    .fingerprint = 0xb03226b7e4393345,
+    .fingerprint = 0x34a6d0963e3b7b4d,
 
     // This is a [Semantic Version](https://semver.org/).
     // In a future version of Zig it will be used for package deduplication.