mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* Starting to chase down testing * commenting out unused/inactive endpoints, adding more tests * clippyism * making clippy happy v2 * testing when things are not right * moar checkpoint * splitting up testkit things a bit * moving https -> tide * mad lad be crabbin * spawning like a frog * something something different spawning * woot it works ish * more server things * adding version header to requests * adding kopid_middleware * well that was supposed to be an hour... four later * more nonsense * carrying on with the conversion * first pass through the conversion is DONE! * less pub more better * session storage works better, fixed some paths * axum-csp version thing * try a typedheader * better openssl config things * updating lockfile * http2 * actually sending JSON when we say we will! * just about to do something dumb * flargl * more yak shaving * So many clippy-isms, fixing up a query handler bleep bloop * So many clippy-isms, fixing up a query handler bleep bloop * fmt * all tests pass including basic web logins and nav * so much clippyism * stripping out old comments * fmt * commenty things * stripping out tide * updates * de-tiding things * fmt * adding optional header matching ,thanks @cuberoot74088 * oauth2 stuff to match #1807 but in axum * CLIPPY IS FINALLY SATED * moving scim from /v1/scim to /scim * one day clippy will make sense * cleanups * removing sketching middleware * cleanup, strip a broken test endpoint (routemap), more clippy * docs fmt * pulling axum-csp from the wrong cargo.toml * docs fmt * fmt fixes
43 lines
1.2 KiB
TOML
43 lines
1.2 KiB
TOML
[package]
|
|
name = "kanidmd_testkit"
|
|
description = "Kanidm Server Test Framework"
|
|
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 }
|
|
|
|
[lib]
|
|
name = "kanidmd_testkit"
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
kanidm_client = { workspace = true }
|
|
kanidm_proto = { workspace = true }
|
|
kanidmd_core = { workspace = true }
|
|
kanidmd_lib = { workspace = true }
|
|
|
|
|
|
url = { workspace = true, features = ["serde"] }
|
|
reqwest = { workspace = true, default-features = false, features=["cookies"] }
|
|
sketching = { workspace = true }
|
|
testkit-macros = { workspace = true }
|
|
tracing = { workspace = true, features = ["attributes"] }
|
|
tokio = { workspace = true, features = ["net", "sync", "io-util", "macros"] }
|
|
|
|
|
|
[build-dependencies]
|
|
profiles = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
compact_jwt = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
webauthn-authenticator-rs = { workspace = true }
|
|
oauth2_ext = { workspace = true, default-features = false }
|
|
futures = { workspace = true }
|
|
time = { workspace = true }
|