commit 6323c219b733e340cf0b36e51cdd88e8918730b6 Author: Johnathan Corgan Date: Sat Jan 24 23:37:28 2026 +0000 Initial FIPS project diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..58ee9ba --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "fips" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}