Skip to main content

smix_core/
lib.rs

1#![doc = include_str!("../README.md")]
2#![deny(missing_docs)]
3#![deny(rustdoc::broken_intra_doc_links)]
4#![doc(html_root_url = "https://docs.smix.dev/smix-core")]
5
6//! Internal layout: this crate is intentionally tiny. The sense /
7//! decide / act primitives live in dedicated stones (see the table in
8//! README); `smix-core` itself just exposes the package version as a
9//! smoke-test compile target so `cargo install smix-core` resolves.
10
11/// Compile-time crate version. Validates the build link from a `cargo
12/// test` smoke perspective.
13#[doc(hidden)]
14pub const __CRATE_VERSION: &str = env!("CARGO_PKG_VERSION");