-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
54 lines (49 loc) · 1.89 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
module github.com/pacificbrian/go-bookkeeper
go 1.21
toolchain go1.22.0
require (
github.com/aclindsa/ofxgo v0.1.3
github.com/alexedwards/scs/v2 v2.7.0
github.com/davecgh/go-spew v1.1.1
github.com/ilyakaznacheev/cleanenv v1.5.0
github.com/labstack/echo/v4 v4.11.4
github.com/mayowa/echo-pongo2 v1.1.4
github.com/pacificbrian/edgar v0.2.1
github.com/pacificbrian/qif v1.1.2
github.com/piquette/finance-go v1.1.1-0.20230807033903-430a57233430
github.com/rubenv/sql-migrate v1.6.1
github.com/shopspring/decimal v1.3.1
github.com/spazzymoto/echo-scs-session v1.0.0
github.com/spf13/pflag v1.0.5
golang.org/x/crypto v0.18.0
golang.org/x/text v0.14.0
gorm.io/driver/mysql v1.5.2
gorm.io/driver/sqlite v1.5.4
gorm.io/gorm v1.25.5
gotest.tools/v3 v3.5.1
)
replace github.com/mayowa/echo-pongo2 => github.com/pacificbrian/echo-pongo2 v1.1.5
require (
github.com/BurntSushi/toml v1.3.2 // indirect
github.com/aclindsa/xml v0.0.0-20201125035057-bbd5c9ec99ac // indirect
github.com/flosch/pongo2/v4 v4.0.2 // indirect
github.com/go-gorp/gorp/v3 v3.1.0 // indirect
github.com/go-sql-driver/mysql v1.7.1 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/joho/godotenv v1.5.1 // indirect
github.com/labstack/gommon v0.4.2 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-sqlite3 v1.14.19 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasttemplate v1.2.2 // indirect
golang.org/x/net v0.20.0 // indirect
golang.org/x/sys v0.16.0 // indirect
golang.org/x/time v0.5.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3 // indirect
)