mirror of
https://github.com/Devolutions/IronRDP.git
synced 2025-12-23 12:26:46 +00:00
Some checks are pending
CI / Check formatting (push) Waiting to run
CI / Check typos (push) Waiting to run
CI / Checks [linux] (push) Blocked by required conditions
CI / Checks [macos] (push) Blocked by required conditions
CI / Checks [windows] (push) Blocked by required conditions
CI / Fuzzing (push) Blocked by required conditions
CI / Web Client (push) Blocked by required conditions
CI / FFI (push) Blocked by required conditions
CI / Success (push) Blocked by required conditions
Release crates / Release crates (push) Waiting to run
Coverage / Coverage Report (push) Waiting to run
Release crates / Open release PR (push) Waiting to run
32 lines
651 B
TOML
32 lines
651 B
TOML
[package]
|
|
name = "benches"
|
|
version = "0.0.0"
|
|
description = "IronRDP benchmarks"
|
|
publish = false
|
|
edition.workspace = true
|
|
|
|
[[bin]]
|
|
name = "perfenc"
|
|
path = "src/perfenc.rs"
|
|
|
|
[features]
|
|
default = ["qoi", "qoiz"]
|
|
qoi = ["ironrdp/qoi"]
|
|
qoiz = ["ironrdp/qoiz"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.99"
|
|
async-trait = "0.1.89"
|
|
bytesize = "2.3"
|
|
ironrdp = { path = "../crates/ironrdp", features = [
|
|
"server",
|
|
"pdu",
|
|
"__bench",
|
|
] }
|
|
pico-args = "0.5.0"
|
|
tokio = { version = "1", features = ["sync", "fs", "time"] }
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
|
|
tracing = { version = "0.1", features = ["log"] }
|
|
|
|
[lints]
|
|
workspace = true
|