forked from alexcrichton/dlmalloc-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
42 lines (34 loc) · 887 Bytes
/
Cargo.toml
File metadata and controls
42 lines (34 loc) · 887 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
33
34
35
36
37
38
39
40
41
42
[package]
name = "disk-dlmalloc"
version = "0.2.0"
authors = ["Anand Aiyer <aaiyer@gmail.com>"]
license = "MIT/Apache-2.0"
readme = "README.md"
repository = "https://github.com/aaiyer/disk-dlmalloc"
homepage = "https://github.com/aaiyer/disk-dlmalloc"
documentation = "https://docs.rs/disk-dlmalloc"
description = """
A fork of [dlmalloc-rs] backed by a memory-mapped file, enabling support for datasets exceeding available RAM.
"""
edition.workspace = true
[workspace]
members = ['fuzz']
[workspace.package]
edition = '2021'
[package.metadata.docs.rs]
features = ['global']
[lib]
doctest = false
[dependencies]
libc = "0.2"
memmap2 = "0.9"
[dev-dependencies]
arbitrary = "1.3"
rand = { version = "0.8", features = ['small_rng'] }
tempfile = "3.16"
anyhow = "1.0"
[profile.release]
debug-assertions = true
[features]
# Enable very expensive debug checks in this crate
debug = []