2021-03-19 19:11:59 +00:00
|
|
|
module hilbish
|
|
|
|
|
2024-07-20 13:31:57 +00:00
|
|
|
go 1.21
|
|
|
|
|
|
|
|
toolchain go1.22.2
|
2021-03-19 23:03:53 +00:00
|
|
|
|
2021-03-20 04:01:24 +00:00
|
|
|
require (
|
2024-04-28 01:03:54 +00:00
|
|
|
github.com/arnodel/golua v0.0.0-20230215163904-e0b5347eaaa1
|
2023-12-26 03:08:29 +00:00
|
|
|
github.com/atsushinee/go-markdown-generator v0.0.0-20191121114853-83f9e1f68504
|
2024-04-28 01:03:54 +00:00
|
|
|
github.com/blackfireio/osinfo v1.0.5
|
|
|
|
github.com/maxlandon/readline v1.0.14
|
2021-05-01 05:07:55 +00:00
|
|
|
github.com/pborman/getopt v1.1.0
|
2024-04-28 01:03:54 +00:00
|
|
|
github.com/sahilm/fuzzy v0.1.1
|
2024-07-20 13:31:57 +00:00
|
|
|
golang.org/x/sys v0.22.0
|
|
|
|
golang.org/x/term v0.22.0
|
2024-04-28 01:03:54 +00:00
|
|
|
mvdan.cc/sh/v3 v3.8.0
|
2021-03-20 04:01:24 +00:00
|
|
|
)
|
2021-10-22 01:52:40 +00:00
|
|
|
|
2022-03-29 19:28:39 +00:00
|
|
|
require (
|
|
|
|
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d // indirect
|
2022-04-04 10:40:02 +00:00
|
|
|
github.com/arnodel/strftime v0.1.6 // indirect
|
2024-04-28 01:03:54 +00:00
|
|
|
github.com/evilsocket/islazy v1.11.0 // indirect
|
2023-11-12 00:39:31 +00:00
|
|
|
github.com/kylelemons/godebug v1.1.0 // indirect
|
2024-07-20 13:31:57 +00:00
|
|
|
github.com/muesli/cancelreader v0.2.2 // indirect
|
2022-03-29 19:28:39 +00:00
|
|
|
github.com/olekukonko/ts v0.0.0-20171002115256-78ecb04241c0 // indirect
|
2024-04-28 01:03:54 +00:00
|
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
|
|
golang.org/x/sync v0.7.0 // indirect
|
|
|
|
golang.org/x/text v0.14.0 // indirect
|
2022-03-29 19:28:39 +00:00
|
|
|
)
|
|
|
|
|
2024-07-20 13:31:57 +00:00
|
|
|
replace mvdan.cc/sh/v3 => github.com/Rosettea/sh/v3 v3.4.0-0.dev.0.20240720131751-805c301321fd
|
2022-01-01 23:21:34 +00:00
|
|
|
|
2022-03-13 17:48:49 +00:00
|
|
|
replace github.com/maxlandon/readline => ./readline
|
2022-02-26 00:42:50 +00:00
|
|
|
|
|
|
|
replace layeh.com/gopher-luar => github.com/layeh/gopher-luar v1.0.10
|
2022-04-04 10:40:02 +00:00
|
|
|
|
2024-04-28 01:03:54 +00:00
|
|
|
replace github.com/arnodel/golua => github.com/Rosettea/golua v0.0.0-20240427174124-d239074c1749
|