Initial commit
This commit is contained in:
commit
a47c47ea17
7 changed files with 33 additions and 0 deletions
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
/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 = "zssg"
|
||||||
|
version = "0.1.0"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "zssg-plugin"
|
||||||
|
version = "0.1.0"
|
||||||
8
Cargo.toml
Normal file
8
Cargo.toml
Normal file
|
|
@ -0,0 +1,8 @@
|
||||||
|
[workspace]
|
||||||
|
|
||||||
|
resolver = "3"
|
||||||
|
|
||||||
|
members = [
|
||||||
|
"zssg",
|
||||||
|
"zssg-plugin",
|
||||||
|
]
|
||||||
6
zssg-plugin/Cargo.toml
Normal file
6
zssg-plugin/Cargo.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
[package]
|
||||||
|
name = "zssg-plugin"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2024"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
0
zssg-plugin/src/lib.rs
Normal file
0
zssg-plugin/src/lib.rs
Normal file
6
zssg/Cargo.toml
Normal file
6
zssg/Cargo.toml
Normal file
|
|
@ -0,0 +1,6 @@
|
||||||
|
[package]
|
||||||
|
name = "zssg"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2024"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
1
zssg/src/main.rs
Normal file
1
zssg/src/main.rs
Normal file
|
|
@ -0,0 +1 @@
|
||||||
|
fn main() {}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue