forked from casbin/ent-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(go.mod): update go.mod with new dependencies
- Loading branch information
Showing
2 changed files
with
45 additions
and
91 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,32 @@ | ||
module github.com/casbin/ent-adapter | ||
|
||
go 1.22 | ||
|
||
toolchain go1.22.2 | ||
go 1.22.5 | ||
|
||
require ( | ||
entgo.io/ent v0.13.1 | ||
github.com/casbin/casbin/v2 v2.88.0 | ||
github.com/go-sql-driver/mysql v1.8.1 | ||
github.com/jackc/pgx/v5 v5.5.5 | ||
github.com/lib/pq v1.10.9 | ||
//github.com/mattn/go-sqlite3 v1.14.6 | ||
entgo.io/ent v0.14.0 | ||
github.com/casbin/casbin/v2 v2.98.0 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/stretchr/testify v1.8.2 | ||
github.com/stretchr/testify v1.9.0 | ||
) | ||
|
||
require ( | ||
ariga.io/atlas v0.22.0 // indirect | ||
filippo.io/edwards25519 v1.1.0 // indirect | ||
ariga.io/atlas v0.25.0 // indirect | ||
github.com/agext/levenshtein v1.2.3 // indirect | ||
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect | ||
github.com/casbin/govaluate v1.1.1 // indirect | ||
github.com/casbin/govaluate v1.2.0 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-openapi/inflect v0.21.0 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/hashicorp/hcl/v2 v2.20.1 // indirect | ||
github.com/jackc/pgpassfile v1.0.0 // indirect | ||
github.com/jackc/pgservicefile v0.0.0-20231201235250-de7065d80cb9 // indirect | ||
github.com/jackc/puddle/v2 v2.2.1 // indirect | ||
github.com/hashicorp/hcl/v2 v2.21.0 // indirect | ||
github.com/kr/pretty v0.3.1 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/rogpeppe/go-internal v1.6.1 // indirect | ||
github.com/zclconf/go-cty v1.14.4 // indirect | ||
golang.org/x/crypto v0.22.0 // indirect | ||
golang.org/x/mod v0.17.0 // indirect | ||
golang.org/x/sync v0.7.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
golang.org/x/tools v0.20.0 // indirect | ||
github.com/zclconf/go-cty v1.15.0 // indirect | ||
golang.org/x/mod v0.20.0 // indirect | ||
golang.org/x/sync v0.8.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
golang.org/x/tools v0.24.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters