parent
079d507de0
commit
fdb7844149
30 changed files with 528 additions and 1088 deletions
8
subcrates/zen_core/Cargo.toml
Normal file
8
subcrates/zen_core/Cargo.toml
Normal file
|
@ -0,0 +1,8 @@
|
|||
[package]
|
||||
name = "zen_core"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
anyhow = "1.0.94"
|
||||
thiserror = "2.0.8"
|
9
subcrates/zen_core/src/lib.rs
Normal file
9
subcrates/zen_core/src/lib.rs
Normal file
|
@ -0,0 +1,9 @@
|
|||
use thiserror::Error;
|
||||
|
||||
|
||||
#[derive(Debug,Error)]
|
||||
enum ZError {
|
||||
#[error(transparent)]
|
||||
Unknown(#[from] anyhow::Error)
|
||||
|
||||
}
|
|
@ -1,6 +0,0 @@
|
|||
[package]
|
||||
name = "zephyr"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
|
||||
[dependencies]
|
|
@ -1,8 +0,0 @@
|
|||
# Zephyr ECS<div align="center">
|
||||
|
||||
|
||||
🚧 **Work In Progress** 🚧
|
||||
|
||||
This README is currently under construction. Please check back later for more detailed information about the project.
|
||||
|
||||
</div>
|
|
@ -1 +0,0 @@
|
|||
|
Loading…
Add table
Add a link
Reference in a new issue