initial rust oidc lib

This commit is contained in:
Grant Limberg
2021-10-27 16:11:06 -07:00
parent 0032df3bf1
commit 271dfc0d2b
5 changed files with 1398 additions and 0 deletions

13
zeroidc/src/lib.rs Normal file
View File

@@ -0,0 +1,13 @@
#[cfg(test)]
mod tests {
#[test]
fn it_works() {
assert_eq!(2 + 2, 4);
}
}
#[no_mangle]
pub extern "C" fn hello_rust() {
println!("Hello, Rust from C!")
}