├── .githooks └── pre-push ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── assets ├── benchmark.png └── histogram.png ├── benchmark_test.go ├── collision_test.go ├── cuid2.go ├── cuid2_test.go ├── go.mod ├── go.sum └── scripts └── install-hooks.sh /.githooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/.githooks/pre-push -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/README.md -------------------------------------------------------------------------------- /assets/benchmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/assets/benchmark.png -------------------------------------------------------------------------------- /assets/histogram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/assets/histogram.png -------------------------------------------------------------------------------- /benchmark_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/benchmark_test.go -------------------------------------------------------------------------------- /collision_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/collision_test.go -------------------------------------------------------------------------------- /cuid2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/cuid2.go -------------------------------------------------------------------------------- /cuid2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/cuid2_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/go.sum -------------------------------------------------------------------------------- /scripts/install-hooks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nrednav/cuid2/HEAD/scripts/install-hooks.sh --------------------------------------------------------------------------------