-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
34 lines (29 loc) · 1.12 KB
/
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
[package]
name = "fusebox"
version = "0.8.3"
edition = "2021"
description = "Mostly safe and sound append-only collection of trait objects."
repository = "https://github.com/JohnDowson/fusebox"
license-file = "LICENSE"
categories = ["data-structures"]
keywords = ["trait", "dynamic", "collection", "heterogeneous"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
# bench = ["dep:criterion", "dep:rand", "dep:pprof", "dep:bumpalo"]
bench = ["dep:criterion", "dep:pprof", "dep:bumpalo"]
[dependencies]
criterion = { version = "0.4.0", features = ["html_reports"], optional = true }
rand = { version = "0.8.5", optional = false }
pprof = { version = "0.11.0", features = [
"flamegraph",
"criterion",
], optional = true }
bumpalo = { version = "3.11.1", features = ["boxed"], optional = true }
# [dependencies]
# criterion = { version = "0.4.0", features = ["html_reports"] }
# rand = { version = "0.8.5" }
# pprof = { version = "0.11.0", features = ["flamegraph", "criterion"] }
# bumpalo = { version = "3.11.1", features = ["boxed"] }
[[bench]]
name = "benchmark"
harness = false