-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dons substitute original author year with misplaced year (fix #256)
- Loading branch information
Showing
7 changed files
with
102 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,51 +1,56 @@ | ||
module github.com/gnames/gnparser | ||
|
||
go 1.21 | ||
go 1.22.1 | ||
|
||
require ( | ||
github.com/dustin/go-humanize v1.0.1 | ||
github.com/gnames/gnfmt v0.4.3 | ||
github.com/gnames/gnlib v0.30.0 | ||
github.com/gnames/gnsys v0.2.3 | ||
github.com/gnames/gnlib v0.33.0 | ||
github.com/gnames/gnsys v0.3.2 | ||
github.com/gnames/gnuuid v0.1.2 | ||
github.com/gnames/organizer v0.1.1 | ||
github.com/gnames/tribool v0.1.1 | ||
github.com/labstack/echo/v4 v4.11.4 | ||
github.com/labstack/gommon v0.4.2 | ||
github.com/pointlander/peg v1.0.1 | ||
github.com/rendon/testcli v1.0.0 | ||
github.com/rs/zerolog v1.31.0 | ||
github.com/rs/zerolog v1.32.0 | ||
github.com/sfgrp/lognsq v0.1.1 | ||
github.com/spf13/cobra v1.8.0 | ||
github.com/stretchr/testify v1.8.4 | ||
golang.org/x/net v0.20.0 | ||
golang.org/x/perf v0.0.0-20240108191414-4ad5199aa6b5 | ||
golang.org/x/tools v0.16.1 | ||
github.com/stretchr/testify v1.9.0 | ||
golang.org/x/net v0.22.0 | ||
golang.org/x/perf v0.0.0-20240305160248-5eefbfdba9dd | ||
golang.org/x/text v0.14.0 | ||
golang.org/x/tools v0.19.0 | ||
) | ||
|
||
require ( | ||
github.com/VividCortex/ewma v1.2.0 // indirect | ||
github.com/aclements/go-moremath v0.0.0-20210112150236-f10218a38794 // indirect | ||
github.com/cheggaaa/pb/v3 v3.1.5 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/fatih/color v1.16.0 // indirect | ||
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect | ||
github.com/golang/snappy v0.0.3 // indirect | ||
github.com/google/uuid v1.3.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mattn/go-runewidth v0.0.15 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421 // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/nsqio/go-nsq v1.1.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/pointlander/compress v1.1.1-0.20190518213731-ff44bd196cc3 // indirect | ||
github.com/pointlander/jetset v1.0.1-0.20190518214125-eee7eff80bd4 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/valyala/bytebufferpool v1.0.0 // indirect | ||
github.com/valyala/fasttemplate v1.2.2 // indirect | ||
golang.org/x/crypto v0.18.0 // indirect | ||
golang.org/x/mod v0.14.0 // indirect | ||
golang.org/x/sys v0.16.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/crypto v0.21.0 // indirect | ||
golang.org/x/mod v0.16.0 // indirect | ||
golang.org/x/sys v0.18.0 // indirect | ||
golang.org/x/time v0.5.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.