1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
//! Spydecy - Self-Hosted Python/C-to-Rust Compiler-Debugger //! //! Library providing core transpilation functionality. #![warn(missing_docs, clippy::all, clippy::pedantic)] #![deny(unsafe_code)] /// Spydecy library version pub const VERSION: &str = env!("CARGO_PKG_VERSION"); /// Placeholder for future library functionality #[must_use] pub fn placeholder() -> &'static str { "Spydecy - EXTREME TDD Quality" } #[cfg(test)] mod tests { use super::*; #[test] fn test_version() { // Ensure version is set (placeholder test) assert!(VERSION.starts_with('0')); } #[test] fn test_placeholder() { assert_eq!(placeholder(), "Spydecy - EXTREME TDD Quality"); } }