summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-05-26 12:17:10 +0200
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2022-06-14 14:08:40 +0200
commit35fa192838ecfa244335fca957e55d3956a48665 (patch)
tree7a1dac873c8c219d0ca933aa2a36891d92764302 /commands
parent09ac73338198ceb143c1e5edc5859ab735cd80bb (diff)
deps: Udpate to github.com/alecthomas/chroma/v2
Fixes #9932 Fixes #9931
Diffstat (limited to 'commands')
-rw-r--r--commands/genchromastyles.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/commands/genchromastyles.go b/commands/genchromastyles.go
index a2476ffdf..4dfa77d2e 100644
--- a/commands/genchromastyles.go
+++ b/commands/genchromastyles.go
@@ -16,9 +16,9 @@ package commands
import (
"os"
- "github.com/alecthomas/chroma"
- "github.com/alecthomas/chroma/formatters/html"
- "github.com/alecthomas/chroma/styles"
+ "github.com/alecthomas/chroma/v2"
+ "github.com/alecthomas/chroma/v2/formatters/html"
+ "github.com/alecthomas/chroma/v2/styles"
"github.com/spf13/cobra"
)