Fork of daniellemaywood.uk/gleam — Wasm codegen work
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: 2014 The Hex Team
3
4syntax = "proto2";
5
6package names;
7
8message Names {
9 // All packages in the repository
10 repeated Package packages = 1;
11 // Name of repository
12 required string repository = 2;
13}
14
15message Package {
16 // Package name
17 required string name = 1;
18
19 // If set, the name of the package repository (NEVER USED, DEPRECATED)
20 // string repository = 2;
21}