module_lang/lib.rs
1//! # module_lang
2//!
3//! Module and import resolution for multi-file languages.
4//!
5//! Scaffold release (v0.1.0). The public surface is being designed across the
6//! 0.x series and frozen at v1.0. See `docs/API.md` and `dev/ROADMAP.md` for the
7//! current phase scope.
8
9#![cfg_attr(not(feature = "std"), no_std)]
10#![cfg_attr(docsrs, feature(doc_cfg))]
11#![deny(missing_docs)]
12#![forbid(unsafe_code)]
13
14#[cfg(test)]
15mod tests {
16 /// The scaffold carries no public surface yet (see `dev/ROADMAP.md`); this
17 /// test exists so the crate compiles and links under the test harness, and
18 /// so CI has a unit test to run before the resolution code lands.
19 #[test]
20 fn crate_builds_under_test_harness() {}
21}