Miri (https://github.com/rust-lang/miri) is an interpreter, used by several Rust projects including the official compiler, that detects undefined behavior. So if you run miri test, client::tests::test_cluster_bad_parse will trigger the following UB.
I don't know if the error is legit but judging from the fact that this project makes extensive use of arbitrary bit casts, unsafe operations, unchecked arithmetic operations and unchecked primitive casts, it might be worth auditing the codebase
Miri (https://github.com/rust-lang/miri) is an interpreter, used by several Rust projects including the official compiler, that detects undefined behavior. So if you run
miri test
,client::tests::test_cluster_bad_parse
will trigger the following UB.I don't know if the error is legit but judging from the fact that this project makes extensive use of arbitrary bit casts, unsafe operations, unchecked arithmetic operations and unchecked primitive casts, it might be worth auditing the codebase