time: [73.407 µs 76.145 µs 79.345 µs] change: [−40.126% −24.679% −3.8062%] (p = 0.04 < 0.05)
49 lines
1.2 KiB
TOML
49 lines
1.2 KiB
TOML
[package]
|
|
name = "rota"
|
|
version = "0.1.0"
|
|
description = "A Tauri App"
|
|
authors = ["you"]
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "rota_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[build-dependencies]
|
|
tauri-build = { version = "2", features = [] }
|
|
|
|
[dependencies]
|
|
tauri = { version = "2", features = [] }
|
|
tauri-plugin-opener = "2"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
chrono = "0.4.42"
|
|
itertools = "0.14.0"
|
|
rstest = "0.26.1"
|
|
tauri-plugin-log = "2"
|
|
log = "0.4.29"
|
|
rand = "0.9.2"
|
|
docx-rs = "0.4.18"
|
|
anyhow = "1.0.100"
|
|
rayon = "1.11"
|
|
|
|
[dev-dependencies]
|
|
criterion = { version = "0.8.1", features = ["html_reports"] }
|
|
|
|
[[bench]]
|
|
name = "rayon"
|
|
harness = false
|
|
|
|
[lints.clippy]
|
|
indexing_slicing = "deny"
|
|
fallible_impl_from = "deny"
|
|
wildcard_enum_match_arm = "deny"
|
|
unneeded_field_pattern = "deny"
|
|
fn_params_excessive_bools = "deny"
|
|
# must_use_candidate = "deny"
|