2021-05-06 13:15:12 +02:00
|
|
|
[package]
|
|
|
|
name = "orca"
|
2022-08-02 05:14:25 +02:00
|
|
|
version = "1.1.0-alpha.9"
|
2021-05-06 13:15:12 +02:00
|
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
2022-03-31 06:12:53 +02:00
|
|
|
rust-version = "1.59"
|
2022-02-20 03:43:38 +01:00
|
|
|
edition = "2021"
|
2021-05-06 13:15:12 +02:00
|
|
|
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]
|
2022-06-19 23:26:52 +02:00
|
|
|
clap = { version = "^3.2", features = ["derive"] }
|
2022-08-18 02:36:45 +02:00
|
|
|
crossbeam = "0.8.1"
|
2022-04-27 05:35:26 +02:00
|
|
|
csv = "1.1.6"
|
2022-08-18 02:36:45 +02:00
|
|
|
dialoguer = "0.10.1"
|
|
|
|
futures-util = { version = "^0.3.21", features = ["sink"] }
|
|
|
|
kanidm_client = { path = "../kanidm_client" }
|
|
|
|
kanidm_proto = { path = "../kanidm_proto" }
|
|
|
|
ldap3_proto = "^0.2.3"
|
|
|
|
mathru = "^0.13.0"
|
|
|
|
openssl = "^0.10.41"
|
|
|
|
rand = "^0.8.5"
|
2022-08-09 00:50:26 +02:00
|
|
|
serde = { version = "^1.0.142", features = ["derive"] }
|
2022-08-08 01:05:28 +02:00
|
|
|
serde_json = "^1.0.83"
|
2022-09-19 04:16:05 +02:00
|
|
|
tokio = { version = "^1.21.1", features = ["rt-multi-thread"] }
|
2022-04-27 05:35:26 +02:00
|
|
|
tokio-openssl = "^0.6.3"
|
2022-09-12 00:45:20 +02:00
|
|
|
tokio-util = { version = "^0.7.4", features = ["codec"] }
|
2022-08-18 02:36:45 +02:00
|
|
|
toml = "^0.5.9"
|
|
|
|
tracing = "^0.1.35"
|
|
|
|
tracing-subscriber = "^0.3.14"
|
|
|
|
uuid = { version = "^1.1.2", features = ["serde", "v4" ] }
|
2022-05-03 05:24:39 +02:00
|
|
|
|
2022-05-31 06:13:21 +02:00
|
|
|
[target.'cfg(not(target_family = "windows"))'.dependencies]
|
|
|
|
tikv-jemallocator = "0.5"
|
|
|
|
|
|
|
|
|
2022-02-20 03:43:38 +01:00
|
|
|
[build-dependencies]
|
|
|
|
profiles = { path = "../profiles" }
|