From 9e2d294d69a17a28c19578c5c293aed0246084e4 Mon Sep 17 00:00:00 2001 From: Elias Stepanik Date: Tue, 17 Jun 2025 22:12:29 +0200 Subject: [PATCH] Add AGENTS.md --- AGENTS.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 AGENTS.md diff --git a/AGENTS.md b/AGENTS.md new file mode 100644 index 0000000..010f212 --- /dev/null +++ b/AGENTS.md @@ -0,0 +1,10 @@ +# Run tests in release mode + +```bash +cargo test --release +``` + +* Compiles with optimizations (`--release`). +* Executes all test binaries from `target/release/deps`. +* Use for performance‑sensitive benchmarks. +* Build takes longer; cache artifacts in CI.