jemallocator/Cargo.toml

22 lines
588 B
TOML

[package]
name = "jemallocator"
version = "0.1.0"
authors = ["Alex Crichton <alex@alexcrichton.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
keywords = ["allocator"]
repository = "https://github.com/alexcrichton/jemallocator"
homepage = "https://github.com/alexcrichton/jemallocator"
documentation = "http://alexcrichton.com/jemallocator"
description = """
A Rust allocator backed by jemalloc
"""
[dependencies]
jemalloc-sys = { path = "jemalloc-sys", version = "0.1.0" }
[dependencies.libc]
git = "https://github.com/alexcrichton/libc"
features = ["no-std"]
branch = "no-std"