minedmap-default-alloc 0.1.1

Helper crate for target-specific selection of global allocator default
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
[package]
name = "minedmap-default-alloc"
version = "0.1.1"
description = "Helper crate for target-specific selection of global allocator default"
edition.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true

[dependencies]
tikv-jemallocator = { version = "0.7.0", optional = true }

[target.'cfg(target_env = "musl")'.dependencies]
tikv-jemallocator = "0.7.0"

[features]
jemalloc = ["dep:tikv-jemallocator"]