initial commit.
absolutely no content. purely scaffolding.
This commit is contained in:
commit
43ec1e7128
7 changed files with 32 additions and 0 deletions
2
.gitignore
vendored
Normal file
2
.gitignore
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
/target
|
||||
|
11
Cargo.lock
generated
Normal file
11
Cargo.lock
generated
Normal 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
6
Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
[workspace]
|
||||
members = [
|
||||
"crates/ezpg",
|
||||
"crates/ezpg-macros",
|
||||
]
|
||||
resolver = "2"
|
7
crates/ezpg-macros/Cargo.toml
Normal file
7
crates/ezpg-macros/Cargo.toml
Normal file
|
@ -0,0 +1,7 @@
|
|||
[package]
|
||||
name = "ezpg_macros"
|
||||
version = "0.0.0"
|
||||
edition = "2021"
|
||||
|
||||
[lib]
|
||||
proc-macro = true
|
0
crates/ezpg-macros/src/lib.rs
Normal file
0
crates/ezpg-macros/src/lib.rs
Normal file
6
crates/ezpg/Cargo.toml
Normal file
6
crates/ezpg/Cargo.toml
Normal file
|
@ -0,0 +1,6 @@
|
|||
[package]
|
||||
name = "ezpg"
|
||||
version = "0.0.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
0
crates/ezpg/src/lib.rs
Normal file
0
crates/ezpg/src/lib.rs
Normal file
Loading…
Reference in a new issue