go.mod (view raw)
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 | module alin.ovh/homestead go 1.25.0 require ( alin.ovh/gomponents v1.8.0 alin.ovh/htmlformat v0.0.0-20251010213008-91ad1b658961 alin.ovh/x v1.2.0 github.com/BurntSushi/toml v1.5.0 github.com/Southclaws/fault v0.8.2 github.com/adrg/frontmatter v0.2.0 github.com/andybalholm/brotli v1.2.0 github.com/ardanlabs/conf/v3 v3.9.0 github.com/benpate/digit v0.13.7 github.com/coreos/go-oidc/v3 v3.17.0 github.com/deckarep/golang-set/v2 v2.8.0 github.com/fsnotify/fsnotify v1.9.0 github.com/go-git/go-git/v5 v5.16.3 github.com/google/renameio/v2 v2.0.0 github.com/kevinpollet/nego v0.0.0-20211010160919-a65cd48cee43 github.com/klauspost/compress v1.18.0 github.com/osdevisnot/sorvor v0.4.4 github.com/redis/go-redis/v9 v9.14.0 github.com/snabb/sitemap v1.0.4 github.com/stefanfritsch/goldmark-fences v1.0.0 github.com/yuin/goldmark v1.7.13 go.hacdias.com/indielib v0.4.3 go.uber.org/zap v1.27.0 golang.org/x/oauth2 v0.28.0 vimagination.zapto.org/ics v1.0.0 ) require ( dario.cat/mergo v1.0.2 // indirect github.com/Code-Hex/dd v1.1.0 // indirect github.com/Microsoft/go-winio v0.6.2 // indirect github.com/ProtonMail/go-crypto v1.3.0 // indirect github.com/aymerick/douceur v0.2.0 // indirect github.com/benpate/derp v0.34.0 // indirect github.com/benpate/domain v0.2.9 // indirect github.com/benpate/exp v0.8.6 // indirect github.com/benpate/remote v0.17.6 // indirect github.com/benpate/rosetta v0.25.19 // indirect github.com/benpate/turbine v0.4.0 // indirect github.com/cespare/xxhash/v2 v2.3.0 // indirect github.com/cloudflare/circl v1.6.1 // indirect github.com/cyphar/filepath-securejoin v0.5.0 // indirect github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect github.com/dgryski/go-rendezvous v0.0.0-20200823014737-9f7001d12a5f // indirect github.com/emirpasic/gods v1.18.1 // indirect github.com/go-git/gcfg v1.5.1-0.20230307220236-3a3c6141e376 // indirect github.com/go-git/go-billy/v5 v5.6.2 // indirect github.com/go-jose/go-jose/v4 v4.1.3 // indirect github.com/golang/groupcache v0.0.0-20241129210726-2c02b8208cf8 // indirect github.com/gorilla/css v1.0.1 // indirect github.com/jbenet/go-context v0.0.0-20150711004518-d14ea06fba99 // indirect github.com/kevinburke/ssh_config v1.4.0 // indirect github.com/klauspost/cpuid/v2 v2.3.0 // indirect github.com/mattn/go-colorable v0.1.14 // indirect github.com/mattn/go-isatty v0.0.20 // indirect github.com/microcosm-cc/bluemonday v1.0.27 // indirect github.com/onsi/gomega v1.34.2 // indirect github.com/pjbgf/sha1cd v0.5.0 // indirect github.com/pkg/errors v0.9.1 // indirect github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect github.com/rs/zerolog v1.34.0 // indirect github.com/sergi/go-diff v1.4.0 // indirect github.com/skeema/knownhosts v1.3.2 // indirect github.com/snabb/diagio v1.0.4 // indirect github.com/sykesm/zap-logfmt v0.0.4 // indirect github.com/thessem/zap-prettyconsole v0.5.2 // indirect github.com/xanzy/ssh-agent v0.3.3 // indirect go.uber.org/multierr v1.11.0 // indirect golang.org/x/crypto v0.42.0 // indirect golang.org/x/net v0.45.0 // indirect golang.org/x/sys v0.37.0 // indirect gopkg.in/warnings.v0 v0.1.2 // indirect gopkg.in/yaml.v2 v2.4.0 // indirect moul.io/zapfilter v1.7.0 // indirect vimagination.zapto.org/parser v1.2.3 // indirect willnorris.com/go/microformats v1.2.1-0.20240301064101-b5d1b9d2120e // indirect willnorris.com/go/webmention v0.0.0-20220108183051-4a23794272f0 // indirect ) |