forked from gnzlbg/jemallocator
-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Jay Lee <BusyJayLee@gmail.com>
- Loading branch information
Showing
33 changed files
with
2,121 additions
and
462 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
[submodule "jemalloc-sys/jemalloc"] | ||
path = jemalloc-sys/jemalloc | ||
url = https://github.com/tikv/jemalloc | ||
branch = v5.2.x | ||
url = https://github.com/jemalloc/jemalloc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,59 +1,2 @@ | ||
[package] | ||
name = "tikv-jemallocator" | ||
# Make sure to update the version in the README as well: | ||
version = "0.4.3" | ||
authors = [ | ||
"Alex Crichton <alex@alexcrichton.com>", | ||
"Gonzalo Brito Gadeschi <gonzalobg88@gmail.com>", | ||
"Simon Sapin <simon.sapin@exyr.org>", | ||
"Steven Fackler <sfackler@gmail.com>", | ||
"The TiKV Project Developers", | ||
] | ||
license = "MIT/Apache-2.0" | ||
readme = "README.md" | ||
keywords = ["allocator", "jemalloc"] | ||
categories = ["memory-management", "api-bindings"] | ||
repository = "https://github.com/tikv/jemallocator" | ||
homepage = "https://github.com/tikv/jemallocator" | ||
documentation = "https://docs.rs/tikv-jemallocator" | ||
description = """ | ||
A Rust allocator backed by jemalloc | ||
""" | ||
edition = "2018" | ||
|
||
[badges] | ||
travis-ci = { repository = "tikv/jemallocator" } | ||
codecov = { repository = "tikv/jemallocator" } | ||
is-it-maintained-issue-resolution = { repository = "tikv/jemallocator" } | ||
is-it-maintained-open-issues = { repository = "tikv/jemallocator" } | ||
maintenance = { status = "actively-developed" } | ||
|
||
[lib] | ||
test = false | ||
bench = false | ||
|
||
[workspace] | ||
members = ["systest", "jemallocator-global", "jemalloc-ctl", "jemalloc-sys" ] | ||
|
||
[dependencies] | ||
tikv-jemalloc-sys = { path = "jemalloc-sys", version = "0.4.0", default-features = false } | ||
libc = { version = "^0.2.8", default-features = false } | ||
|
||
[dev-dependencies] | ||
paste = "1" | ||
tikv-jemalloc-ctl = { path = "jemalloc-ctl", version = "0.4" } | ||
|
||
[features] | ||
default = ["background_threads_runtime_support"] | ||
alloc_trait = [] | ||
profiling = ["tikv-jemalloc-sys/profiling"] | ||
debug = ["tikv-jemalloc-sys/debug"] | ||
stats = ["tikv-jemalloc-sys/stats"] | ||
background_threads_runtime_support = ["tikv-jemalloc-sys/background_threads_runtime_support"] | ||
background_threads = ["tikv-jemalloc-sys/background_threads"] | ||
unprefixed_malloc_on_supported_platforms = ["tikv-jemalloc-sys/unprefixed_malloc_on_supported_platforms"] | ||
disable_initial_exec_tls = ["tikv-jemalloc-sys/disable_initial_exec_tls"] | ||
|
||
[package.metadata.docs.rs] | ||
features = [] | ||
rustdoc-args = [ "--cfg", "jemallocator_docs" ] | ||
members = ["jemallocator", "jemallocator-global", "jemalloc-ctl", "jemalloc-sys"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
5.2.1-2-g172143a2979d9d948035423ce347e35cd1388fc3 | ||
5.3.0-0-g54eaed1d8b56b1aa528be3bdd1877e59c56fa90c |
Oops, something went wrong.