mirror of
https://github.com/netbirdio/IronRDP.git
synced 2026-05-22 18:43:12 -07:00
33 lines
653 B
TOML
33 lines
653 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.0.1"
|
|
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
|