Initial commit

This commit is contained in:
ZacJW 2025-05-17 12:04:30 +01:00
commit a47c47ea17
7 changed files with 33 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/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 = "zssg"
version = "0.1.0"
[[package]]
name = "zssg-plugin"
version = "0.1.0"

8
Cargo.toml Normal file
View file

@ -0,0 +1,8 @@
[workspace]
resolver = "3"
members = [
"zssg",
"zssg-plugin",
]

6
zssg-plugin/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "zssg-plugin"
version = "0.1.0"
edition = "2024"
[dependencies]

0
zssg-plugin/src/lib.rs Normal file
View file

6
zssg/Cargo.toml Normal file
View file

@ -0,0 +1,6 @@
[package]
name = "zssg"
version = "0.1.0"
edition = "2024"
[dependencies]

1
zssg/src/main.rs Normal file
View file

@ -0,0 +1 @@
fn main() {}