Initial MetaCrate rewrite shell

This commit is contained in:
2026-08-08 09:49:22 +02:00
commit 115425cea7
66 changed files with 56984 additions and 0 deletions

9
tests/compat/src/lib.rs Normal file
View File

@@ -0,0 +1,9 @@
//! Shared failure marker used by generated compatibility tests.
/// Fails a not-yet-translated upstream test while retaining parity metadata.
#[track_caller]
pub fn pending(source: &str, line: u64, test: &str, attribute: &str, body_sha256: &str) -> ! {
panic!(
"pending LibreMetaverse parity test {test} ({attribute}) from {source}:{line}; C# body sha256={body_sha256}"
)
}