File: go.mod

package info (click to toggle)
golang-github-poy-onpar 0.3.3-1.1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 456 kB
  • sloc: makefile: 3
file content (23 lines) | stat: -rw-r--r-- 623 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
module github.com/poy/onpar

go 1.21.4

require (
	git.sr.ht/~nelsam/hel v0.6.6
	github.com/fatih/color v1.16.0
)

require (
	git.sr.ht/~nelsam/correct v0.0.5 // indirect
	github.com/mattn/go-colorable v0.1.13 // indirect
	github.com/mattn/go-isatty v0.0.20 // indirect
	golang.org/x/exp v0.0.0-20240205201215-2c58cdc269a3 // indirect
	golang.org/x/sys v0.17.0 // indirect
)

// go modules make anything above v0 extremely hard to support, so we're
// scrapping any versions above v0. From now on, hel will follow v0.x.x
// versioning.
//
// This retract directive retracts all releases beyond v0.
retract [v1.0.0, v1.1.3]