-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.zig.zon
More file actions
35 lines (31 loc) · 878 Bytes
/
Copy pathbuild.zig.zon
File metadata and controls
35 lines (31 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
.{
.name = .zigeth,
// Semantic version
.version = "0.6.0",
// Unique package identifier
// DO NOT change this unless forking the project
.fingerprint = 0x6f8e09d114966ae6,
// Minimum Zig version required
.minimum_zig_version = "0.16.0",
// Dependencies
// To add a new dependency, use: zig fetch --save <url>
.dependencies = .{
.zig_eth_secp256k1 = .{
.url = "https://github.com/jsign/zig-eth-secp256k1/archive/refs/heads/main.tar.gz",
.hash = "zig_eth_secp256k1-0.1.0-_U97sAbrDAAB9Q-p2ik2QqpECd08t0meJdb11Rh-HnGo",
},
},
.paths = .{
"build.zig",
"build.zig.zon",
"src",
"README.md",
"CHANGELOG.md",
"RELEASING.md",
"VERSION",
"zigeth_logo.jpg",
"examples",
// "LICENSE",
// "bench",
},
}