-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
36 lines (32 loc) · 1.22 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
module logbook-api
go 1.17
require (
github.com/jinzhu/configor v1.2.1
github.com/urfave/cli/v2 v2.3.0
)
require (
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/labstack/gommon v0.3.1 // indirect
github.com/mattn/go-colorable v0.1.11 // indirect
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/russross/blackfriday/v2 v2.1.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.1 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/net v0.0.0-20210913180222-943fd674d43e // indirect
golang.org/x/sys v0.0.0-20211103235746-7861aae1554b // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/time v0.0.0-20210220033141-f8bda1e9f3ba // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
require (
github.com/BurntSushi/toml v0.4.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect
github.com/deepmap/oapi-codegen v1.9.1
github.com/jedib0t/go-pretty/v6 v6.2.4
github.com/labstack/echo/v4 v4.6.3
github.com/patrickmn/go-cache v2.1.0+incompatible
github.com/umatare5/atmos-go v0.1.2
github.com/umatare5/logbook-api-router-impl v0.1.5
)