Initial commit

This commit is contained in:
2026-07-18 22:41:27 -04:00
commit 23b7798f2e
6 changed files with 32 additions and 0 deletions
View File
+1
View File
@@ -0,0 +1 @@
/target
Generated
+7
View File
@@ -0,0 +1,7 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "labyrinth"
version = "0.0.1"
+8
View File
@@ -0,0 +1,8 @@
[package]
name = "labyrinth"
version = "0.0.1"
edition = "2024"
license = "MIT"
description = "Library for managing soaricarus storage"
[dependencies]
+2
View File
@@ -0,0 +1,2 @@
# labyrinth
A library to make interacting with the object storage system used for `soaricarus`.
+14
View File
@@ -0,0 +1,14 @@
pub fn add(left: u64, right: u64) -> u64 {
left + right
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn it_works() {
let result = add(2, 2);
assert_eq!(result, 4);
}
}