mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Bumps the all group with 8 updates: | Package | From | To | | --- | --- | --- | | [clap_complete](https://github.com/clap-rs/clap) | `4.5.18` | `4.5.23` | | [libc](https://github.com/rust-lang/libc) | `0.2.157` | `0.2.158` | | [quote](https://github.com/dtolnay/quote) | `1.0.36` | `1.0.37` | | [reqwest](https://github.com/seanmonstar/reqwest) | `0.12.5` | `0.12.7` | | [serde](https://github.com/serde-rs/serde) | `1.0.208` | `1.0.209` | | [serde_json](https://github.com/serde-rs/json) | `1.0.125` | `1.0.127` | | [syn](https://github.com/dtolnay/syn) | `2.0.75` | `2.0.76` | | [jsonschema](https://github.com/Stranger6667/jsonschema-rs) | `0.18.0` | `0.18.1` | Updates `clap_complete` from 4.5.18 to 4.5.23 - [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.18...clap_complete-v4.5.23) Updates `libc` from 0.2.157 to 0.2.158 - [Release notes](https://github.com/rust-lang/libc/releases) - [Changelog](https://github.com/rust-lang/libc/blob/0.2.158/CHANGELOG.md) - [Commits](https://github.com/rust-lang/libc/compare/0.2.157...0.2.158) Updates `quote` from 1.0.36 to 1.0.37 - [Release notes](https://github.com/dtolnay/quote/releases) - [Commits](https://github.com/dtolnay/quote/compare/1.0.36...1.0.37) Updates `reqwest` from 0.12.5 to 0.12.7 - [Release notes](https://github.com/seanmonstar/reqwest/releases) - [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md) - [Commits](https://github.com/seanmonstar/reqwest/compare/v0.12.5...v0.12.7) Updates `serde` from 1.0.208 to 1.0.209 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.208...v1.0.209) Updates `serde_json` from 1.0.125 to 1.0.127 - [Release notes](https://github.com/serde-rs/json/releases) - [Commits](https://github.com/serde-rs/json/compare/1.0.125...1.0.127) Updates `syn` from 2.0.75 to 2.0.76 - [Release notes](https://github.com/dtolnay/syn/releases) - [Commits](https://github.com/dtolnay/syn/compare/2.0.75...2.0.76) Updates `jsonschema` from 0.18.0 to 0.18.1 - [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.18.0...rust-v0.18.1) --- updated-dependencies: - dependency-name: clap_complete dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: libc dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: quote dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: reqwest dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: serde dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: serde_json dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: syn dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: jsonschema 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.16"
|
|
compact_jwt = { workspace = true }
|
|
escargot = "0.5.12"
|
|
# used for webdriver testing
|
|
fantoccini = { version = "0.21.1" }
|
|
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.1"
|