]> git.proxmox.com Git - rustc.git/blame - vendor/bumpalo/Cargo.toml
New upstream version 1.75.0+dfsg1
[rustc.git] / vendor / bumpalo / Cargo.toml
CommitLineData
0a29b90c
FG
1# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
2#
3# When uploading crates to the registry Cargo will automatically
4# "normalize" Cargo.toml files for maximal compatibility
5# with all versions of Cargo and also rewrite `path` dependencies
6# to registry (e.g., crates.io) dependencies.
7#
8# If you are reading this file be aware that the original Cargo.toml
9# will likely look very different (and much more reasonable).
10# See Cargo.toml.orig for the original contents.
11
12[package]
13edition = "2021"
fe692bf9 14rust-version = "1.60.0"
0a29b90c 15name = "bumpalo"
ed00b5ec 16version = "3.14.0"
0a29b90c
FG
17authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
18exclude = [
19 "/.github/*",
20 "/benches",
21 "/tests",
22 "valgrind.supp",
23 "bumpalo.png",
24]
25description = "A fast bump allocation arena for Rust."
26documentation = "https://docs.rs/bumpalo"
27readme = "README.md"
28categories = [
29 "memory-management",
30 "rust-patterns",
31 "no-std",
32]
ed00b5ec 33license = "MIT OR Apache-2.0"
0a29b90c 34repository = "https://github.com/fitzgen/bumpalo"
0a29b90c
FG
35
36[package.metadata.docs.rs]
37all-features = true
38
39[lib]
40path = "src/lib.rs"
41bench = false
42
43[[test]]
44name = "try_alloc"
45path = "tests/try_alloc.rs"
46harness = false
47
48[[bench]]
49name = "benches"
50path = "benches/benches.rs"
51harness = false
52required-features = ["collections"]
53
fe692bf9
FG
54[dependencies.allocator-api2]
55version = "0.2.8"
56optional = true
57default-features = false
58
0a29b90c
FG
59[dev-dependencies.criterion]
60version = "0.3.6"
61
62[dev-dependencies.quickcheck]
63version = "1.0.3"
64
65[dev-dependencies.rand]
66version = "0.8.5"
67
68[features]
69allocator_api = []
70boxed = []
71collections = []
72default = []
ed00b5ec 73std = []