39 lines
1.3 KiB
Modula-2
39 lines
1.3 KiB
Modula-2
module tg-mc
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/Tnze/go-mc v1.19.4
|
|
github.com/glebarez/sqlite v1.9.0
|
|
github.com/go-co-op/gocron v1.32.1
|
|
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1
|
|
github.com/ilyakaznacheev/cleanenv v1.5.0
|
|
github.com/joho/godotenv v1.5.1
|
|
github.com/samber/lo v1.38.1
|
|
github.com/sirupsen/logrus v1.9.3
|
|
gorm.io/gorm v1.25.4
|
|
)
|
|
|
|
require (
|
|
github.com/BurntSushi/toml v1.3.2 // indirect
|
|
github.com/dustin/go-humanize v1.0.1 // indirect
|
|
github.com/glebarez/go-sqlite v1.21.2 // indirect
|
|
github.com/google/uuid v1.3.1 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/jinzhu/now v1.1.5 // indirect
|
|
github.com/mattn/go-isatty v0.0.19 // indirect
|
|
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
|
|
github.com/robfig/cron/v3 v3.0.1 // indirect
|
|
go.uber.org/atomic v1.11.0 // indirect
|
|
golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63 // indirect
|
|
golang.org/x/sys v0.11.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
modernc.org/libc v1.24.1 // indirect
|
|
modernc.org/mathutil v1.6.0 // indirect
|
|
modernc.org/memory v1.7.1 // indirect
|
|
modernc.org/sqlite v1.25.0 // indirect
|
|
olympos.io/encoding/edn v0.0.0-20201019073823-d3554ca0b0a3 // indirect
|
|
)
|
|
|
|
replace github.com/Tnze/go-mc => /Users/vaala/Workdir/Code/go-mc
|