forked from tokio-rs/slab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 902 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
31
32
33
34
35
[package]
name = "generic_slab"
# When releasing to crates.io:
# - Update version number
# - README.md
# - Update CHANGELOG.md
# - Create git tag
version = "0.1.1"
authors = [ "Bergmann89 <info@bergmann89.de>", "Carl Lerche <me@carllerche.com>" ]
edition = "2018"
rust-version = "1.31"
license = "MIT"
description = "Pre-allocated storage for a uniform data type"
repository = "https://github.com/Bergmann89/generic_slab"
keywords = [ "slab", "allocator", "no_std", "fixed", "generic" ]
categories = [ "memory-management", "data-structures", "no-std" ]
exclude = [ "/.*" ]
[features]
std = [ ]
default = [ "std" ]
range = [ ]
[build-dependencies]
autocfg = "1"
[dependencies]
serde = { version = "1.0", optional = true, default-features = false, features = [ "alloc" ] }
[dev-dependencies]
arrayvec = "0.7.4"
rustversion = "1"
serde = { version = "1", features = [ "derive" ] }
serde_test = "1"