kanidm/tools/orca/Cargo.toml
Sebastiano Tocci 60e5b0970e
New orca models (#2909)
* Orca is happy, everyone is happy
* added model selection option for Orca and properly included opt.rs inside the file tree instead of using `include!` macro
* added variable login delay to both read and write models!
* Clippy and William are happier this way
* fixed toml syntax for member count and removed old person_count_by_group inside ProfileBuilder
* added strong typing for group names, in the future this should help adding CLI support
* added the `latency_measurer` model and improved the ActorModel trait
* Fixed lots of bugs and made clippy happier
* updated all models to use random backoff time for the login transition
2024-07-30 12:11:01 +10:00

48 lines
1.4 KiB
TOML

[package]
name = "orca"
description = "Orca - load testing for LDAP and Kanidm"
documentation = "https://docs.rs/kanidm/latest/kanidm/"
version = { workspace = true }
authors = { workspace = true }
rust-version = { workspace = true }
edition = { workspace = true }
license = { workspace = true }
homepage = { workspace = true }
repository = { workspace = true }
[[bin]]
name = "orca"
path = "src/main.rs"
test = true
doctest = false
[dependencies]
async-trait = { workspace = true }
chrono = { workspace = true }
clap = { workspace = true }
crossbeam = { workspace = true }
csv = { workspace = true }
futures-util = { workspace = true, features = ["sink"] }
hashbrown = { workspace = true }
idlset = { workspace = true }
kanidm_client = { workspace = true }
kanidm_proto = { workspace = true }
mathru = { workspace = true }
rand = { workspace = true }
rand_chacha = { workspace = true }
serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "sync"] }
toml = { workspace = true }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
uuid = { workspace = true, features = ["serde", "v4" ] }
[target.'cfg(not(any(target_family = "windows", target_os = "illumos")))'.dependencies]
mimalloc = { workspace = true }
[build-dependencies]
kanidm_build_profiles = { workspace = true }