File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5050 restore-keys : |
5151 ${{ runner.os }}-cargo-build-
5252
53- # Build in release mode
54- - name : Build in release mode
55- run : cargo build --release --all-features
56-
57- # Compile tests for all features without running them
58- - name : Compile tests (all features)
59- run : cargo test --all-features --no-run
60-
61- # Run tests
62- - name : Run tests
63- run : cargo test --release --all-features
64-
65- # Validate examples
6653 - name : Build all examples
6754 run : cargo build --release --all-features --examples
Original file line number Diff line number Diff line change @@ -62,6 +62,9 @@ pub mod rate_limiter;
6262/// Metrics/tracing plugin for integrating with systems like Prometheus or OpenTelemetry.
6363pub mod metrics;
6464
65+ /// Idempotency-Key based request de-duplication plugin.
66+ pub mod idempotency;
67+
6568/// Trait for implementing Tako framework plugins.
6669///
6770/// Plugins extend the framework's functionality by implementing this trait. They can
You can’t perform that action at this time.
0 commit comments