2022-10-24 01:50:31 +02:00
|
|
|
[package]
|
|
|
|
name = "kanidmd_testkit"
|
|
|
|
description = "Kanidm Server Test Framework"
|
|
|
|
documentation = "https://docs.rs/kanidm/latest/kanidm/"
|
|
|
|
|
2023-06-27 03:38:22 +02:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
rust-version = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
2022-10-24 01:50:31 +02:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "kanidmd_testkit"
|
|
|
|
path = "src/lib.rs"
|
2023-10-22 13:16:42 +02:00
|
|
|
test = true
|
|
|
|
doctest = false
|
2022-10-24 01:50:31 +02:00
|
|
|
|
2023-07-10 08:49:09 +02:00
|
|
|
[features]
|
|
|
|
default = []
|
|
|
|
# Enables webdriver tests, you need to be running a webdriver server
|
2023-10-30 07:10:54 +01:00
|
|
|
webdriver = []
|
2023-07-10 08:49:09 +02:00
|
|
|
|
2022-10-24 01:50:31 +02:00
|
|
|
[dependencies]
|
2023-10-30 07:10:54 +01:00
|
|
|
hyper-tls = { workspace = true }
|
|
|
|
http = { workspace = true }
|
2023-06-27 03:38:22 +02:00
|
|
|
kanidm_client = { workspace = true }
|
|
|
|
kanidm_proto = { workspace = true }
|
|
|
|
kanidmd_core = { workspace = true }
|
|
|
|
kanidmd_lib = { workspace = true }
|
2023-10-30 07:10:54 +01:00
|
|
|
lazy_static = { workspace = true }
|
|
|
|
openssl = { workspace = true }
|
|
|
|
regex = { workspace = true }
|
2023-08-14 00:51:44 +02:00
|
|
|
reqwest = { workspace = true, default-features = false, features = ["cookies"] }
|
2023-10-30 07:10:54 +01:00
|
|
|
serde = { workspace = true }
|
2023-06-27 03:38:22 +02:00
|
|
|
sketching = { workspace = true }
|
2023-10-30 07:10:54 +01:00
|
|
|
tempfile = { workspace = true }
|
2023-06-27 03:38:22 +02:00
|
|
|
testkit-macros = { workspace = true }
|
2023-10-30 07:10:54 +01:00
|
|
|
tokio = { workspace = true, features = [
|
|
|
|
"net",
|
|
|
|
"sync",
|
|
|
|
"io-util",
|
|
|
|
"macros",
|
|
|
|
"rt",
|
|
|
|
] }
|
2022-10-24 01:50:31 +02:00
|
|
|
tracing = { workspace = true, features = ["attributes"] }
|
2023-10-30 07:10:54 +01:00
|
|
|
url = { workspace = true, features = ["serde"] }
|
2022-10-24 01:50:31 +02:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-08-01 09:25:32 +02:00
|
|
|
kanidm_build_profiles = { workspace = true }
|
2022-10-24 01:50:31 +02:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2024-08-12 14:58:35 +02:00
|
|
|
assert_cmd = "2.0.16"
|
2023-06-27 03:38:22 +02:00
|
|
|
compact_jwt = { workspace = true }
|
2024-07-29 04:02:59 +02:00
|
|
|
escargot = "0.5.12"
|
2023-10-30 07:10:54 +01:00
|
|
|
# used for webdriver testing
|
2024-08-04 23:57:19 +02:00
|
|
|
fantoccini = { version = "0.21.1" }
|
2023-06-27 03:38:22 +02:00
|
|
|
futures = { workspace = true }
|
2023-10-31 10:26:18 +01:00
|
|
|
oauth2_ext = { workspace = true, default-features = false }
|
2023-09-29 04:02:13 +02:00
|
|
|
openssl = { workspace = true }
|
2023-10-31 10:26:18 +01:00
|
|
|
petgraph = { version = "0.6.4", features = ["serde", "serde-1"] }
|
|
|
|
serde_json = { workspace = true }
|
|
|
|
time = { workspace = true }
|
2023-09-29 04:02:13 +02:00
|
|
|
tokio-openssl = { workspace = true }
|
|
|
|
kanidm_lib_crypto = { workspace = true }
|
|
|
|
uuid = { workspace = true }
|
2023-10-31 10:26:18 +01:00
|
|
|
webauthn-authenticator-rs = { workspace = true }
|
2024-08-25 23:36:12 +02:00
|
|
|
jsonschema = "0.18.1"
|