mirror of
https://github.com/matrix-org/matrix-rust-sdk.git
synced 2026-04-27 18:51:13 -04:00
26 lines
920 B
TOML
26 lines
920 B
TOML
[package]
|
|
name = "benchmarks"
|
|
description = "Matrix SDK benchmarks"
|
|
edition = "2021"
|
|
license = "Apache-2.0"
|
|
rust-version = "1.56"
|
|
version = "1.0.0"
|
|
publish = false
|
|
|
|
[dependencies]
|
|
criterion = { version = "0.3.5", features = ["async", "async_tokio", "html_reports"] }
|
|
matrix-sdk-crypto = { path = "../crates/matrix-sdk-crypto", version = "0.5.0" }
|
|
matrix-sdk-sled = { path = "../crates/matrix-sdk-sled", version = "0.1.0", default-features = false, features = ["crypto-store"] }
|
|
matrix-sdk-test = { path = "../crates/matrix-sdk-test", version = "0.5.0" }
|
|
ruma = { git = "https://github.com/ruma/ruma", rev = "96155915f" }
|
|
serde_json = "1.0.79"
|
|
tempfile = "3.3.0"
|
|
tokio = { version = "1.17.0", default-features = false, features = ["rt-multi-thread"] }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
pprof = { version = "0.8.0", features = ["flamegraph", "criterion"] }
|
|
|
|
[[bench]]
|
|
name = "crypto_bench"
|
|
harness = false
|