[package]
edition = "2024"
rust-version = "1.95"
name = "ffai-bench"
version = "0.7.1"
authors = ["Remade With Rust"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FFai's analyzer — one call to compare any engine against world standards, ledger-backed"
readme = "README.md"
keywords = [
"benchmark",
"wer",
"profiling",
"evaluation",
"ai",
]
categories = [
"development-tools",
"science",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Remade-With-Rust/FFai"
resolver = "2"
[lib]
name = "ffai_bench"
path = "src/lib.rs"
[[example]]
name = "footprint_calibrate"
path = "examples/footprint_calibrate.rs"
[[example]]
name = "great_gate"
path = "examples/great_gate.rs"
[[example]]
name = "prepare_carmenta_synth"
path = "examples/prepare_carmenta_synth.rs"
[[example]]
name = "prepare_harvard"
path = "examples/prepare_harvard.rs"
[[example]]
name = "prepare_librispeech"
path = "examples/prepare_librispeech.rs"
[[example]]
name = "prepare_phase_e"
path = "examples/prepare_phase_e.rs"
[[example]]
name = "score_detect"
path = "examples/score_detect.rs"
[[example]]
name = "suppress_optimizer"
path = "examples/suppress_optimizer.rs"
[dependencies.ffai-core]
version = "0.7.0"
[dependencies.ffai-media]
version = "0.6.4"
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.toml]
version = "0.8"
[dev-dependencies.clap]
version = "4"
features = ["derive"]
[dev-dependencies.csv]
version = "1.3"
[dev-dependencies.ffai-argus]
version = "0.6.2"
[dev-dependencies.fontdue]
version = "0.9"
[dev-dependencies.png]
version = "0.17"
[lints.clippy]
borrow_as_ptr = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
default_trait_access = "allow"
derive_partial_eq_without_eq = "allow"
format_collect = "allow"
format_push_string = "allow"
if_not_else = "allow"
items_after_statements = "allow"
literal_string_with_formatting_args = "allow"
manual_midpoint = "allow"
match_same_arms = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
nonminimal_bool = "allow"
option_if_let_else = "allow"
or_fun_call = "allow"
ptr_as_ptr = "allow"
redundant_clone = "allow"
redundant_closure_for_method_calls = "allow"
ref_as_ptr = "allow"
similar_names = "allow"
struct_field_names = "allow"
suboptimal_flops = "allow"
too_long_first_doc_paragraph = "allow"
too_many_lines = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"