We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7da1750 commit 6d9196fCopy full SHA for 6d9196f
README.md
@@ -55,6 +55,17 @@ fn main() {
55
}
56
```
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
69
## Implementation Progress
70
71
- [x] `BSTMap`
0 commit comments