mirror of
https://github.com/neocturne/MinedMap.git
synced 2025-04-20 03:25:09 +02:00
17 lines
451 B
TOML
17 lines
451 B
TOML
[package]
|
|
name = "minedmap-default-alloc"
|
|
version = "0.1.0"
|
|
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.6.0", optional = true }
|
|
|
|
[target.'cfg(target_env = "musl")'.dependencies]
|
|
tikv-jemallocator = "0.6.0"
|
|
|
|
[features]
|
|
jemalloc = ["dep:tikv-jemallocator"]
|