Skip to content

Commit a5a76fd

Browse files
committed
v0.1.48
1 parent 31607bf commit a5a76fd

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mimalloc"
3-
version = "0.1.47"
3+
version = "0.1.48"
44
authors = [
55
"Octavian Oncescu <octavonce@gmail.com>",
66
"Vincent Rouillé <vincent@speedy37.fr>",
@@ -21,7 +21,7 @@ members = ["libmimalloc-sys", "libmimalloc-sys/sys-test"]
2121
travis-ci = { repository = "purpleprotocol/mimalloc_rust" }
2222

2323
[dependencies]
24-
libmimalloc-sys = { path = "libmimalloc-sys", version = "0.1.43", default-features = false }
24+
libmimalloc-sys = { path = "libmimalloc-sys", version = "0.1.44", default-features = false }
2525

2626
[features]
2727
default = []

README.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,16 @@ To enable secure mode, put in `Cargo.toml`:
3232
mimalloc = { version = "*", features = ["secure"] }
3333
```
3434

35+
## Usage with v3
36+
37+
By default this library uses `mimalloc v2`.
38+
To enable `v3`, put in `Cargo.toml`:
39+
40+
```ini
41+
[dependencies]
42+
mimalloc = { version = "*", features = ["v3"] }
43+
```
44+
3545
[crates.io]: https://crates.io/crates/mimalloc
3646
[Latest Version]: https://img.shields.io/crates/v/mimalloc.svg
3747
[Documentation]: https://docs.rs/mimalloc/badge.svg

libmimalloc-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "libmimalloc-sys"
3-
version = "0.1.43"
3+
version = "0.1.44"
44
authors = ["Octavian Oncescu <octavonce@gmail.com>"]
55
edition = "2018"
66
repository = "https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys"

0 commit comments

Comments
 (0)