aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml.orig
blob: ae94bb403862fe22a68872e97ec9517272f1f0db (plain)
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
[package]

name = "slab"
# When releasing to crates.io:
# - Update version number
#   - README.md
# - Update CHANGELOG.md
# - Create git tag
version = "0.4.8"
authors = ["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/tokio-rs/slab"
keywords = ["slab", "allocator", "no_std"]
categories = ["memory-management", "data-structures", "no-std"]
exclude = ["/.*"]

[features]
std = []
default = ["std"]

[build-dependencies]
autocfg = "1"

[dependencies]
serde = { version = "1.0.95", optional = true, default-features = false, features = ["alloc"] }

[dev-dependencies]
rustversion = "1"
serde = { version = "1", features = ["derive"] }
serde_test = "1"