From 21d7388c317154c32aaf27523a6c2f5e901ba27d Mon Sep 17 00:00:00 2001 From: Sebastian Serth Date: Fri, 23 Jun 2023 22:38:24 +0200 Subject: [PATCH] Remove Consul Dependency It seems like consul is not required any longer --- go.mod | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/go.mod b/go.mod index 9142a60..4ae0da8 100644 --- a/go.mod +++ b/go.mod @@ -16,12 +16,8 @@ require ( gopkg.in/yaml.v3 v3.0.1 ) -replace ( - // Consul is used by Nomad, but rather in an old version v1.7.8 with security issues. - github.com/hashicorp/consul => github.com/hashicorp/consul v1.15.3 - // Nomad is not compatible with newer versions of HCLv2 yet. - github.com/hashicorp/hcl/v2 => github.com/hashicorp/hcl/v2 v2.9.2-0.20220525143345-ab3cae0737bc -) +// Nomad is not compatible with newer versions of HCLv2 yet. +replace github.com/hashicorp/hcl/v2 => github.com/hashicorp/hcl/v2 v2.9.2-0.20220525143345-ab3cae0737bc require ( github.com/agext/levenshtein v1.2.3 // indirect