-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
26 lines (22 loc) · 950 Bytes
/
go.mod
File metadata and controls
26 lines (22 loc) · 950 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
25
26
module github.com/materials-commons/gomcapi
go 1.22.1
require (
github.com/go-resty/resty/v2 v2.14.0
github.com/materials-commons/config v0.0.0-20180218183642-ed5747ab2e08
github.com/materials-commons/hydra v1.0.1
)
//replace "github.com/materials-commons/hydra" => "/home/gtarcea/workspace/src/github.com/materials-commons/hydra"
require (
github.com/BurntSushi/toml v1.4.0 // indirect
github.com/dmotylev/goproperties v0.0.0-20140630191356-7cbffbaada47 // indirect
github.com/gosimple/slug v1.14.0 // indirect
github.com/gosimple/unidecode v1.0.1 // indirect
github.com/jinzhu/inflection v1.0.0 // indirect
github.com/jinzhu/now v1.1.5 // indirect
github.com/spf13/cast v1.7.0 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/text v0.16.0 // indirect
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0 // indirect
gorm.io/gorm v1.25.11 // indirect
)