buildkit_rs/lib.rs
1//! # BuildKit Rust SDK
2//!
3//! This is the meta crate for the BuildKit Rust SDK, all the other crates are
4//! re-exported here as modules. The other crates can be used individually if you
5//! want to use only a subset of the SDK.
6
7// pub use buildkit_rs_frontend as frontend;
8
9/// The BuildKit LLB API
10pub mod llb {
11 pub use buildkit_rs_llb::*;
12}
13
14/// The BuildKit protobuf definitions
15pub mod proto {
16 pub use buildkit_rs_proto::*;
17}
18
19/// Parser for image references
20pub mod reference {
21 pub use buildkit_rs_reference::*;
22}
23
24/// Other utilities
25pub mod util {
26 pub use buildkit_rs_util::*;
27}