From 496283c93d2750c9e1d2f88c9bbeb3e762554290 Mon Sep 17 00:00:00 2001 From: duguorong009 <80258679+duguorong009@users.noreply.github.com> Date: Fri, 22 Nov 2024 20:10:07 +0800 Subject: [PATCH] chore: create "lib.rs" & update ".gitignore" --- .gitignore | 2 +- core/src/lib.rs | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 core/src/lib.rs diff --git a/.gitignore b/.gitignore index 01de987..3931d02 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ # Generated by Cargo # will have compiled files and executables -/target/ +target/ # Remove Cargo.lock from gitignore if creating an executable, leave it for libraries # More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html diff --git a/core/src/lib.rs b/core/src/lib.rs new file mode 100644 index 0000000..8bfd060 --- /dev/null +++ b/core/src/lib.rs @@ -0,0 +1 @@ +pub mod number;