-
Notifications
You must be signed in to change notification settings - Fork 1
/
go.mod
26 lines (23 loc) · 879 Bytes
/
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
module github.com/abichinger/fastac
go 1.17
require (
github.com/abichinger/gorm-adapter v1.0.1
github.com/abichinger/govaluate v1.5.1-0.20220503123756-74b96f998566
github.com/casbin/casbin/v2 v2.44.3
github.com/go-ini/ini v1.66.4
github.com/sirupsen/logrus v1.8.1
github.com/stretchr/testify v1.7.1
github.com/vansante/go-event-emitter v1.0.2
gorm.io/driver/sqlite v1.3.2
gorm.io/gorm v1.23.5
)
require (
github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/mattn/go-sqlite3 v1.14.12 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
golang.org/x/sys v0.0.0-20200323222414-85ca7c5b95cd // indirect
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
)