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