aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorDaniel Schadt <kingdread@gmx.de>2023-01-11 23:37:46 +0100
committerDaniel Schadt <kingdread@gmx.de>2023-01-11 23:37:46 +0100
commit3826d00f339e87698f95dc24c33739e2880aac65 (patch)
treecc713233330efda0240299a5c72ef2d292b83272 /Cargo.toml
parent42cd7c82745e19234a6350e326064baf2454c717 (diff)
downloadhittekaart-3826d00f339e87698f95dc24c33739e2880aac65.tar.gz
hittekaart-3826d00f339e87698f95dc24c33739e2880aac65.tar.bz2
hittekaart-3826d00f339e87698f95dc24c33739e2880aac65.zip
add some first benchmarks
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml7
1 files changed, 7 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 1bc3a7f..3b48cca 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -5,6 +5,10 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+[[bench]]
+name = "hittebench"
+harness = false
+
[dependencies]
color-eyre = "0.6.2"
colorgrad = "0.6.2"
@@ -15,3 +19,6 @@ indicatif = "0.17.2"
nalgebra = "0.31.4"
num-traits = "0.2.15"
roxmltree = "0.17.0"
+
+[dev-dependencies]
+criterion = "0.4.0"