initial commit.

absolutely no content. purely scaffolding.
This commit is contained in:
elliot speck 2024-12-28 20:50:21 +11:00
commit 43ec1e7128
No known key found for this signature in database
7 changed files with 32 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
/target

11
Cargo.lock generated Normal file
View file

@ -0,0 +1,11 @@
# This file is automatically @generated by Cargo.
# It is not intended for manual editing.
version = 4
[[package]]
name = "ezpg"
version = "0.0.0"
[[package]]
name = "ezpg_macros"
version = "0.0.0"

6
Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[workspace]
members = [
"crates/ezpg",
"crates/ezpg-macros",
]
resolver = "2"

View file

@ -0,0 +1,7 @@
[package]
name = "ezpg_macros"
version = "0.0.0"
edition = "2021"
[lib]
proc-macro = true

View file

6
crates/ezpg/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "ezpg"
version = "0.0.0"
edition = "2021"
[dependencies]

0
crates/ezpg/src/lib.rs Normal file
View file