|
| 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. |
| 5 | + .version = "0.13.0", |
| 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 | + .dependencies = .{ |
| 18 | + .base58 = .{ |
| 19 | + .url = "https://github.com/joncinque/base58-zig/archive/refs/tags/v0.13.3.tar.gz", |
| 20 | + .hash = "1220fd067bf167b9062cc29ccf715ff97643c2d3f8958beea863b6036876bb71bcb8", |
| 21 | + }, |
| 22 | + .@"solana-program-sdk" = .{ |
| 23 | + .url = "https://github.com/joncinque/solana-program-sdk-zig/archive/refs/tags/v0.13.1.tar.gz", |
| 24 | + .hash = "122030336f1257e3c0aa64243f5243f554b903c6b9ef3a91d48bfbe896c0c7d9b13b", |
| 25 | + }, |
| 26 | + .@"solana-program-library" = .{ |
| 27 | + .url = "https://github.com/joncinque/solana-program-library-zig/archive/refs/tags/v0.13.1.tar.gz", |
| 28 | + .hash = "12208555f3e41bfba0ac89c4a7c6884595c78aa5d4ff4f99869c7ae0e396fd762448", |
| 29 | + }, |
| 30 | + }, |
| 31 | + |
| 32 | + // Specifies the set of files and directories that are included in this package. |
| 33 | + // Only files and directories listed here are included in the `hash` that |
| 34 | + // is computed for this package. |
| 35 | + // Paths are relative to the build root. Use the empty string (`""`) to refer to |
| 36 | + // the build root itself. |
| 37 | + // A directory listed here means that all files within, recursively, are included. |
| 38 | + .paths = .{ |
| 39 | + // For example... |
| 40 | + "build.zig", |
| 41 | + "build.zig.zon", |
| 42 | + "src", |
| 43 | + "../../LICENSE", |
| 44 | + "../../README.md", |
| 45 | + }, |
| 46 | +} |
0 commit comments