taldir

Directory service to resolve wallet mailboxes by messenger addresses
Log | Files | Refs | Submodules | README | LICENSE

go.mod (820B)


      1 module taler.net/taldir
      2 
      3 go 1.25.0
      4 
      5 require (
      6 	github.com/gertd/go-pluralize v0.2.1
      7 	github.com/gorilla/mux v1.8.1
      8 	github.com/kataras/i18n v0.0.8
      9 	github.com/lib/pq v1.11.2
     10 	github.com/mattn/go-sqlite3 v1.14.34
     11 	github.com/schanzen/taler-go v1.2.1
     12 	github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
     13 	gopkg.in/ini.v1 v1.67.1
     14 	rsc.io/getopt v0.0.0-20170811000552-20be20937449
     15 )
     16 
     17 require (
     18 	github.com/BurntSushi/toml v1.6.0 // indirect
     19 	github.com/davecgh/go-spew v1.1.1 // indirect
     20 	github.com/kr/pretty v0.3.0 // indirect
     21 	github.com/pmezard/go-difflib v1.0.0 // indirect
     22 	github.com/rogpeppe/go-internal v1.12.0 // indirect
     23 	golang.org/x/net v0.50.0 // indirect
     24 	golang.org/x/text v0.34.0 // indirect
     25 	gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
     26 	gopkg.in/yaml.v3 v3.0.1 // indirect
     27 )