mirror of
https://github.com/Dadido3/Scanyonero.git
synced 2025-06-06 01:10:00 +00:00
- Rename to Scanyonero - Add FTP server that ingests TIFF, PNG, JPEG or PDF files - Add web interface to check and modify ingested files - Rework how ocrmypdf is invoked Basics are working, but the program is not in a usable state.
32 lines
916 B
Modula-2
32 lines
916 B
Modula-2
module Scanyonero
|
|
|
|
go 1.23.0
|
|
|
|
toolchain go1.24.2
|
|
|
|
require (
|
|
github.com/chai2010/tiff v0.0.0-20211005095045-4ec2aa243943
|
|
github.com/fclairamb/ftpserverlib v0.25.0
|
|
github.com/gorilla/websocket v1.5.3
|
|
github.com/nfnt/resize v0.0.0-20180221191011-83c6a9932646
|
|
github.com/pdfcpu/pdfcpu v0.10.2
|
|
github.com/spf13/afero v1.14.0
|
|
neilpa.me/go-jfif v0.5.0
|
|
)
|
|
|
|
require (
|
|
github.com/fclairamb/go-log v0.5.0 // indirect
|
|
github.com/hhrutter/lzw v1.0.0 // indirect
|
|
github.com/hhrutter/pkcs7 v0.2.0 // indirect
|
|
github.com/hhrutter/tiff v1.0.2 // indirect
|
|
github.com/mattn/go-runewidth v0.0.16 // indirect
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
github.com/rivo/uniseg v0.4.7 // indirect
|
|
golang.org/x/crypto v0.37.0 // indirect
|
|
golang.org/x/image v0.26.0 // indirect
|
|
golang.org/x/sys v0.32.0 // indirect
|
|
golang.org/x/text v0.24.0 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
neilpa.me/go-x v0.2.0 // indirect
|
|
)
|