/ go.mod
go.mod
1 // SPDX-FileCopyrightText: Amolith <amolith@secluded.site> 2 // 3 // SPDX-License-Identifier: CC0-1.0 4 5 module adresilo-server 6 7 go 1.23.1 8 9 require ( 10 github.com/BurntSushi/toml v1.4.0 11 github.com/jackc/pgx/v5 v5.7.1 12 ) 13 14 require ( 15 github.com/jackc/pgpassfile v1.0.0 // indirect 16 github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect 17 github.com/jackc/puddle/v2 v2.2.2 // indirect 18 github.com/matryer/is v1.4.1 // indirect 19 github.com/pkg/errors v0.9.1 // indirect 20 golang.org/x/crypto v0.29.0 // indirect 21 golang.org/x/sync v0.9.0 // indirect 22 golang.org/x/text v0.20.0 // indirect 23 ) 24 25 require ( 26 github.com/google/open-location-code/go v0.0.0-20240712113549-dfcebc905b81 27 github.com/machinebox/graphql v0.2.2 28 github.com/spf13/pflag v1.0.5 29 )