[[bin]]
name = "internals"
path = "src/bin/internals.rs"
[dependencies.bitflags]
version = "2.6.0"
[dependencies.linux-raw-sys]
default-features = false
features = ["no_std", "general"]
version = "0.6.4"
[dependencies.lock_api]
version = "0.4.12"
[dependencies.static_assertions]
version = "1.1.0"
[dependencies.syscalls]
default-features = false
version = "0.6.18"
[features]
boundary-checks = []
default = []
tls = []
[lib]
name = "emma"
path = "src/lib.rs"
[package]
authors = ["Daniel Schemmel <daniel@schemmel.net"]
autobenches = false
autobins = false
autoexamples = false
autotests = false
build = false
description = 'A full-fledged `no_std` and "no-libc" capable memory allocator.'
edition = "2021"
keywords = ["alloc", "allocator", "malloc", "no_std"]
license = "MIT OR Apache-2.0"
name = "emma"
readme = "README.md"
repository = "https://github.com/danielschemmel/emma/"
version = "0.0.1"
[profile.release]
codegen-units = 1
lto = true
[[test]]
name = "large_objects"
path = "tests/large_objects.rs"
[[test]]
name = "medium_objects"
path = "tests/medium_objects.rs"
[[test]]
name = "simple_nostd"
path = "tests/simple_nostd.rs"
[[test]]
name = "simple_std"
path = "tests/simple_std.rs"
[[test]]
name = "small_objects"
path = "tests/small_objects.rs"
[[test]]
name = "threaded"
path = "tests/threaded.rs"