feat(taxonomy): add rust sidecar compact surface pipeline

This commit is contained in:
2026-03-12 15:23:10 -04:00
parent f2c25fb9c6
commit 58061af006
84 changed files with 19350 additions and 265 deletions

21
rust/vendor/crabrl/src/instance.rs vendored Normal file
View File

@@ -0,0 +1,21 @@
use crate::model::Document;
use crate::Result;
pub struct InstanceValidator {
strict: bool,
}
impl InstanceValidator {
pub fn new() -> Self {
Self { strict: false }
}
pub fn with_strict(mut self, strict: bool) -> Self {
self.strict = strict;
self
}
pub fn validate(&self, _document: &Document) -> Result<()> {
Ok(())
}
}