microsoft/qdk
Publicmirrored fromhttps://github.com/microsoft/qdkAvailable
compiler/qsc_data_structures/src/lib.rs
12lines · modecode
| 1 | // Copyright (c) Microsoft Corporation. |
| 2 | // Licensed under the MIT License. |
| 3 | |
| 4 | #![warn(clippy::mod_module_files, clippy::pedantic, clippy::unwrap_used)] |
| 5 | #![allow(clippy::missing_errors_doc, clippy::missing_panics_doc)] |
| 6 | |
| 7 | pub mod display; |
| 8 | pub mod functors; |
| 9 | pub mod index_map; |
| 10 | pub mod language_features; |
| 11 | pub mod line_column; |
| 12 | pub mod span; |
| 13 | |