Skip to main content

egui_uix/
lib.rs

1pub mod components;
2
3/// The current version of the crate.
4pub const VERSION: &str = env!("CARGO_PKG_VERSION");
5
6#[cfg(test)]
7mod tests {
8    use super::*;
9
10    #[test]
11    fn test_version() {
12        assert!(!VERSION.is_empty());
13    }
14}