diff options
| author | Philipp Tanlak <philipp.tanlak@gmail.com> | 2023-11-18 22:49:26 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-18 22:49:26 +0100 |
| commit | 6aa52bdbe2cefdbc9219abfb4399afa0d492913d (patch) | |
| tree | 02c743b7d9393dbf024e14adada73c6594bdd34a /go.mod | |
| parent | 94da9293f63e46712b0a890e1e0eab4153fdb3f9 (diff) | |
Support passing config options as CLI arguments (#15)
Diffstat (limited to 'go.mod')
| -rw-r--r-- | go.mod | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -13,6 +13,8 @@ require ( github.com/mattn/go-sqlite3 v1.14.17 github.com/nlnwa/whatwg-url v0.4.0 github.com/stretchr/testify v1.8.4 + github.com/tidwall/sjson v1.2.5 + golang.org/x/sync v0.5.0 ) require ( @@ -25,9 +27,11 @@ require ( github.com/kr/pretty v0.3.1 // indirect github.com/pmezard/go-difflib v1.0.0 // indirect github.com/rogpeppe/go-internal v1.10.0 // indirect + github.com/tidwall/gjson v1.17.0 // indirect + github.com/tidwall/match v1.1.1 // indirect + github.com/tidwall/pretty v1.2.1 // indirect golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect golang.org/x/net v0.10.0 // indirect - golang.org/x/sync v0.5.0 // indirect golang.org/x/sys v0.8.0 // indirect golang.org/x/term v0.8.0 // indirect golang.org/x/text v0.9.0 // indirect |