1#![doc = include_str!("../README.md")]
2#![doc(
3 html_logo_url = "https://raw.githubusercontent.com/op-rs/kona/main/assets/square.png",
4 html_favicon_url = "https://raw.githubusercontent.com/op-rs/kona/main/assets/favicon.ico",
5 issue_tracker_base_url = "https://github.com/op-rs/kona/issues/"
6)]
7#![cfg_attr(docsrs, feature(doc_cfg, doc_auto_cfg))]
8#![cfg_attr(not(test), no_std)]
9
10extern crate alloc;
11
12#[macro_use]
13extern crate tracing;
14
15mod errors;
16pub use errors::{DriverError, DriverResult};
17
18mod pipeline;
19pub use pipeline::DriverPipeline;
20
21mod executor;
22pub use executor::Executor;
23
24mod core;
25pub use core::Driver;
26
27mod cursor;
28pub use cursor::PipelineCursor;
29
30mod tip;
31pub use tip::TipCursor;