mirror of
https://github.com/ziglang/zig.git
synced 2024-11-13 23:52:57 +00:00
seriously people, don't put "zig-" in your package names
related #20178
This commit is contained in:
parent
b32aa99b87
commit
95f0dce7da
@ -12,6 +12,14 @@ build.zig.
|
||||
|
||||
String. Required.
|
||||
|
||||
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.
|
||||
|
||||
### `version`
|
||||
|
||||
String. Required.
|
||||
|
@ -1,5 +1,13 @@
|
||||
.{
|
||||
// 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 = "$",
|
||||
|
||||
// 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",
|
||||
|
Loading…
Reference in New Issue
Block a user