feat: Setup Cargo project

This commit is contained in:
yaeju 2026-08-30 20:05:45 +09:00
parent c6cdc73a40
commit 62419f50f2
No known key found for this signature in database
2 changed files with 25 additions and 0 deletions

15
Cargo.lock generated Normal file
View file

@ -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"

10
Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "purr"
version = "0.1.0"
edition = "2024"
[workspace]
members = [
"purr_core",
"purr_machine",
]