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", +]