pso_gc_tools/Cargo.toml
Gered 93c2180da2 call memcmp directly during prs_compress
since we're doing offset/length checks regardless, calling memcmp here
instead of doing a slice comparison is at least twice as fast during
non-release builds. this is nice, as prs_compress can be quite slow
during non-release builds. and obviously during release builds, this
would be compiled down to a memcmp-equivalent anyway.
2021-05-16 16:31:00 -04:00

10 lines
73 B
TOML

[workspace]
members = [
"psoutils",
]
[profile.dev]
opt-level = 1