Moved shared data types to 'types' subcrate

This commit is contained in:
mdecimus
2025-09-22 10:01:31 +02:00
parent b49202a2b3
commit 71cc30c7be
325 changed files with 4132 additions and 3540 deletions

19
crates/types/Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "types"
version = "0.13.3"
edition = "2024"
resolver = "2"
[dependencies]
utils = { path = "../utils" }
trc = { path = "../trc" }
hashify = "0.2"
serde = { version = "1.0", features = ["derive"]}
rkyv = { version = "0.8.10", features = ["little_endian"] }
compact_str = { version = "0.9.0", features = ["rkyv", "serde"] }
blake3 = "1.3.3"
[features]
test_mode = []