feat: Setup Cargo project
This commit is contained in:
parent
c6cdc73a40
commit
62419f50f2
2 changed files with 25 additions and 0 deletions
15
Cargo.lock
generated
Normal file
15
Cargo.lock
generated
Normal 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
10
Cargo.toml
Normal file
|
|
@ -0,0 +1,10 @@
|
||||||
|
[package]
|
||||||
|
name = "purr"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2024"
|
||||||
|
|
||||||
|
[workspace]
|
||||||
|
members = [
|
||||||
|
"purr_core",
|
||||||
|
"purr_machine",
|
||||||
|
]
|
||||||
Loading…
Reference in a new issue