-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
37 lines (30 loc) · 864 Bytes
/
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
35
36
37
[package]
name = "bevy-bencher"
authors = ["BD103"]
edition = "2021"
description = "Continuous benchmarks for Bevy to track its performance over time."
repository = "https://github.com/TheBevyFlock/bevy-bencher"
license = "MIT OR Apache-2.0"
publish = false
# Do not auto-discover benchmarks, we must specify them manually.
autobenches = false
[dev-dependencies]
bevy.workspace = true
# Benchmarking library.
criterion = "0.5.1"
# Seedable PRNG
rand = { version = "0.8.5", default-features = false, features = ["small_rng"] }
[[bench]]
name = "main"
harness = false
[workspace]
members = ["file-size"]
[workspace.dependencies]
# Bevy, on the latest commit.
bevy = { git = "https://github.com/bevyengine/bevy.git" }
[profile.file-size]
inherits = "release"
# Fast link time optimizations.
lto = "thin"
# Strip debuginfo and symbols from binary.
strip = true