diff options
author | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2019-12-04 09:57:08 -0500 |
---|---|---|
committer | Mike Gerwitz <mike.gerwitz@ryansg.com> | 2020-02-24 14:56:28 -0500 |
commit | 0147cb7cb4972405a683fed581533d3508c23a07 (patch) | |
tree | 5243b67f7647d697438b51f6eddddea29ed80eb8 /tamer/Cargo.toml | |
parent | 0acc21f16f098b2784b1382b82816889d694f91a (diff) | |
download | tame-0147cb7cb4972405a683fed581533d3508c23a07.tar.gz tame-0147cb7cb4972405a683fed581533d3508c23a07.tar.bz2 tame-0147cb7cb4972405a683fed581533d3508c23a07.zip |
Makefile.am (bench): New target
The configure script will determine if nightly is required for running
benchmarks, because `test` is currently an unstable feature.
Diffstat (limited to 'tamer/Cargo.toml')
-rw-r--r-- | tamer/Cargo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tamer/Cargo.toml b/tamer/Cargo.toml index 9880167..406afcb 100644 --- a/tamer/Cargo.toml +++ b/tamer/Cargo.toml @@ -17,6 +17,11 @@ opt-level = 3 [profile.release] lto = true +[profile.bench] +# We want our benchmarks to be representative of how well TAME will perform +# in a release. +lto = true + [dependencies] quick-xml = ">= 0.17.0" petgraph = ">= 0.4.13" |