From 62419f50f29baeb8aabe5e9023598c675a5be06e Mon Sep 17 00:00:00 2001 From: yaeju Date: Sun, 30 Aug 2026 20:05:45 +0900 Subject: [PATCH] feat: Setup Cargo project --- Cargo.lock | 15 +++++++++++++++ Cargo.toml | 10 ++++++++++ 2 files changed, 25 insertions(+) create mode 100644 Cargo.lock create mode 100644 Cargo.toml diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..d90a66e --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,15 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "purr" +version = "0.1.0" + +[[package]] +name = "purr_core" +version = "0.1.0" + +[[package]] +name = "purr_machine" +version = "0.1.0" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..db62824 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,10 @@ +[package] +name = "purr" +version = "0.1.0" +edition = "2024" + +[workspace] +members = [ + "purr_core", + "purr_machine", +]