File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -55,6 +55,17 @@ fn main() {
55
55
}
56
56
```
57
57
58
+ ## Safety & Correctness
59
+
60
+ Like most low-level, high-performance data structures written in Rust, this crate makes use of quite
61
+ a bit of unsafe Rust code. None of the unsafe Rust code is intended to produce any
62
+ unsoundness/undefined behavior or result in any memory unsafety. We have extensively tested the code
63
+ with unit tests and [ miri] , but none of that guarantees that no mistakes have been made. The code
64
+ has not been audited and every edge case may not be accounted for. Please keep all of this in mind
65
+ if you decide to use this code in your project or as a reference.
66
+
67
+ [ miri ] : https://github.com/rust-lang/miri
68
+
58
69
## Implementation Progress
59
70
60
71
- [x] ` BSTMap `
You can’t perform that action at this time.
0 commit comments