dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

go.mod (3101B)


      1 module dkforest
      2 
      3 go 1.21
      4 
      5 require (
      6 	filippo.io/age v1.0.0
      7 	github.com/ProtonMail/go-crypto v0.0.0-20230127150802-22e9f3c8043c
      8 	github.com/PuerkitoBio/goquery v1.5.1
      9 	github.com/alecthomas/chroma v0.9.2
     10 	github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef
     11 	github.com/boombuler/barcode v1.0.1-0.20190219062509-6c824513bacc
     12 	github.com/chehsunliu/poker v0.1.0
     13 	github.com/dustin/go-humanize v1.0.0
     14 	github.com/fogleman/gg v1.3.0
     15 	github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0
     16 	github.com/google/uuid v1.0.0
     17 	github.com/hashicorp/go-version v1.2.1
     18 	github.com/labstack/echo v3.3.10+incompatible
     19 	github.com/labstack/gommon v0.3.1-0.20210908060213-57d86603b883
     20 	github.com/mattn/go-colorable v0.1.6
     21 	github.com/mattn/go-sqlite3 v1.14.17
     22 	github.com/microcosm-cc/bluemonday v1.0.23
     23 	github.com/monero-ecosystem/go-monero-rpc-client v0.0.0-20211022153113-045f57510fdd
     24 	github.com/nicksnyder/go-i18n/v2 v2.0.0-20190611170653-0c6ce6ac1e8c
     25 	github.com/notnil/chess v1.8.0
     26 	github.com/pkg/errors v0.9.1
     27 	github.com/pquerna/otp v1.3.0
     28 	github.com/rubenv/sql-migrate v0.0.0-20210215143335-f84234893558
     29 	github.com/sirupsen/logrus v1.8.0
     30 	github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966
     31 	github.com/stretchr/testify v1.7.0
     32 	github.com/teris-io/shortid v0.0.0-20220617161101-71ec9f2aa569
     33 	github.com/ulule/limiter v2.2.2+incompatible
     34 	github.com/urfave/cli/v2 v2.3.0
     35 	github.com/valyala/quicktemplate v1.7.0
     36 	golang.org/x/crypto v0.0.0-20210921155107-089bfa567519
     37 	golang.org/x/image v0.0.0-20211028202545-6944b10bf410
     38 	golang.org/x/net v0.8.0
     39 	golang.org/x/text v0.8.0
     40 	gopkg.in/telegram-bot-api.v4 v4.6.4
     41 	gopkg.in/yaml.v1 v1.0.0-20140924161607-9f9df34309c0
     42 	gorm.io/driver/sqlite v1.5.4
     43 	gorm.io/gorm v1.25.6-0.20231228115336-87decced23be
     44 )
     45 
     46 require (
     47 	github.com/alecthomas/repr v0.0.0-20200325044227-4184120f674c // indirect
     48 	github.com/andybalholm/cascadia v1.1.0 // indirect
     49 	github.com/aymerick/douceur v0.2.0 // indirect
     50 	github.com/cloudflare/circl v1.1.0 // indirect
     51 	github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d // indirect
     52 	github.com/danwakefield/fnmatch v0.0.0-20160403171240-cbb64ac3d964 // indirect
     53 	github.com/davecgh/go-spew v1.1.1 // indirect
     54 	github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
     55 	github.com/dlclark/regexp2 v1.4.0 // indirect
     56 	github.com/go-telegram-bot-api/telegram-bot-api v4.6.4+incompatible // indirect
     57 	github.com/gorilla/css v1.0.0 // indirect
     58 	github.com/gorilla/rpc v1.2.0 // indirect
     59 	github.com/jinzhu/inflection v1.0.0 // indirect
     60 	github.com/jinzhu/now v1.1.5 // indirect
     61 	github.com/magefile/mage v1.10.0 // indirect
     62 	github.com/mattn/go-isatty v0.0.14 // indirect
     63 	github.com/pmezard/go-difflib v1.0.0 // indirect
     64 	github.com/russross/blackfriday/v2 v2.1.0 // indirect
     65 	github.com/technoweenie/multipartstreamer v1.0.1 // indirect
     66 	github.com/valyala/bytebufferpool v1.0.0 // indirect
     67 	github.com/valyala/fasttemplate v1.1.0 // indirect
     68 	golang.org/x/sys v0.6.0 // indirect
     69 	gopkg.in/gorp.v1 v1.7.2 // indirect
     70 	gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c // indirect
     71 )