From 7e08a9adc44eba7ffc85e893b23cff66c81dba2f Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Tue, 23 Jan 2024 17:18:48 -0800 Subject: [PATCH] [core] Create a core crate --- Cargo.toml | 1 + core/Cargo.toml | 8 ++++++++ core/src/lib.rs | 0 3 files changed, 9 insertions(+) create mode 100644 core/Cargo.toml create mode 100644 core/src/lib.rs diff --git a/Cargo.toml b/Cargo.toml index 655f6ac..d595fa5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,5 +2,6 @@ members = [ "board", + "core", "explorer", ] diff --git a/core/Cargo.toml b/core/Cargo.toml new file mode 100644 index 0000000..900733d --- /dev/null +++ b/core/Cargo.toml @@ -0,0 +1,8 @@ +[package] +name = "core" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] diff --git a/core/src/lib.rs b/core/src/lib.rs new file mode 100644 index 0000000..e69de29