-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
24 lines (20 loc) · 675 Bytes
/
go.mod
File metadata and controls
24 lines (20 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
module github.com/dylanmazurek/supernote-sync
go 1.23
require github.com/rs/zerolog v1.33.0
require (
github.com/andybalholm/cascadia v1.3.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
golang.org/x/text v0.20.0 // indirect
)
require (
github.com/PuerkitoBio/goquery v1.10.0
github.com/aws/smithy-go v1.22.1
github.com/bzick/tokenizer v1.4.6
github.com/golang-jwt/jwt/v5 v5.2.1
github.com/markkurossi/tabulate v0.0.0-20230223130100-d4965869b123
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/spkg/bom v1.0.1
golang.org/x/net v0.31.0 // indirect
golang.org/x/sys v0.27.0 // indirect
)