parlov-elicit 0.4.0

Elicitation engine: strategy selection and probe plan generation for parlov.
Documentation
//! Redirect-diff existence strategies.
//!
//! Each module implements one strategy that elicits existence differentials
//! through redirect behavior. The same URL manipulation is applied to both
//! baseline and probe — the server's own canonicalization convention creates
//! the differential (3xx for existing resources, 404 for nonexistent ones).

pub mod case_variation;
pub mod double_slash;
pub mod percent_encoding;
pub mod post_to_303;
pub mod protocol_upgrade;
pub mod put_to_303;
pub mod slash_append;
pub mod slash_strip;

pub use case_variation::RdCaseVariation;
pub use double_slash::RdDoubleSlash;
pub use percent_encoding::RdPercentEncoding;
pub use post_to_303::RdPostTo303;
pub use protocol_upgrade::RdProtocolUpgrade;
pub use put_to_303::RdPutTo303;
pub use slash_append::RdSlashAppend;
pub use slash_strip::RdSlashStrip;