chromaframe-sdk 0.1.1

Deterministic, privacy-preserving color measurement and ranking SDK
Documentation
#![forbid(unsafe_code)]
#![doc = "Deterministic ChromaFrame SDK core. CLI and MCP wrappers are intentionally out of scope."]

pub mod color;
pub mod evidence;
pub mod image;
pub mod privacy;
pub mod provider;
pub mod quality;
pub mod report;
pub mod score;
pub mod types;
#[cfg(feature = "vision")]
pub mod vision;

pub use color::*;
pub use evidence::*;
pub use image::*;
pub use privacy::*;
pub use provider::*;
pub use quality::*;
pub use report::*;
pub use score::*;
pub use types::*;
#[cfg(feature = "vision")]
pub use vision::*;