|
1 | 1 | .{ |
2 | 2 | .name = .solana_rosetta_helloworld, |
3 | 3 | .fingerprint = 0x34d885e7d0be5910, |
4 | | - // This is a [Semantic Version](https://semver.org/). |
5 | | - // In a future version of Zig it will be used for package deduplication. |
6 | | - .version = "0.13.0", |
7 | | - |
8 | | - // This field is optional. |
9 | | - // This is currently advisory only; Zig does not yet do anything |
10 | | - // with this value. |
11 | | - .minimum_zig_version = "0.14.0", |
12 | | - |
13 | | - // This field is optional. |
14 | | - // Each dependency must either provide a `url` and `hash`, or a `path`. |
15 | | - // `zig build --fetch` can be used to fetch all dependencies of a package, recursively. |
16 | | - // Once all dependencies are fetched, `zig build` no longer requires |
17 | | - // internet connectivity. |
| 4 | + .version = "0.15.0", |
| 5 | + .minimum_zig_version = "0.15.0", |
18 | 6 | .dependencies = .{ |
19 | 7 | .base58 = .{ |
20 | | - .url = "https://github.com/joncinque/base58-zig/archive/refs/tags/v0.14.0.tar.gz", |
21 | | - .hash = "base58-0.14.0-6-CZm81qAAD4JCRHgewcNh8FS0pmnk7-OmwUkosaFKvg", |
| 8 | + .url = "https://github.com/joncinque/base58-zig/archive/refs/tags/v0.15.0.tar.gz", |
| 9 | + .hash = "base58-0.15.0-6-CZmwVpAAAxqof6REya9G_XyHL1fTqUsAcsZ-J1IHMF", |
22 | 10 | }, |
23 | 11 | .solana_program_sdk = .{ |
24 | | - .url = "https://github.com/joncinque/solana-program-sdk-zig/archive/refs/tags/v0.16.2.tar.gz", |
25 | | - .hash = "solana_program_sdk-0.16.2-wGj9UHXjAAAK5z6ZdLUJ5uu2SxgE8o7ZJ9Il4EG22IJP", |
| 12 | + .url = "https://github.com/joncinque/solana-program-sdk-zig/archive/refs/tags/v0.17.0.tar.gz", |
| 13 | + .hash = "solana_program_sdk-0.17.0-wGj9UHjiAAC5lyL1BQ4MI7wcQYrqSjHrxdvZXDaA8Glb", |
26 | 14 | }, |
27 | 15 | }, |
28 | | - |
29 | | - // Specifies the set of files and directories that are included in this package. |
30 | | - // Only files and directories listed here are included in the `hash` that |
31 | | - // is computed for this package. |
32 | | - // Paths are relative to the build root. Use the empty string (`""`) to refer to |
33 | | - // the build root itself. |
34 | | - // A directory listed here means that all files within, recursively, are included. |
35 | 16 | .paths = .{ |
36 | | - // For example... |
37 | 17 | "build.zig", |
38 | 18 | "build.zig.zon", |
39 | 19 | "src", |
|
0 commit comments