Skip to content

Commit 611474a

Browse files
committed
chore: rename crate
1 parent 229b844 commit 611474a

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
2-
name = "mimalloc2"
3-
version = "0.1.44"
2+
name = "mimalloc-rs"
3+
version = "0.1.45"
44
authors = [
55
"Octavian Oncescu <[email protected]>",
66
"Vincent Rouillé <[email protected]>",
@@ -21,7 +21,7 @@ members = ["libmimalloc-sys", "libmimalloc-sys/sys-test"]
2121
travis-ci = { repository = "purpleprotocol/mimalloc_rust" }
2222

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

2626
[features]
2727
default = []

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Mimalloc Rust
1+
# `mimalloc-rs`
22

33
Forked from https://github.com/purpleprotocol/mimalloc_rust
44

@@ -10,7 +10,7 @@ Mimalloc is a general purpose, performance oriented allocator built by Microsoft
1010
## Usage
1111

1212
```rust
13-
use mimalloc::MiMalloc;
13+
use mimalloc_rs::MiMalloc;
1414

1515
#[global_allocator]
1616
static GLOBAL: MiMalloc = MiMalloc;
@@ -31,10 +31,10 @@ To enable secure mode, put in `Cargo.toml`:
3131

3232
```ini
3333
[dependencies]
34-
mimalloc = { version = "*", features = ["secure"] }
34+
mimalloc-rs = { version = "*", features = ["secure"] }
3535
```
3636

37-
[crates.io]: https://crates.io/crates/mimalloc
38-
[Latest Version]: https://img.shields.io/crates/v/mimalloc.svg
39-
[Documentation]: https://docs.rs/mimalloc/badge.svg
40-
[docs.rs]: https://docs.rs/mimalloc
37+
[crates.io]: https://crates.io/crates/mimalloc-rs
38+
[Latest Version]: https://img.shields.io/crates/v/mimalloc-rs.svg
39+
[Documentation]: https://docs.rs/mimalloc-rs/badge.svg
40+
[docs.rs]: https://docs.rs/mimalloc-rs

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-sys2"
3-
version = "0.1.40"
3+
version = "0.1.41"
44
authors = ["Octavian Oncescu <[email protected]>"]
55
edition = "2018"
66
repository = "https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys"

0 commit comments

Comments
 (0)