mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 12:37:00 +01:00
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>
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.11"
|
|
# 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"
|