Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update readme to reflect last changes #179

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snmalloc-rs"
version = "0.3.4"
version = "0.3.5"
authors = ["schrodingerzhu <[email protected]>"]
edition = "2021"
license = "MIT"
Expand All @@ -16,7 +16,7 @@ readme = "README.md"
members = ["snmalloc-sys" ]

[dependencies]
snmalloc-sys = {version = "0.3.4", path = "snmalloc-sys", default-features = false }
snmalloc-sys = {version = "0.3.5", path = "snmalloc-sys", default-features = false }

[features]
default = ["snmalloc-sys/build_cmake"]
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ are listed at
- `check`: Enable extra checks to improve security, see upstream [security docs](https://github.com/microsoft/snmalloc/tree/main/docs/security).
Note that the `memcpy` protection is not enabled in Rust.
- `win8compat`: Improve compatibility for old Windows platforms (removing usages of `VirtualAlloc2` and other new APIs)
- `lto`: Links with InterProceduralOptimization/LinkTimeOptimization
- `notls`: Enables to be loaded dynamically, thus disable tls.

**To get the crates compiled, you need to choose either `1mib` or `16mib` to determine the chunk configuration**

Expand Down
2 changes: 1 addition & 1 deletion snmalloc-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "snmalloc-sys"
version = "0.3.4"
version = "0.3.5"
authors = ["schrodingerzhu <[email protected]>"]
edition = "2021"
license = "MIT"
Expand Down
Loading