summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow <paul@buetow.org>2026-03-03 12:53:58 +0200
committerPaul Buetow <paul@buetow.org>2026-03-03 12:53:58 +0200
commit92e87642f2936f0da63d32113f75633b38be24f6 (patch)
tree9dac1a5693d25a2c6cc03c3dbc07e75e473e31a0
parent2227ba65ab91efa34a1522cf5c8dc0ff9a53e544 (diff)
Require Go 1.26 for builds
-rw-r--r--README.md4
-rw-r--r--go.mod2
2 files changed, 5 insertions, 1 deletions
diff --git a/README.md b/README.md
index 4679401..386f874 100644
--- a/README.md
+++ b/README.md
@@ -10,6 +10,10 @@ Maybe this is a spiritual successor of one of my previous projects, I/O Riot htt
This works only on Linux!
+## Requirements
+
+- Go 1.26 or newer (ior relies on cgo via libbpfgo).
+
## Timing Semantics
Each reported event pair has two timing counters:
diff --git a/go.mod b/go.mod
index 77333e6..687a48d 100644
--- a/go.mod
+++ b/go.mod
@@ -1,6 +1,6 @@
module ior
-go 1.24.2
+go 1.26.0
require (
github.com/DataDog/zstd v1.5.7