installer: add support for data URLs

RFC 015 proposes the introduction of data URLs to materialize static
content to files on disk. This commit adds support for data URLs to the
installer. The corresponding content will be added to versions.go in a
subsequent commit.
This commit is contained in:
Markus Rudy 2023-12-08 18:34:10 +01:00 committed by Markus Rudy
parent 8d8853ef31
commit ae00b0a198
6 changed files with 97 additions and 18 deletions

View file

@ -4876,6 +4876,14 @@ def go_dependencies():
sum = "h1:AalPS4VGiKavpAzIlBjrn7bhqXiXi4jbMYY/2+UC+4o=",
version = "v1.1.0",
)
go_repository(
name = "com_github_vincent_petithory_dataurl",
build_file_generation = "on",
build_file_proto_mode = "disable_global",
importpath = "github.com/vincent-petithory/dataurl",
sum = "h1:cXw+kPto8NLuJtlMsI152irrVw9fRDX8AbShPRpg2CI=",
version = "v1.0.0",
)
go_repository(
name = "com_github_vishvananda_netlink",
build_file_generation = "on",