go.mod (1355B)
1 module hivedav 2 3 go 1.24.5 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.30 10 github.com/pquerna/termchalk v0.0.0-20140809212720-8cc5932700ba 11 github.com/spf13/viper v1.20.1 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.8.0 // indirect 18 github.com/go-viper/mapstructure/v2 v2.2.1 // indirect 19 github.com/kr/text v0.2.0 // indirect 20 github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect 21 github.com/pelletier/go-toml/v2 v2.2.3 // indirect 22 github.com/sagikazarmark/locafero v0.7.0 // indirect 23 github.com/sourcegraph/conc v0.3.0 // indirect 24 github.com/spf13/afero v1.12.0 // indirect 25 github.com/spf13/cast v1.7.1 // indirect 26 github.com/spf13/pflag v1.0.6 // indirect 27 github.com/subosito/gotenv v1.6.0 // indirect 28 go.uber.org/multierr v1.11.0 // indirect 29 golang.org/x/sys v0.29.0 // indirect 30 golang.org/x/text v0.21.0 // indirect 31 gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect 32 gopkg.in/yaml.v3 v3.0.1 // indirect 33 ) 34 35 // Latest stable version is v1.14 or later, not v2 36 exclude github.com/mattn/go-sqlite3 v2.0.3+incompatible