The SIX reference implementation in Java that can be found at https://www.paymentstandards.ch/dam/downloads/qrcodegenerator.java uses the zxing library to generate their QR codes. zxing is also available as a Go version, which we now use. This means the QR codes can be compared visually to the reference.
16 lines
531 B
Modula-2
16 lines
531 B
Modula-2
module github.com/stapelberg/qrbill
|
|
|
|
go 1.14
|
|
|
|
require (
|
|
github.com/aaronarduino/goqrsvg v0.0.0-20170617203649-603647895681
|
|
github.com/ajstarks/svgo v0.0.0-20200320125537-f189e35d30ca
|
|
github.com/boombuler/barcode v1.0.0
|
|
github.com/davecgh/go-spew v1.1.1
|
|
github.com/makiuchi-d/gozxing v0.0.0-20200903113411-25f730ed83da
|
|
github.com/mattn/go-isatty v0.0.12
|
|
github.com/skip2/go-qrcode v0.0.0-20200617195104-da1b6568686e
|
|
golang.org/x/text v0.3.4 // indirect
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
)
|