annotate go.mod @ 66:787b5ee0289d draft

Use vendored modules Signed-off-by: Izuru Yakumo <yakumo.izuru@chaotic.ninja>
author yakumo.izuru
date Sun, 23 Jul 2023 13:18:53 +0000
parents 6d985efa0f7a
children 4edfa07d5fe0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
55
c6785950280e The fastest, period.
yakumo.izuru
parents: 47
diff changeset
1 module marisa.chaotic.ninja/aya
43
9c8d908163a9 add go.mod and go.sum
sergii.zaitsev
parents:
diff changeset
2
46
afb3280aaf28 Fix deps
prologic
parents: 44
diff changeset
3 go 1.17
43
9c8d908163a9 add go.mod and go.sum
sergii.zaitsev
parents:
diff changeset
4
9c8d908163a9 add go.mod and go.sum
sergii.zaitsev
parents:
diff changeset
5 require (
65
6d985efa0f7a Add support for bfchroma syntax highlighting
yakumo.izuru
parents: 59
diff changeset
6 github.com/Depado/bfchroma/v2 v2.0.0
59
ed3aa9aaad0a Add functions to build Amber and GCSS (taken from original project)
yakumo.izuru
parents: 58
diff changeset
7 github.com/eknkc/amber v0.0.0-20171010120322-cdade1c07385
46
afb3280aaf28 Fix deps
prologic
parents: 44
diff changeset
8 github.com/russross/blackfriday/v2 v2.1.0
58
ef2697e4490e Add a more detailed usage note, and use logrus
yakumo.izuru
parents: 55
diff changeset
9 github.com/sirupsen/logrus v1.9.0
59
ed3aa9aaad0a Add functions to build Amber and GCSS (taken from original project)
yakumo.izuru
parents: 58
diff changeset
10 github.com/yosssi/gcss v0.1.0
46
afb3280aaf28 Fix deps
prologic
parents: 44
diff changeset
11 gopkg.in/yaml.v2 v2.4.0
43
9c8d908163a9 add go.mod and go.sum
sergii.zaitsev
parents:
diff changeset
12 )
58
ef2697e4490e Add a more detailed usage note, and use logrus
yakumo.izuru
parents: 55
diff changeset
13
65
6d985efa0f7a Add support for bfchroma syntax highlighting
yakumo.izuru
parents: 59
diff changeset
14 require (
66
787b5ee0289d Use vendored modules
yakumo.izuru
parents: 65
diff changeset
15 github.com/alecthomas/chroma/v2 v2.3.0 // indirect
65
6d985efa0f7a Add support for bfchroma syntax highlighting
yakumo.izuru
parents: 59
diff changeset
16 github.com/dlclark/regexp2 v1.4.0 // indirect
6d985efa0f7a Add support for bfchroma syntax highlighting
yakumo.izuru
parents: 59
diff changeset
17 golang.org/x/sys v0.0.0-20220715151400-c0bba94af5f8 // indirect
6d985efa0f7a Add support for bfchroma syntax highlighting
yakumo.izuru
parents: 59
diff changeset
18 )