# Copyright 2017 the authors. See the 'Copyright and license' section of the # README.md file at the top-level directory of this repository. # # Licensed under the Apache License, Version 2.0 (the LICENSE file). This file # may not be copied, modified, or distributed except according to those terms. [package] name = "malloc-bind" version = "0.1.0" authors = ["Joshua Liebow-Feeser "] license = "Apache-2.0" description = "A tool to implement the C malloc API using a Rust allocator." keywords = ["allocator", "malloc", "bindings", "C", "ffi"] categories = ["external-ffi-bindings", "memory-management", "no-std"] readme = "README.md" documentation = "https://docs.rs/malloc-bind" repository = "https://github.com/ezrosent/allocators-rs/tree/master/malloc-bind" exclude = ["travis.sh"] [dependencies] errno = "0.2" lazy_static = "0.2" libc = "0.2" sysconf = "0.3.0"