Bug 1664774 [wpt PR 25514] - Python 3: make the new introduced image.py file python...
[gecko.git] / third_party / rust / bumpalo / Cargo.toml
blob3be9f0f2c96db2055dddb108eb44ba8470e96029
1 # THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
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
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)
13 [package]
14 edition = "2018"
15 name = "bumpalo"
16 version = "3.4.0"
17 authors = ["Nick Fitzgerald <fitzgen@gmail.com>"]
18 description = "A fast bump allocation arena for Rust."
19 documentation = "https://docs.rs/bumpalo"
20 readme = "./README.md"
21 categories = ["memory-management", "rust-patterns", "no-std"]
22 license = "MIT/Apache-2.0"
23 repository = "https://github.com/fitzgen/bumpalo"
24 [package.metadata.docs.rs]
25 all-features = true
27 [lib]
28 path = "src/lib.rs"
29 bench = false
31 [[test]]
32 name = "try_alloc"
33 path = "tests/try_alloc.rs"
34 harness = false
36 [[bench]]
37 name = "benches"
38 path = "benches/benches.rs"
39 harness = false
40 required-features = ["collections"]
41 [dev-dependencies.criterion]
42 version = "0.3.0"
44 [dev-dependencies.quickcheck]
45 version = "0.9.0"
47 [dev-dependencies.rand]
48 version = "0.7"
50 [features]
51 boxed = []
52 collections = []
53 default = []