mirror of
https://github.com/servo/servo
synced 2026-05-14 10:56:44 +02:00
This fixes a warning of `cargo publish`: ``` warning: manifest has no description, documentation, homepage or repository ``` Testing: Compiling. Manual testing of `cargo publish --dry-run` (with some additional patches, and until the next error, shows this warning has been fixed) Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
34 lines
919 B
TOML
34 lines
919 B
TOML
[package]
|
|
name = "servo-allocator"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
edition.workspace = true
|
|
publish.workspace = true
|
|
rust-version.workspace = true
|
|
repository.workspace = true
|
|
description.workspace = true
|
|
|
|
[lib]
|
|
path = "lib.rs"
|
|
|
|
[features]
|
|
allocation-tracking = ["backtrace", "dep:rustc-hash", "log"]
|
|
use-system-allocator = ["libc"]
|
|
|
|
[dependencies]
|
|
backtrace = { workspace = true, optional = true }
|
|
log = { workspace = true, optional = true }
|
|
rustc-hash = { workspace = true, optional = true }
|
|
|
|
[target.'cfg(not(any(windows, target_env = "ohos")))'.dependencies]
|
|
libc = { workspace = true, optional = true }
|
|
tikv-jemalloc-sys = { workspace = true }
|
|
tikv-jemallocator = { workspace = true }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
windows-sys = { workspace = true, features = ["Win32_System_Memory"] }
|
|
|
|
[target.'cfg(target_env = "ohos")'.dependencies]
|
|
libc = { workspace = true }
|