-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
30 lines (26 loc) · 827 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
29
30
[package]
name = "fixed-bump"
version = "0.3.4-dev"
edition = "2021"
rust-version = "1.60"
description = """A bump allocator that uses fixed-size chunks to ensure \
non-amortized O(1) allocations"""
documentation = "https://docs.rs/fixed-bump"
readme = "misc/crate-readme.md"
repository = "https://github.com/taylordotfish/fixed-bump"
license = "GPL-3.0-or-later"
keywords = ["allocator", "arena", "bump", "constant-time", "fixed-size"]
categories = ["memory-management", "no-std"]
[features]
allocator_api = ["allocator-fallback?/allocator_api"]
doc_cfg = []
[dependencies.allocator-fallback]
version = "0.1.1"
default-features = false
optional = true
[build-dependencies.allocator-fallback]
version = "0.1.7"
default-features = false
optional = true
[package.metadata.docs.rs]
features = ["allocator_api", "doc_cfg"]