File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change
1
+ dist : trusty
2
+ sudo : require
3
+
4
+ addons :
5
+ apt :
6
+ sources :
7
+ - ubuntu-toolchain-r-test
8
+ packages :
9
+ - gcc-6
10
+ - g++-6
11
+ - cmake
12
+
13
+ language : rust
14
+
15
+ cache : cargo
16
+
17
+ rust :
18
+ - stable
19
+ - nightly
20
+
21
+ matrix :
22
+ allow_failures :
23
+ - rust : nightly
24
+ fast_finish : true
25
+
26
+ script :
27
+ - cargo build --release
28
+ - cargo build --release --features no_secure
Original file line number Diff line number Diff line change 1
1
# Mimalloc Rust
2
+ [ ![ Build Status] ( https://travis-ci.org/purpleprotocol/mimalloc_rust.svg?branch=master )] ( https://travis-ci.org/purpleprotocol/mimalloc_rust ) [ ![ Latest Version]] [ crates.io ] [ ![ Documentation]] [ docs.rs ]
2
3
3
4
A drop-in global allocator wrapper around the [ mimalloc] ( https://github.com/microsoft/mimalloc ) allocator.
4
5
Mimalloc is a general purpose, performance oriented allocator built by Microsoft.
@@ -20,3 +21,8 @@ In `Cargo.toml`:
20
21
[dependencies ]
21
22
mimalloc = { version = " *" , features = [" no_secure" ] }
22
23
```
24
+
25
+ [ crates.io ] : https://crates.io/crates/mimalloc
26
+ [ Latest Version ] : https://img.shields.io/crates/v/mimalloc.svg
27
+ [ Documentation ] : https://docs.rs/mimalloc/badge.svg
28
+ [ docs.rs ] : https://docs.rs/mimalloc
You can’t perform that action at this time.
0 commit comments