Skip to content

Commit 2e6047a

Browse files
docs: drop the unmeasured CRS claim from the crate metadata and --help (#11)
#9 corrected the README but left the same claim in the two places that reach people without opening it: the crate description, and the clap `about` string printed by `--help`. Both now say the agent loads the stock OWASP CRS rather than claiming full compatibility with it. Conformance is measured in zentinel-modsec and reported in the README. Claude-Session: https://claude.ai/code/session_01VkHAQ33U78fmpk6r161DKc
1 parent 9153d94 commit 2e6047a

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ license = "Apache-2.0"
88
repository = "https://github.com/zentinelproxy/zentinel-agent-zentinelsec"
99
homepage = "https://zentinelproxy.io"
1010
documentation = "https://zentinelproxy.io/docs/agents/zentinelsec"
11-
description = "Pure Rust ModSecurity-compatible WAF agent for Zentinel - Full OWASP CRS support without C dependencies"
11+
description = "Pure Rust ModSecurity-compatible WAF agent for Zentinel - loads the stock OWASP CRS without C dependencies"
1212
keywords = ["zentinel", "proxy", "agent", "waf", "modsecurity"]
1313
categories = ["network-programming"]
1414
readme = "README.md"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ use zentinel_agent_zentinelsec::{ZentinelSecAgent, ZentinelSecConfig};
1414
#[derive(Parser, Debug)]
1515
#[command(name = "zentinel-zentinelsec-agent")]
1616
#[command(
17-
about = "Pure Rust ModSecurity-compatible WAF agent for Zentinel - full OWASP CRS support without C dependencies"
17+
about = "Pure Rust ModSecurity-compatible WAF agent for Zentinel - loads the stock OWASP CRS without C dependencies"
1818
)]
1919
#[command(version = env!("CARGO_PKG_VERSION"))]
2020
struct Args {

0 commit comments

Comments
 (0)