Skip to main content

binoc_sdk/
lib.rs

1pub mod data_access;
2pub mod ir;
3pub mod plugin_abi;
4pub mod traits;
5pub mod types;
6
7#[cfg(feature = "test-support")]
8pub mod test_support;
9
10pub use data_access::LocalDataAccess;
11pub use ir::{Changeset, DiffNode};
12pub use traits::*;
13pub use types::*;
14
15/// Re-exports used by macros. Not part of the public API.
16#[doc(hidden)]
17pub mod _reexport {
18    pub use serde_json;
19}