matrix-rust-sdk/benchmarks/Cargo.toml

26 lines
907 B
TOML
Raw Normal View History

[package]
name = "benchmarks"
description = "Matrix SDK benchmarks"
edition = "2021"
license = "Apache-2.0"
2022-11-03 14:58:49 +00:00
rust-version = { workspace = true }
version = "1.0.0"
publish = false
[dependencies]
2022-11-04 09:54:29 +00:00
criterion = { version = "0.4.0", features = ["async", "async_tokio", "html_reports"] }
2022-09-28 08:15:37 +00:00
matrix-sdk-crypto = { path = "../crates/matrix-sdk-crypto", version = "0.6.0"}
matrix-sdk-sled = { path = "../crates/matrix-sdk-sled", version = "0.2.0", default-features = false, features = ["crypto-store"] }
matrix-sdk-test = { path = "../testing/matrix-sdk-test", version = "0.6.0"}
ruma = { workspace = true }
serde_json = { workspace = true }
2022-04-27 10:58:56 +00:00
tempfile = "3.3.0"
tokio = { version = "1.24.2", default-features = false, features = ["rt-multi-thread"] }
[target.'cfg(target_os = "linux")'.dependencies]
2022-11-04 09:54:29 +00:00
pprof = { version = "0.11.0", features = ["flamegraph", "criterion"] }
[[bench]]
name = "crypto_bench"
harness = false