//! # Notation3 (N3) Logic Support
//!
//! N3 extends Turtle with logical rules using `@forAll`, `@forSome`, and `=>` (implies).
//! Used in reasoning systems like Notation3Py, EYE reasoner, etc.
// Re-export all public types so callers can use `n3logic::N3Rule` etc.
pub use N3Engine;
pub use N3Parser;
pub use ;