Updated module path

This commit is contained in:
Eduard Urbach 2025-02-25 16:40:42 +01:00
parent e83bcfe9d0
commit 1a96c35f76
Signed by: akyoto
GPG Key ID: C874F672B1AF20C0
4 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@ import (
"bytes" "bytes"
"testing" "testing"
"git.akyoto.dev/go/hash" "git.urbach.dev/go/hash"
) )
func BenchmarkSize(b *testing.B) { func BenchmarkSize(b *testing.B) {

View File

@ -5,7 +5,7 @@ This is a non-cryptographic hash (aka checksum) to verify data integrity.
## Installation ## Installation
```shell ```shell
go get git.akyoto.dev/go/hash go get git.urbach.dev/go/hash
``` ```
## Usage ## Usage
@ -46,7 +46,7 @@ BenchmarkSize/4096-12 1947091 617.6 ns/op
## License ## License
Please see the [license documentation](https://akyoto.dev/license). Please see the [license documentation](https://urbach.dev/license).
## Copyright ## Copyright

4
go.mod
View File

@ -1,3 +1,3 @@
module git.akyoto.dev/go/hash module git.urbach.dev/go/hash
go 1.22 go 1.24

View File

@ -5,7 +5,7 @@ import (
"math" "math"
"testing" "testing"
"git.akyoto.dev/go/hash" "git.urbach.dev/go/hash"
) )
// Hashes generated in tests will be saved to check for collisions. // Hashes generated in tests will be saved to check for collisions.