mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* Bump the all group with 7 updates Bumps the all group with 7 updates: | Package | From | To | | --- | --- | --- | | [kanidm-hsm-crypto](https://github.com/kanidm/hsm-crypto) | `0.1.6` | `0.2.0` | | [base64](https://github.com/marshallpierce/rust-base64) | `0.21.7` | `0.22.1` | | [lru](https://github.com/jeromefroe/lru-rs) | `0.8.1` | `0.12.3` | | [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.84` | `1.0.85` | | [tokio](https://github.com/tokio-rs/tokio) | `1.37.0` | `1.38.0` | | [axum-auth](https://github.com/owez/axum-auth) | `0.4.1` | `0.7.0` | | [jsonschema](https://github.com/Stranger6667/jsonschema-rs) | `0.17.1` | `0.18.0` | Updates `kanidm-hsm-crypto` from 0.1.6 to 0.2.0 - [Commits](https://github.com/kanidm/hsm-crypto/commits) Updates `base64` from 0.21.7 to 0.22.1 - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.21.7...v0.22.1) Updates `lru` from 0.8.1 to 0.12.3 - [Changelog](https://github.com/jeromefroe/lru-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/jeromefroe/lru-rs/compare/0.8.1...0.12.3) Updates `proc-macro2` from 1.0.84 to 1.0.85 - [Release notes](https://github.com/dtolnay/proc-macro2/releases) - [Commits](https://github.com/dtolnay/proc-macro2/compare/1.0.84...1.0.85) Updates `tokio` from 1.37.0 to 1.38.0 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/compare/tokio-1.37.0...tokio-1.38.0) Updates `axum-auth` from 0.4.1 to 0.7.0 - [Commits](https://github.com/owez/axum-auth/commits) Updates `jsonschema` from 0.17.1 to 0.18.0 - [Release notes](https://github.com/Stranger6667/jsonschema-rs/releases) - [Changelog](https://github.com/Stranger6667/jsonschema-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stranger6667/jsonschema-rs/compare/rust-v0.17.1...rust-v0.18.0) --- updated-dependencies: - dependency-name: kanidm-hsm-crypto dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: lru dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: proc-macro2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: tokio dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: axum-auth dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: jsonschema dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> * updating for kanidm-hsm change --------- 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>
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 = []
|
|
# Enables webdriver tests, you need to be running a webdriver server
|
|
webdriver = []
|
|
|
|
[dependencies]
|
|
hyper-tls = { workspace = true }
|
|
http = { workspace = true }
|
|
kanidm_client = { workspace = true }
|
|
kanidm_proto = { workspace = true }
|
|
kanidmd_core = { workspace = true }
|
|
kanidmd_lib = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
openssl = { workspace = true }
|
|
regex = { workspace = true }
|
|
reqwest = { workspace = true, default-features = false, features = ["cookies"] }
|
|
serde = { workspace = true }
|
|
sketching = { workspace = true }
|
|
tempfile = { 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.14"
|
|
compact_jwt = { workspace = true }
|
|
escargot = "0.5.10"
|
|
# used for webdriver testing
|
|
fantoccini = { version = "0.19.3" }
|
|
futures = { workspace = true }
|
|
oauth2_ext = { workspace = true, default-features = false }
|
|
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.18.0"
|