go.mod (1608B)
1 module hivedav 2 3 go 1.21.0 4 5 require ( 6 github.com/emersion/go-ical v0.0.0-20240127095438-fc1c9d8fb2b6 7 github.com/jordan-wright/email v4.0.1-0.20210109023952-943e75fe5223+incompatible 8 github.com/julienschmidt/httprouter v1.3.0 9 github.com/mattn/go-sqlite3 v1.14.22 10 github.com/pquerna/termchalk v0.0.0-20140809212720-8cc5932700ba 11 github.com/spf13/viper v1.19.0 12 github.com/teambition/rrule-go v1.8.2 13 gopkg.in/robfig/cron.v2 v2.0.0-20150107220207-be2e0b0deed5 14 ) 15 16 require ( 17 github.com/fsnotify/fsnotify v1.7.0 // indirect 18 github.com/hashicorp/hcl v1.0.0 // indirect 19 github.com/kr/text v0.2.0 // indirect 20 github.com/magiconair/properties v1.8.7 // indirect 21 github.com/mitchellh/mapstructure v1.5.0 // indirect 22 github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect 23 github.com/pelletier/go-toml/v2 v2.2.2 // indirect 24 github.com/sagikazarmark/locafero v0.4.0 // indirect 25 github.com/sagikazarmark/slog-shim v0.1.0 // indirect 26 github.com/sourcegraph/conc v0.3.0 // indirect 27 github.com/spf13/afero v1.11.0 // indirect 28 github.com/spf13/cast v1.6.0 // indirect 29 github.com/spf13/pflag v1.0.5 // indirect 30 github.com/subosito/gotenv v1.6.0 // indirect 31 go.uber.org/multierr v1.11.0 // indirect 32 golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect 33 golang.org/x/sys v0.20.0 // indirect 34 golang.org/x/text v0.15.0 // indirect 35 gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect 36 gopkg.in/ini.v1 v1.67.0 // indirect 37 gopkg.in/yaml.v3 v3.0.1 // indirect 38 ) 39 40 // Latest stable version is v1.14 or later, not v2 41 exclude github.com/mattn/go-sqlite3 v2.0.3+incompatible