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 believe there's an error in this file please file an
9# issue against the rust-lang/cargo repository. If you're
10# editing this file be aware that the upstream Cargo.toml
11# will likely look very different (and much more reasonable)
12
13[package]
14edition = "2018"
15name = "bumpalo"
16version = "3.7.0"
17authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
18description = "A fast bump allocation arena for Rust."
19documentation = "https://docs.rs/bumpalo"
20readme = "./README.md"
21categories = ["memory-management", "rust-patterns", "no-std"]
22license = "MIT/Apache-2.0"
23repository = "https://github.com/fitzgen/bumpalo"
24[package.metadata.docs.rs]
25all-features = true
26
27[lib]
28path = "src/lib.rs"
29bench = false
30
31[[test]]
32name = "try_alloc"
33path = "tests/try_alloc.rs"
34harness = false
35
36[[bench]]
37name = "benches"
38path = "benches/benches.rs"
39harness = false
40required-features = ["collections"]
41[dev-dependencies.criterion]
42version = "0.3.0"
43
44[dev-dependencies.quickcheck]
45version = "0.9.0"
46
47[dev-dependencies.rand]
48version = "0.7"
49
50[features]
51allocator_api = []
52boxed = []
53collections = []
54default = []
55