Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[workspace]
members = ["haya_data", "haya_ident", "haya_mutf8", "haya_nbt", "haya_protocol", "haya_ser", "haya_ser_macro", "haya_str"]
resolver = "2"
members = ["haya_data", "haya_ecs", "haya_ident", "haya_mutf8", "haya_nbt", "haya_protocol", "haya_ser", "haya_ser_macro", "haya_str", "haya_text"]
resolver = "3"

[workspace.package]
authors = ["hayanesuru <hayanesuru@outlook.jp>"]
Expand All @@ -17,6 +17,8 @@ haya_nbt = { path = "haya_nbt", version = "0.1" }
haya_str = { path = "haya_str", version = "0.1" }
haya_ident = { path = "haya_ident", version = "0.1" }
haya_mutf8 = { path = "haya_mutf8", version = "0.1" }
haya_ecs = { path = "haya_ecs", version = "0.1" }
haya_text = { path = "haya_text", version = "0.1" }

uuid = { version = "1", default-features = false }

Expand Down
2 changes: 1 addition & 1 deletion haya_data/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -602,7 +602,7 @@ const fn hash128(n: &[u8], seed: u64) -> [u64; 2] {
}

#[cfg(test)]
mod test {
mod tests {
use super::*;

#[test]
Expand Down
10 changes: 10 additions & 0 deletions haya_ecs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
[package]
name = "haya_ecs"
version = "0.1.0"
authors.workspace = true
readme.workspace = true
license.workspace = true
repository.workspace = true
edition.workspace = true

[dependencies]
Loading