mirror of
https://github.com/servo/servo.git
synced 2025-07-10 00:43:39 +01:00
16 lines
343 B
TOML
16 lines
343 B
TOML
[package]
|
|
name = "servo_allocator"
|
|
version = "0.0.1"
|
|
authors = ["The Servo Project Developers"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
publish = false
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[target.'cfg(not(windows))'.dependencies]
|
|
jemalloc-sys = { version = "0.1.4" }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
winapi = { version = "0.3", features = ["heapapi"] }
|