mirror of
https://github.com/tauri-apps/tauri.git
synced 2026-04-01 10:01:07 +02:00
* chore: promote to v2 stable - deletes all RC change files - adds a new change file to promote all packages to v2 stable - manually fix the tauri-driver, tauri-macos-sign, tauri-bundler versions so the next covector bump will move them to 2.0.0 - manually patch the metadata-v2.json file so the next covector update will mark all packages as 2.0.0 * ignore audit vuln without fixes * bump msrv to 1.78 * run covector version * fix sync lockfile covector * #[allow(clippy::manual_inspect)]
25 lines
602 B
TOML
25 lines
602 B
TOML
[package]
|
|
name = "tauri_bench"
|
|
version = "0.1.0"
|
|
authors = ["Tauri Programme within The Commons Conservancy"]
|
|
edition = "2021"
|
|
rust-version = "1.78"
|
|
license = "Apache-2.0 OR MIT"
|
|
description = "Cross-platform WebView rendering library"
|
|
repository = "https://github.com/tauri-apps/wry"
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.40"
|
|
time = { version = "0.3", features = ["formatting"] }
|
|
tempfile = "3.2.0"
|
|
serde_json = "1.0"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
[[bin]]
|
|
name = "run_benchmark"
|
|
path = "src/run_benchmark.rs"
|
|
|
|
[[bin]]
|
|
name = "build_benchmark_jsons"
|
|
path = "src/build_benchmark_jsons.rs"
|