From af732567fda458dcd445cdfe3f480eba6d5f15ba Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Thu, 8 Jan 2026 15:46:12 -0500 Subject: [PATCH] chore(config): add Repo.toml and update go.mod for config changes --- .github/Repo.toml | 7 +++++++ go.mod | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .github/Repo.toml diff --git a/.github/Repo.toml b/.github/Repo.toml new file mode 100644 index 0000000..e7a30c5 --- /dev/null +++ b/.github/Repo.toml @@ -0,0 +1,7 @@ +[scopes] +ci = [".github/workflows"] +config = [".github", "codecov.yml", "go.mod", "go.sum", "Makefile", "version.json"] +docs = ["README.md", "LICENSE"] +tests = ["*_test.go", "fuzz-data"] +research = ["_rsrch"] +core = ["cid.go", "builder.go", "set.go", "varint.go", "cid_fuzz.go", "deprecated.go"] diff --git a/go.mod b/go.mod index fd53710..a43db6e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/ipfs/go-cid +module code.sonr.org/go/cid require ( github.com/multiformats/go-multibase v0.2.0