kanidm/orca/Cargo.toml

55 lines
1.2 KiB
TOML
Raw Normal View History

[package]
name = "orca"
2022-05-01 05:55:21 +02:00
version = "1.1.0-alpha.8"
authors = ["William Brown <william@blackhats.net.au>"]
rust-version = "1.59"
edition = "2021"
license = "MPL-2.0"
description = "Orca - load testing for LDAP and Kanidm"
documentation = "https://docs.rs/kanidm/latest/kanidm/"
homepage = "https://github.com/kanidm/kanidm/"
repository = "https://github.com/kanidm/kanidm/"
[[bin]]
name = "orca"
path = "src/main.rs"
[dependencies]
tracing = "^0.1.35"
tracing-subscriber = "^0.3.14"
2022-06-19 23:26:52 +02:00
clap = { version = "^3.2", features = ["derive"] }
2022-06-13 00:51:38 +02:00
uuid = { version = "^1.1.2", features = ["serde", "v4" ] }
2022-04-27 05:35:26 +02:00
csv = "1.1.6"
serde = { version = "^1.0.138", features = ["derive"] }
serde_json = "^1.0.82"
2022-04-27 05:35:26 +02:00
rand = "^0.8.5"
toml = "^0.5.9"
2022-04-27 05:35:26 +02:00
kanidm_proto = { path = "../kanidm_proto" }
kanidm_client = { path = "../kanidm_client" }
tokio = { version = "^1.19.1", features = ["rt-multi-thread"] }
tokio-util = { version = "^0.7.3", features = ["codec"] }
2022-04-27 05:35:26 +02:00
tokio-openssl = "^0.6.3"
futures-util = { version = "^0.3.21", features = ["sink"] }
openssl = "^0.10.38"
2022-04-27 05:35:26 +02:00
ldap3_proto = "^0.2.3"
2022-04-27 05:35:26 +02:00
crossbeam = "0.8.1"
mathru = "^0.13.0"
dialoguer = "0.10.1"
2022-05-03 05:24:39 +02:00
[target.'cfg(not(target_family = "windows"))'.dependencies]
tikv-jemallocator = "0.5"
[build-dependencies]
profiles = { path = "../profiles" }