Skip to content

Commit b47222c

Browse files
committed
Added more cargo.toml fields
1 parent 593e906 commit b47222c

File tree

4 files changed

+39
-0
lines changed

4 files changed

+39
-0
lines changed

Cargo.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ name = "mimalloc"
33
version = "0.1.0"
44
authors = ["Octavian Oncescu <[email protected]>"]
55
edition = "2018"
6+
repository = "https://github.com/purpleprotocol/mimalloc_rust"
7+
keywords = ["allocator", "encrypted-heap", "performance"]
8+
categories = ["allocator"]
9+
description = "Performance and security oriented drop-in allocator"
10+
license = "MIT"
11+
readme = "README.md"
612

713
[dependencies]
814
libc = "0.2"

LICENSE.txt

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
Copyright 2019 Octavian Oncescu
2+
3+
Permission is hereby granted, free of charge, to any
4+
person obtaining a copy of this software and associated
5+
documentation files (the "Software"), to deal in the
6+
Software without restriction, including without
7+
limitation the rights to use, copy, modify, merge,
8+
publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software
10+
is furnished to do so, subject to the following
11+
conditions:
12+
13+
The above copyright notice and this permission notice
14+
shall be included in all copies or substantial portions
15+
of the Software.
16+
17+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
18+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED
19+
TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
20+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT
21+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
22+
CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
24+
IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
25+
DEALINGS IN THE SOFTWARE.

libmimalloc-sys/.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/target
2+
**/*.rs.bk
3+
Cargo.lock

libmimalloc-sys/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ name = "libmimalloc-sys"
33
version = "0.1.0"
44
authors = ["Octavian Oncescu <[email protected]>"]
55
edition = "2018"
6+
repository = "https://github.com/purpleprotocol/mimalloc_rust/tree/master/libmimalloc-sys"
7+
keywords = ["allocator", "encrypted-heap", "performance"]
8+
categories = ["allocator"]
9+
description = "Sys crate wrapping the mimalloc allocator"
10+
license = "MIT"
611

712
[dependencies]
813
libc = "0.2"

0 commit comments

Comments
 (0)