mirror of
https://github.com/microsoft/regorus.git
synced 2026-08-05 02:16:11 +00:00
- Prefix regorus- to mimalloc crates and add MIT licenses - alias dependencies to avoid code changes - add versions and release-plz publish entries - update Cargo.lock files for new crate names Signed-off-by: Anand Krishnamoorthi <anakrish@microsoft.com>
17 lines
428 B
TOML
17 lines
428 B
TOML
[package]
|
|
name = "regorus-mimalloc"
|
|
description = "Vendored mimalloc allocator for regorus"
|
|
edition = "2021"
|
|
version = "2.2.6"
|
|
license = "MIT"
|
|
repository = "https://github.com/microsoft/regorus"
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = []
|
|
allocator-memory-limits = ["std"]
|
|
|
|
[target.'cfg(not(any(target_family = "wasm")))'.dependencies]
|
|
mimalloc-sys = { package = "regorus-mimalloc-sys", path = "./mimalloc-sys", version = "2.2.6" }
|
|
|