-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (23 loc) · 901 Bytes
/
Cargo.toml
File metadata and controls
26 lines (23 loc) · 901 Bytes
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
[package]
name = "ml-bench"
version = "0.3.0"
edition = "2021"
authors = ["Gijs de Jong <gijs@dutchnaoteam.nl>"]
description = "A tool for benchmarking inference time of onnx models using the OpenVINO runtime."
[workspace.lints.rust]
missing_docs = "warn"
# TODO: replace this lint with cargo-machete, since it's broken
# https://github.com/rust-lang/rust/issues/57274
# unused_crate_dependencies = "warn"
[lints.clippy]
# enable clippy lints with priority -1
# so that we can override certain ones with "allow"
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
[dependencies]
clap = { version = "4.5.40", features = ["derive"] }
criterion = "0.6.0"
miette = { version = "7.6.0", features = ["fancy"] }
openvino = { git = "https://github.com/Rickvanderveen/openvino-rs.git", rev = "eef188a4f0fd52020bfe95822ead35f37ee4efaf", features = [
"runtime-linking",
] }