* Use zerolog + intercept SIGINT * Use RFC3339 for time format and add -json flag to disable pretty printing * Added new flags to README and fixed issue when command exit was not successful
17 lines
368 B
Modula-2
17 lines
368 B
Modula-2
module pcap-broker
|
|
|
|
go 1.20
|
|
|
|
require (
|
|
github.com/google/gopacket v1.1.19
|
|
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510
|
|
)
|
|
|
|
require (
|
|
github.com/mattn/go-colorable v0.1.13 // indirect
|
|
github.com/mattn/go-isatty v0.0.20 // indirect
|
|
github.com/rs/zerolog v1.31.0 // indirect
|
|
golang.org/x/net v0.18.0 // indirect
|
|
golang.org/x/sys v0.14.0 // indirect
|
|
)
|