diff --git a/Benchmarks_test.go b/Benchmarks_test.go index 742a524..e650dbd 100644 --- a/Benchmarks_test.go +++ b/Benchmarks_test.go @@ -4,7 +4,7 @@ import ( "bytes" "testing" - "git.akyoto.dev/go/hash" + "git.urbach.dev/go/hash" ) func BenchmarkSize(b *testing.B) { diff --git a/README.md b/README.md index a153cc8..a6ccb39 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This is a non-cryptographic hash (aka checksum) to verify data integrity. ## Installation ```shell -go get git.akyoto.dev/go/hash +go get git.urbach.dev/go/hash ``` ## Usage @@ -46,7 +46,7 @@ BenchmarkSize/4096-12 1947091 617.6 ns/op ## License -Please see the [license documentation](https://akyoto.dev/license). +Please see the [license documentation](https://urbach.dev/license). ## Copyright diff --git a/go.mod b/go.mod index b3a93a7..7a5dff6 100644 --- a/go.mod +++ b/go.mod @@ -1,3 +1,3 @@ -module git.akyoto.dev/go/hash +module git.urbach.dev/go/hash -go 1.22 +go 1.24 diff --git a/hash_test.go b/hash_test.go index 9a92d57..8e9af6e 100644 --- a/hash_test.go +++ b/hash_test.go @@ -5,7 +5,7 @@ import ( "math" "testing" - "git.akyoto.dev/go/hash" + "git.urbach.dev/go/hash" ) // Hashes generated in tests will be saved to check for collisions.