diff options
Diffstat (limited to '')
| -rw-r--r-- | build.zig.zon | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/build.zig.zon b/build.zig.zon deleted file mode 100644 index ec1df76..0000000 --- a/build.zig.zon +++ /dev/null @@ -1,30 +0,0 @@ -.{ - // This is the default name used by packages depending on this one. For - // example, when a user runs `zig fetch --save <url>`, this field is used - // as the key in the `dependencies` table. Although the user can choose a - // different name, most users will stick with this provided value. - // - // It is redundant to include "zig" in this name because it is already - // within the Zig package namespace. - .name = .pry_lang, - - .fingerprint = 0x34a6d0963e3b7b4d, - - // This is a [Semantic Version](https://semver.org/). - // In a future version of Zig it will be used for package deduplication. - .version = "0.0.0", - - // This field is optional. - // This is currently advisory only; Zig does not yet do anything - // with this value. - .minimum_zig_version = "0.14.0", - - .paths = .{ - "build.zig", - "build.zig.zon", - "src", - // For example... - //"LICENSE", - //"README.md", - }, -} |