mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* Bump jsonschema from 0.21.0 to 0.26.0 in the all group Bumps the all group with 1 update: [jsonschema](https://github.com/Stranger6667/jsonschema). Updates `jsonschema` from 0.21.0 to 0.26.0 - [Release notes](https://github.com/Stranger6667/jsonschema/releases) - [Changelog](https://github.com/Stranger6667/jsonschema/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stranger6667/jsonschema/compare/rust-v0.21.0...rust-v0.26.0) --- updated-dependencies: - dependency-name: jsonschema dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> * fixing up change in JSONschema errors --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: James Hodgkinson <james@terminaloutcomes.com> Co-authored-by: Firstyear <william@blackhats.net.au>
70 lines
1.9 KiB
TOML
70 lines
1.9 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"
|
|
test = true
|
|
doctest = false
|
|
|
|
[features]
|
|
# default = ["dev-oauth2-device-flow"]
|
|
# Enables webdriver tests, you need to be running a webdriver server
|
|
webdriver = []
|
|
|
|
dev-oauth2-device-flow = []
|
|
|
|
[dependencies]
|
|
http = { workspace = true }
|
|
kanidm_client = { workspace = true }
|
|
kanidm_proto = { workspace = true }
|
|
kanidmd_core = { workspace = true }
|
|
kanidmd_lib = { workspace = true }
|
|
openssl = { workspace = true }
|
|
reqwest = { workspace = true, default-features = false, features = ["cookies"] }
|
|
serde = { workspace = true }
|
|
sketching = { workspace = true }
|
|
testkit-macros = { workspace = true }
|
|
tokio = { workspace = true, features = [
|
|
"net",
|
|
"sync",
|
|
"io-util",
|
|
"macros",
|
|
"rt",
|
|
] }
|
|
tracing = { workspace = true, features = ["attributes"] }
|
|
url = { workspace = true, features = ["serde"] }
|
|
|
|
[build-dependencies]
|
|
kanidm_build_profiles = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
assert_cmd = "2.0.16"
|
|
compact_jwt = { workspace = true }
|
|
escargot = "0.5.12"
|
|
# used for webdriver testing
|
|
fantoccini = { version = "0.21.2" }
|
|
futures = { workspace = true }
|
|
oauth2_ext = { workspace = true, default-features = false, features = [
|
|
"reqwest",
|
|
] }
|
|
openssl = { workspace = true }
|
|
petgraph = { version = "0.6.4", features = ["serde", "serde-1"] }
|
|
serde_json = { workspace = true }
|
|
time = { workspace = true }
|
|
tokio-openssl = { workspace = true }
|
|
kanidm_lib_crypto = { workspace = true }
|
|
uuid = { workspace = true }
|
|
webauthn-authenticator-rs = { workspace = true }
|
|
jsonschema = "0.26.0"
|