-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (29 loc) · 818 Bytes
/
Cargo.toml
File metadata and controls
32 lines (29 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[workspace]
members = ["smalloc", "smalloc-ffi", "hellosmalloc", "bench", "find_max_vm_addresses_reservable"]
default-members = ["smalloc"]
resolver = "3"
[workspace.package]
version = "7.6.5"
edition = "2024"
authors = ["Zooko <noemail@thanks.com>"]
license = "MIT OR Apache-2.0 OR TGPPL-1.0" # OR BOSL-1.0, see LICENSE-BOSL.txt
description = "smalloc is a simple, fast allocator"
repository = "https://github.com/zooko/smalloc"
homepage = "https://github.com/zooko/smalloc"
readme = "README.md"
keywords = ["allocator", "memory", "malloc"]
categories = ["memory-management"]
[profile.release]
opt-level = 3
panic = "abort"
debug = false
codegen-units = 1
lto = "fat"
debug-assertions = false
overflow-checks = false
[profile.profiling]
inherits = "release"
debug = 2
opt-level = 2
lto = "thin"
codegen-units = 16