-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
28 lines (25 loc) · 823 Bytes
/
Cargo.toml
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
[package]
authors = ["shadyfennec"]
categories = ["memory-management"]
description = "A stupid memory allocator that memory-maps allocations to files."
edition = "2021"
keywords = ["allocator", "memory"]
license = "MIT OR Apache-2.0"
name = "stupidalloc"
readme = "README.md"
repository = "https://github.com/shadyfennec/stupidalloc"
version = "0.2.1"
[package.metadata.docs.rs]
all-features = true
[features]
always-graphics = ["graphics"]
graphics = ["minifb"]
interactive = ["native-dialog"]
logging = []
[dependencies]
allocator-api2 = "0.2.16"
hashbrown = {version = "0.14.3", features = ["ahash", "inline-more"]}
lazy_static = "1.4.0"
memmap2 = "0.7.1"
minifb = {version = "0.25", optional = true}
native-dialog = {version = "0.6.4", optional = true, features = ["windows_dpi_awareness", "windows_visual_styles"]}