mod: Merge duplicated module imports
There are no commits yet
Push commits to the source branch or add previously merged commits to review them.
Created by: blanet
I found some module duplications which may be imported earlier without
detailed comparison with go.mod
. Which makes the project kind of
messy. Specifically,
github.com/cespare/xxhash/2
in go code but its elder version
in related tests.github.com/peterbourgon/ff/v3
and its elder version are used to
construct cmdline tools.This commit merges the two duplicated imports above and refactors some necessary code.
CI
Push commits to the source branch or add previously merged commits to review them.