| // Copyright 2020 The Fuchsia Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| // This crate doesn't comply with all 2018 idioms |
| #![allow(elided_lifetimes_in_paths)] |
| |
| pub mod bind_library; |
| mod bind_program; |
| mod bind_program_v2_constants; |
| mod bytecode_common; |
| pub mod compiler; |
| pub mod ddk_bind_constants; |
| pub mod debugger; |
| mod decoded_bind_program; |
| mod dependency_graph; |
| mod device_specification; |
| pub mod encode_bind_program_v1; |
| pub mod encode_bind_program_v2; |
| mod errors; |
| pub mod instruction; |
| pub mod linter; |
| pub mod match_bind; |
| pub mod offline_debugger; |
| mod parser_common; |
| pub mod test; |