Files
rply-codec/Cargo.toml
T

17 lines
430 B
TOML
Raw Normal View History

2025-10-24 13:53:37 -07:00
[package]
name = "rply-codec"
version = "0.1.0"
edition = "2024"
[dependencies]
2025-10-27 14:38:10 -07:00
bytemuck = { version = "1.24.0", features = ["const_zeroed"] }
byteorder = "1.5.0"
2025-10-24 16:02:56 -07:00
flate2 = { version = "1.1.5", features = ["zlib-rs"] }
2025-10-27 14:38:10 -07:00
nohash-hasher = "0.2.0"
2025-10-24 13:53:37 -07:00
rmp = "0.8.14"
2025-10-27 14:38:10 -07:00
smallvec = "1.15.1"
2025-10-24 13:53:37 -07:00
thiserror = "2.0.17"
2025-10-27 14:38:10 -07:00
xxhash-rust = { version = "0.8.15", features = ["xxh3"] }
2025-10-24 16:02:56 -07:00
zstd = "0.13.3"
retro-rs = { version = "0.5.2", default-features=false }