kanidm/server/testkit/Cargo.toml

70 lines
1.9 KiB
TOML
Raw Normal View History

2022-10-24 01:50:31 +02:00
[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 }
2022-10-24 01:50:31 +02:00
[lib]
name = "kanidmd_testkit"
path = "src/lib.rs"
test = true
doctest = false
2022-10-24 01:50:31 +02:00
[features]
default = []
# Enables webdriver tests, you need to be running a webdriver server
webdriver = []
2022-10-24 01:50:31 +02:00
[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",
] }
2022-10-24 01:50:31 +02:00
tracing = { workspace = true, features = ["attributes"] }
url = { workspace = true, features = ["serde"] }
2022-10-24 01:50:31 +02:00
[build-dependencies]
kanidm_build_profiles = { workspace = true }
2022-10-24 01:50:31 +02:00
[dev-dependencies]
assert_cmd = "2.0.14"
compact_jwt = { workspace = true }
Bump the all group across 1 directory with 5 updates (#2835) Bumps the all group with 5 updates in the / directory: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.4` | `4.5.7` | | [clap_complete](https://github.com/clap-rs/clap) | `4.5.2` | `4.5.5` | | [regex](https://github.com/rust-lang/regex) | `1.10.4` | `1.10.5` | | [url](https://github.com/servo/rust-url) | `2.5.0` | `2.5.1` | | [escargot](https://github.com/crate-ci/escargot) | `0.5.10` | `0.5.11` | Updates `clap` from 4.5.4 to 4.5.7 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.4...v4.5.7) Updates `clap_complete` from 4.5.2 to 4.5.5 - [Release notes](https://github.com/clap-rs/clap/releases) - [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md) - [Commits](https://github.com/clap-rs/clap/compare/clap_complete-v4.5.2...clap_complete-v4.5.5) Updates `regex` from 1.10.4 to 1.10.5 - [Release notes](https://github.com/rust-lang/regex/releases) - [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/regex/compare/1.10.4...1.10.5) Updates `url` from 2.5.0 to 2.5.1 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](https://github.com/servo/rust-url/compare/v2.5.0...v2.5.1) Updates `escargot` from 0.5.10 to 0.5.11 - [Changelog](https://github.com/crate-ci/escargot/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/escargot/compare/v0.5.10...v0.5.11) --- updated-dependencies: - dependency-name: clap dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: regex dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: url dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: escargot dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-06-11 16:47:49 +02:00
escargot = "0.5.11"
# used for webdriver testing
fantoccini = { version = "0.19.3" }
futures = { workspace = true }
2023-10-31 10:26:18 +01:00
oauth2_ext = { workspace = true, default-features = false }
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 }
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 }
Bump the all group with 7 updates (#2811) * 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>
2024-06-08 13:25:09 +02:00
jsonschema = "0.18.0"