From fa1a8807a25c8ec0cc4d18a2c7fabba2613003fb Mon Sep 17 00:00:00 2001 From: William P Date: Mon, 24 Mar 2025 10:19:55 -0400 Subject: [PATCH] initial commit --- .gitignore | 10 ++++++++++ cellular/Cargo.lock | 7 +++++++ cellular/Cargo.toml | 6 ++++++ cellular/src/main.rs | 3 +++ 4 files changed, 26 insertions(+) create mode 100644 .gitignore create mode 100644 cellular/Cargo.lock create mode 100644 cellular/Cargo.toml create mode 100644 cellular/src/main.rs diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..73fab07 --- /dev/null +++ b/.gitignore @@ -0,0 +1,10 @@ +# Generated by Cargo +# will have compiled files and executables +debug/ +target/ + +# These are backup files generated by rustfmt +**/*.rs.bk + +# MSVC Windows builds of rustc generate these, which store debugging information +*.pdb diff --git a/cellular/Cargo.lock b/cellular/Cargo.lock new file mode 100644 index 0000000..1eab0d0 --- /dev/null +++ b/cellular/Cargo.lock @@ -0,0 +1,7 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "cellular-rs" +version = "0.1.0" diff --git a/cellular/Cargo.toml b/cellular/Cargo.toml new file mode 100644 index 0000000..0c666a5 --- /dev/null +++ b/cellular/Cargo.toml @@ -0,0 +1,6 @@ +[package] +name = "cellular-rs" +version = "0.1.0" +edition = "2024" + +[dependencies] diff --git a/cellular/src/main.rs b/cellular/src/main.rs new file mode 100644 index 0000000..e7a11a9 --- /dev/null +++ b/cellular/src/main.rs @@ -0,0 +1,3 @@ +fn main() { + println!("Hello, world!"); +}