From 4560b93009d4f4c2e8b0077c5ea9cc7b61050d32 Mon Sep 17 00:00:00 2001 From: Meghan Denny Date: Fri, 19 Mar 2021 00:40:04 -0700 Subject: [PATCH] util/dep_type- add commented types --- src/util/dep_type.zig | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/util/dep_type.zig b/src/util/dep_type.zig index 9552926ac2b23aeb552708983202d03448bc2e04..c7f52e531b6781a77231f4e99189e5c5f980b7bc 100644 --- a/src/util/dep_type.zig +++ b/src/util/dep_type.zig @@ -11,6 +11,23 @@ pub const DepType = enum { git, // https://git-scm.com/ hg, // https://www.mercurial-scm.org/ http, // https://en.wikipedia.org/wiki/Hypertext_Transfer_Protocol + // svn, // https://subversion.apache.org/ + // fossil, // https://fossil-scm.org/ + // cvs, // https://nongnu.org/cvs/ + // darcs, // http://darcs.net/ + // // + // bazaar, // https://bazaar.canonical.com/en/ + // pijul, // https://pijul.org/ + // // + // ftp, // https://en.wikipedia.org/wiki/File_Transfer_Protocol + // ssh, // https://www.ssh.com/ssh/ + // onion, // https://www.torproject.org/ + // i2p, // https://geti2p.net/en/ + // torrent, // https://en.wikipedia.org/wiki/BitTorrent + // magnet, // https://en.wikipedia.org/wiki/BitTorrent + // dat, // https://www.datprotocol.com/ + // ipfs, // https://www.ipfs.com/ + // hypercore, // https://hypercore-protocol.org/ pub fn pull(self: DepType, rpath: []const u8, dpath: []const u8) !void { switch (self) { -- 2.54.0