icookforms 0.1.0

The World's Reference Cookie Audit Software - Complete Security & Compliance Analysis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Core types and data structures for `ICOokForms`

pub mod config;
pub mod cookie;
pub mod error;
pub mod issue;
pub mod regulation;
pub mod report;

// Re-exports
pub use config::{AnalysisConfig, Config, ReportConfig, ScanConfig};
pub use cookie::{Cookie, CookieAttribute, SameSite};
pub use error::{Error, Result};
pub use issue::{ComplianceIssue, Issue, IssueCategory, SecurityIssue, Severity};
pub use regulation::Regulation;
pub use report::{AnalysisResult, ComplianceResult, ScanResult};