We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 98ff202 commit 5303304Copy full SHA for 5303304
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "mimalloc"
3
-version = "0.1.7"
+version = "0.1.8"
4
authors = [
5
"Octavian Oncescu <octavonce@gmail.com>",
6
"Vincent Rouillé <vincent@speedy37.fr>",
libmimalloc-sys/build.rs
@@ -36,8 +36,12 @@ fn main() {
36
} else {
37
if cfg!(debug_assertions) {
38
("./build", "mimalloc-debug")
39
- } else {
40
- ("./build", "mimalloc")
+ } else {
+ if cfg!(feature = "secure") {
41
+ ("./build", "mimalloc-secure")
42
43
+ ("./build", "mimalloc")
44
+ }
45
}
46
};
47
0 commit comments