kanidm/Cargo.toml

264 lines
7.8 KiB
TOML
Raw Normal View History

[profile.release]
debug = true
lto = "thin"
[workspace]
resolver = "2"
members = [
2023-03-01 04:10:52 +01:00
"proto",
"tools/cli",
"tools/iam_migrations/freeipa",
2023-06-13 06:26:50 +02:00
"tools/iam_migrations/ldap",
2023-03-01 04:10:52 +01:00
"tools/orca",
"unix_integration",
"unix_integration/nss_kanidm",
"unix_integration/pam_kanidm",
"server/web_ui/admin",
"server/web_ui/login_flows",
"server/web_ui/user",
"server/web_ui/shared",
2023-03-01 04:10:52 +01:00
"server/daemon",
"server/lib",
"server/lib-macros",
"server/core",
"server/testkit",
"server/testkit-macros",
"libs/client",
"libs/crypto",
"libs/file_permissions",
"libs/profiles",
"libs/sketching",
"libs/users",
]
2022-10-01 08:08:51 +02:00
[workspace.package]
2023-10-31 10:26:18 +01:00
version = "1.1.0-rc.15-dev"
2022-10-01 08:08:51 +02:00
authors = [
"William Brown <william@blackhats.net.au>",
"James Hodgkinson <james@terminaloutcomes.com>",
]
2023-02-01 03:50:20 +01:00
rust-version = "1.66"
2022-10-01 08:08:51 +02:00
edition = "2021"
license = "MPL-2.0"
homepage = "https://github.com/kanidm/kanidm/"
repository = "https://github.com/kanidm/kanidm/"
[patch.crates-io]
## As Kanidm maintains a number of libraries, sometimes during development we need to override them
## with local or git versions. This patch table allows quick uncommenting to achieve that.
# compact_jwt = { path = "../compact_jwt" }
# concread = { path = "../concread" }
# idlset = { path = "../idlset" }
# ldap3_client = { path = "../ldap3/client" }
# ldap3_proto = { path = "../ldap3/proto" }
# ldap3_client = { git = "https://github.com/kanidm/ldap3.git" }
# ldap3_proto = { git = "https://github.com/kanidm/ldap3.git" }
# scim_proto = { path = "../scim/proto" }
# scim_proto = { git = "https://github.com/kanidm/scim.git" }
base64urlsafedata = { git = "https://github.com/kanidm/webauthn-rs.git", rev = "2218d2055c0c900ef57b398423eee5e8d5521f4c" }
webauthn-authenticator-rs = { git = "https://github.com/kanidm/webauthn-rs.git", rev = "2218d2055c0c900ef57b398423eee5e8d5521f4c" }
webauthn-rs = { git = "https://github.com/kanidm/webauthn-rs.git", rev = "2218d2055c0c900ef57b398423eee5e8d5521f4c" }
webauthn-rs-core = { git = "https://github.com/kanidm/webauthn-rs.git", rev = "2218d2055c0c900ef57b398423eee5e8d5521f4c" }
webauthn-rs-proto = { git = "https://github.com/kanidm/webauthn-rs.git", rev = "2218d2055c0c900ef57b398423eee5e8d5521f4c" }
sshkey-attest = { git = "https://github.com/kanidm/webauthn-rs.git", rev = "2218d2055c0c900ef57b398423eee5e8d5521f4c" }
# base64urlsafedata = { path = "../webauthn-rs/base64urlsafedata" }
# webauthn-authenticator-rs = { path = "../webauthn-rs/webauthn-authenticator-rs" }
# webauthn-rs = { path = "../webauthn-rs/webauthn-rs" }
# webauthn-rs-core = { path = "../webauthn-rs/webauthn-rs-core" }
# webauthn-rs-proto = { path = "../webauthn-rs/webauthn-rs-proto" }
# sshkey-attest = { path = "../webauthn-rs/sshkey-attest" }
# kanidm-hsm-crypto = { path = "../hsm-crypto" }
2022-09-25 03:21:30 +02:00
[workspace.dependencies]
kanidmd_core = { path = "./server/core", version = "1.1.0-rc.15-dev" }
kanidmd_lib = { path = "./server/lib", version = "1.1.0-rc.15-dev" }
kanidmd_lib_macros = { path = "./server/lib-macros", version = "1.1.0-rc.15-dev" }
kanidmd_testkit = { path = "./server/testkit", version = "1.1.0-rc.15-dev" }
2023-10-31 10:26:18 +01:00
kanidm_build_profiles = { path = "./libs/profiles", version = "1.1.0-rc.15-dev" }
kanidm_client = { path = "./libs/client", version = "1.1.0-rc.15-dev" }
kanidm-hsm-crypto = "^0.1.1"
kanidm_lib_crypto = { path = "./libs/crypto", version = "1.1.0-rc.15-dev" }
kanidm_lib_file_permissions = { path = "./libs/file_permissions", version = "1.1.0-rc.15-dev" }
2023-10-31 10:26:18 +01:00
kanidm_proto = { path = "./proto", version = "1.1.0-rc.15-dev" }
kanidm_unix_int = { path = "./unix_integration", version = "1.1.0-rc.15-dev" }
kanidm_utils_users = { path = "./libs/users", version = "1.1.0-rc.15-dev" }
chore(deps): bump the all group with 5 updates (#2247) Bumps the all group with 5 updates: | Package | From | To | | --- | --- | --- | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [hashbrown](https://github.com/rust-lang/hashbrown) | `0.14.1` | `0.14.2` | | [regex](https://github.com/rust-lang/regex) | `1.10.1` | `1.10.2` | | [tracing](https://github.com/tokio-rs/tracing) | `0.1.39` | `0.1.40` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.5.0` | Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `hashbrown` from 0.14.1 to 0.14.2 - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.14.1...v0.14.2) Updates `regex` from 1.10.1 to 1.10.2 - [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.1...1.10.2) Updates `tracing` from 0.1.39 to 0.1.40 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.39...tracing-0.1.40) Updates `uuid` from 1.4.1 to 1.5.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.5.0) --- updated-dependencies: - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: hashbrown 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: tracing dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 02:12:00 +02:00
serde_with = "3.4.0"
argon2 = { version = "0.5.2", features = ["alloc"] }
async-recursion = "1.0.5"
async-trait = "^0.1.74"
axum = { version = "0.6.20", features = [
"form",
"headers",
"http2",
"json",
"macros",
"multipart",
"original-uri",
"query",
"tracing",
] }
Converting from tide to axum (#1797) * Starting to chase down testing * commenting out unused/inactive endpoints, adding more tests * clippyism * making clippy happy v2 * testing when things are not right * moar checkpoint * splitting up testkit things a bit * moving https -> tide * mad lad be crabbin * spawning like a frog * something something different spawning * woot it works ish * more server things * adding version header to requests * adding kopid_middleware * well that was supposed to be an hour... four later * more nonsense * carrying on with the conversion * first pass through the conversion is DONE! * less pub more better * session storage works better, fixed some paths * axum-csp version thing * try a typedheader * better openssl config things * updating lockfile * http2 * actually sending JSON when we say we will! * just about to do something dumb * flargl * more yak shaving * So many clippy-isms, fixing up a query handler bleep bloop * So many clippy-isms, fixing up a query handler bleep bloop * fmt * all tests pass including basic web logins and nav * so much clippyism * stripping out old comments * fmt * commenty things * stripping out tide * updates * de-tiding things * fmt * adding optional header matching ,thanks @cuberoot74088 * oauth2 stuff to match #1807 but in axum * CLIPPY IS FINALLY SATED * moving scim from /v1/scim to /scim * one day clippy will make sense * cleanups * removing sketching middleware * cleanup, strip a broken test endpoint (routemap), more clippy * docs fmt * pulling axum-csp from the wrong cargo.toml * docs fmt * fmt fixes
2023-07-05 14:26:39 +02:00
axum-csp = { version = "0.0.5" }
2022-10-01 08:08:51 +02:00
base32 = "^0.4.0"
chore(deps): bump the all group with 7 updates (#2266) Bumps the all group with 7 updates: | Package | From | To | | --- | --- | --- | | [base64](https://github.com/marshallpierce/rust-base64) | `0.21.4` | `0.21.5` | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.7` | | [clap_complete](https://github.com/clap-rs/clap) | `4.4.3` | `4.4.4` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [serde](https://github.com/serde-rs/serde) | `1.0.189` | `1.0.190` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.9` | `0.7.10` | Updates `base64` from 0.21.4 to 0.21.5 - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.21.4...v0.21.5) Updates `clap` from 4.4.6 to 4.4.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/v4.4.6...v4.4.7) Updates `clap_complete` from 4.4.3 to 4.4.4 - [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.4.3...clap_complete-v4.4.4) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `serde` from 1.0.189 to 1.0.190 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.189...v1.0.190) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tokio-util` from 0.7.9 to 0.7.10 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/commits) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - 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: futures 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: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: tokio-util 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>
2023-10-30 05:27:15 +01:00
base64 = "^0.21.5"
base64urlsafedata = "0.1.3"
bytes = "^1.5.0"
chore(deps): bump the all group with 7 updates (#2266) Bumps the all group with 7 updates: | Package | From | To | | --- | --- | --- | | [base64](https://github.com/marshallpierce/rust-base64) | `0.21.4` | `0.21.5` | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.7` | | [clap_complete](https://github.com/clap-rs/clap) | `4.4.3` | `4.4.4` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [serde](https://github.com/serde-rs/serde) | `1.0.189` | `1.0.190` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.9` | `0.7.10` | Updates `base64` from 0.21.4 to 0.21.5 - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.21.4...v0.21.5) Updates `clap` from 4.4.6 to 4.4.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/v4.4.6...v4.4.7) Updates `clap_complete` from 4.4.3 to 4.4.4 - [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.4.3...clap_complete-v4.4.4) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `serde` from 1.0.189 to 1.0.190 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.189...v1.0.190) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tokio-util` from 0.7.9 to 0.7.10 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/commits) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - 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: futures 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: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: tokio-util 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>
2023-10-30 05:27:15 +01:00
clap = { version = "^4.4.7", features = ["derive", "env"] }
clap_complete = "^4.4.4"
2022-12-21 00:53:57 +01:00
# Forced by saffron/cron
chrono = "^0.4.31"
2023-08-28 04:07:12 +02:00
compact_jwt = { version = "^0.2.10", default-features = false }
concread = "^0.4.3"
2022-12-21 00:53:57 +01:00
cron = "0.12.0"
2022-10-01 08:08:51 +02:00
crossbeam = "0.8.1"
criterion = "^0.5.1"
csv = "1.2.2"
dialoguer = "0.10.4"
chore(deps): bump the all group with 8 updates (#2293) Bumps the all group with 8 updates: | Package | From | To | | --- | --- | --- | | [dyn-clone](https://github.com/dtolnay/dyn-clone) | `1.0.14` | `1.0.16` | | [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.65` | | [libc](https://github.com/rust-lang/libc) | `0.2.149` | `0.2.150` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.95` | | [openssl](https://github.com/sfackler/rust-openssl) | `0.10.57` | `0.10.59` | | [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.37` | `0.4.38` | | [wasm-bindgen-test](https://github.com/rustwasm/wasm-bindgen) | `0.3.37` | `0.3.38` | | [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.65` | Updates `dyn-clone` from 1.0.14 to 1.0.16 - [Release notes](https://github.com/dtolnay/dyn-clone/releases) - [Commits](https://github.com/dtolnay/dyn-clone/compare/1.0.14...1.0.16) Updates `js-sys` from 0.3.64 to 0.3.65 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `libc` from 0.2.149 to 0.2.150 - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.149...0.2.150) Updates `openssl-sys` from 0.9.93 to 0.9.95 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.95) Updates `openssl` from 0.10.57 to 0.10.59 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.59) Updates `wasm-bindgen-futures` from 0.4.37 to 0.4.38 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `wasm-bindgen-test` from 0.3.37 to 0.3.38 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `web-sys` from 0.3.64 to 0.3.65 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) --- updated-dependencies: - dependency-name: dyn-clone dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: js-sys 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: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: openssl dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: wasm-bindgen-futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: wasm-bindgen-test dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: web-sys 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>
2023-11-05 22:24:21 +01:00
dyn-clone = "^1.0.16"
fernet = "^0.2.1"
filetime = "^0.2.22"
fs2 = "^0.4.3"
chore(deps): bump the all group with 7 updates (#2266) Bumps the all group with 7 updates: | Package | From | To | | --- | --- | --- | | [base64](https://github.com/marshallpierce/rust-base64) | `0.21.4` | `0.21.5` | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.7` | | [clap_complete](https://github.com/clap-rs/clap) | `4.4.3` | `4.4.4` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [serde](https://github.com/serde-rs/serde) | `1.0.189` | `1.0.190` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.9` | `0.7.10` | Updates `base64` from 0.21.4 to 0.21.5 - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.21.4...v0.21.5) Updates `clap` from 4.4.6 to 4.4.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/v4.4.6...v4.4.7) Updates `clap_complete` from 4.4.3 to 4.4.4 - [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.4.3...clap_complete-v4.4.4) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `serde` from 1.0.189 to 1.0.190 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.189...v1.0.190) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tokio-util` from 0.7.9 to 0.7.10 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/commits) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - 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: futures 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: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: tokio-util 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>
2023-10-30 05:27:15 +01:00
futures = "^0.3.29"
futures-concurrency = "^3.1.0"
futures-util = { version = "^0.3.21", features = ["sink"] }
2023-09-09 06:34:52 +02:00
gix = { version = "0.53.1", default-features = false }
gloo = "^0.8.1"
gloo-utils = "0.2.0"
chore(deps): bump the all group with 5 updates (#2247) Bumps the all group with 5 updates: | Package | From | To | | --- | --- | --- | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [hashbrown](https://github.com/rust-lang/hashbrown) | `0.14.1` | `0.14.2` | | [regex](https://github.com/rust-lang/regex) | `1.10.1` | `1.10.2` | | [tracing](https://github.com/tokio-rs/tracing) | `0.1.39` | `0.1.40` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.5.0` | Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `hashbrown` from 0.14.1 to 0.14.2 - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.14.1...v0.14.2) Updates `regex` from 1.10.1 to 1.10.2 - [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.1...1.10.2) Updates `tracing` from 0.1.39 to 0.1.40 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.39...tracing-0.1.40) Updates `uuid` from 1.4.1 to 1.5.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.5.0) --- updated-dependencies: - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: hashbrown 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: tracing dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 02:12:00 +02:00
hashbrown = { version = "0.14.2", features = ["serde", "inline-more", "ahash"] }
hex = "^0.4.3"
http = "0.2.9"
Converting from tide to axum (#1797) * Starting to chase down testing * commenting out unused/inactive endpoints, adding more tests * clippyism * making clippy happy v2 * testing when things are not right * moar checkpoint * splitting up testkit things a bit * moving https -> tide * mad lad be crabbin * spawning like a frog * something something different spawning * woot it works ish * more server things * adding version header to requests * adding kopid_middleware * well that was supposed to be an hour... four later * more nonsense * carrying on with the conversion * first pass through the conversion is DONE! * less pub more better * session storage works better, fixed some paths * axum-csp version thing * try a typedheader * better openssl config things * updating lockfile * http2 * actually sending JSON when we say we will! * just about to do something dumb * flargl * more yak shaving * So many clippy-isms, fixing up a query handler bleep bloop * So many clippy-isms, fixing up a query handler bleep bloop * fmt * all tests pass including basic web logins and nav * so much clippyism * stripping out old comments * fmt * commenty things * stripping out tide * updates * de-tiding things * fmt * adding optional header matching ,thanks @cuberoot74088 * oauth2 stuff to match #1807 but in axum * CLIPPY IS FINALLY SATED * moving scim from /v1/scim to /scim * one day clippy will make sense * cleanups * removing sketching middleware * cleanup, strip a broken test endpoint (routemap), more clippy * docs fmt * pulling axum-csp from the wrong cargo.toml * docs fmt * fmt fixes
2023-07-05 14:26:39 +02:00
hyper = { version = "0.14.27", features = ["full"] }
hyper-tls = "0.5.0"
2022-10-01 08:08:51 +02:00
idlset = "^0.2.4"
image = { version = "0.24.7", default-features = false, features = [
"gif",
"jpeg",
"webp",
] }
enum-iterator = "1.4.0"
chore(deps): bump the all group with 8 updates (#2293) Bumps the all group with 8 updates: | Package | From | To | | --- | --- | --- | | [dyn-clone](https://github.com/dtolnay/dyn-clone) | `1.0.14` | `1.0.16` | | [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.65` | | [libc](https://github.com/rust-lang/libc) | `0.2.149` | `0.2.150` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.95` | | [openssl](https://github.com/sfackler/rust-openssl) | `0.10.57` | `0.10.59` | | [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.37` | `0.4.38` | | [wasm-bindgen-test](https://github.com/rustwasm/wasm-bindgen) | `0.3.37` | `0.3.38` | | [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.65` | Updates `dyn-clone` from 1.0.14 to 1.0.16 - [Release notes](https://github.com/dtolnay/dyn-clone/releases) - [Commits](https://github.com/dtolnay/dyn-clone/compare/1.0.14...1.0.16) Updates `js-sys` from 0.3.64 to 0.3.65 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `libc` from 0.2.149 to 0.2.150 - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.149...0.2.150) Updates `openssl-sys` from 0.9.93 to 0.9.95 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.95) Updates `openssl` from 0.10.57 to 0.10.59 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.59) Updates `wasm-bindgen-futures` from 0.4.37 to 0.4.38 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `wasm-bindgen-test` from 0.3.37 to 0.3.38 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `web-sys` from 0.3.64 to 0.3.65 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) --- updated-dependencies: - dependency-name: dyn-clone dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: js-sys 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: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: openssl dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: wasm-bindgen-futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: wasm-bindgen-test dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: web-sys 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>
2023-11-05 22:24:21 +01:00
js-sys = "^0.3.65"
kanidmd_web_ui_shared = { path = "./server/web_ui/shared" }
2022-10-01 08:08:51 +02:00
# REMOVE this
lazy_static = "^1.4.0"
ldap3_client = "^0.3.5"
ldap3_proto = { version = "^0.3.5", features = ["serde"] }
2022-11-09 22:43:22 +01:00
chore(deps): bump the all group with 8 updates (#2293) Bumps the all group with 8 updates: | Package | From | To | | --- | --- | --- | | [dyn-clone](https://github.com/dtolnay/dyn-clone) | `1.0.14` | `1.0.16` | | [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.65` | | [libc](https://github.com/rust-lang/libc) | `0.2.149` | `0.2.150` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.95` | | [openssl](https://github.com/sfackler/rust-openssl) | `0.10.57` | `0.10.59` | | [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.37` | `0.4.38` | | [wasm-bindgen-test](https://github.com/rustwasm/wasm-bindgen) | `0.3.37` | `0.3.38` | | [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.65` | Updates `dyn-clone` from 1.0.14 to 1.0.16 - [Release notes](https://github.com/dtolnay/dyn-clone/releases) - [Commits](https://github.com/dtolnay/dyn-clone/compare/1.0.14...1.0.16) Updates `js-sys` from 0.3.64 to 0.3.65 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `libc` from 0.2.149 to 0.2.150 - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.149...0.2.150) Updates `openssl-sys` from 0.9.93 to 0.9.95 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.95) Updates `openssl` from 0.10.57 to 0.10.59 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.59) Updates `wasm-bindgen-futures` from 0.4.37 to 0.4.38 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `wasm-bindgen-test` from 0.3.37 to 0.3.38 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `web-sys` from 0.3.64 to 0.3.65 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) --- updated-dependencies: - dependency-name: dyn-clone dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: js-sys 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: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: openssl dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: wasm-bindgen-futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: wasm-bindgen-test dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: web-sys 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>
2023-11-05 22:24:21 +01:00
libc = "^0.2.150"
2022-10-01 08:08:51 +02:00
libnss = "^0.4.0"
libsqlite3-sys = "^0.25.0"
lodepng = "3.7.2"
2022-10-01 08:08:51 +02:00
lru = "^0.8.0"
mathru = "^0.13.0"
notify-debouncer-full = { version = "0.1" }
num_enum = "^0.5.11"
oauth2_ext = { version = "^4.1.0", package = "oauth2", default-features = false }
openssl-sys = "^0.9"
chore(deps): bump the all group with 8 updates (#2293) Bumps the all group with 8 updates: | Package | From | To | | --- | --- | --- | | [dyn-clone](https://github.com/dtolnay/dyn-clone) | `1.0.14` | `1.0.16` | | [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.65` | | [libc](https://github.com/rust-lang/libc) | `0.2.149` | `0.2.150` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.95` | | [openssl](https://github.com/sfackler/rust-openssl) | `0.10.57` | `0.10.59` | | [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.37` | `0.4.38` | | [wasm-bindgen-test](https://github.com/rustwasm/wasm-bindgen) | `0.3.37` | `0.3.38` | | [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.65` | Updates `dyn-clone` from 1.0.14 to 1.0.16 - [Release notes](https://github.com/dtolnay/dyn-clone/releases) - [Commits](https://github.com/dtolnay/dyn-clone/compare/1.0.14...1.0.16) Updates `js-sys` from 0.3.64 to 0.3.65 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `libc` from 0.2.149 to 0.2.150 - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.149...0.2.150) Updates `openssl-sys` from 0.9.93 to 0.9.95 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.95) Updates `openssl` from 0.10.57 to 0.10.59 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.59) Updates `wasm-bindgen-futures` from 0.4.37 to 0.4.38 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `wasm-bindgen-test` from 0.3.37 to 0.3.38 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `web-sys` from 0.3.64 to 0.3.65 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) --- updated-dependencies: - dependency-name: dyn-clone dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: js-sys 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: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: openssl dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: wasm-bindgen-futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: wasm-bindgen-test dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: web-sys 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>
2023-11-05 22:24:21 +01:00
openssl = "^0.10.59"
opentelemetry = { version = "0.20.0" }
opentelemetry_api = { version = "0.20.0", features = ["logs", "metrics"] }
opentelemetry-otlp = { version = "0.13.0", default-features = false, features = [
"serde",
"logs",
"metrics",
"http-proto",
"grpc-tonic",
] }
opentelemetry_sdk = "0.20.0"
opentelemetry-stdout = { version = "0.1.0", features = [
"logs",
"metrics",
"trace",
] }
tonic = "0.10.2"
tracing-opentelemetry = "0.21.0"
paste = "^1.0.14"
pkg-config = "^0.3.27"
proc-macro2 = "1.0.69"
2022-10-01 08:08:51 +02:00
qrcode = "^0.12.0"
2022-10-24 01:50:31 +02:00
quote = "1"
2022-10-01 08:08:51 +02:00
rand = "^0.8.5"
chore(deps): bump the all group with 5 updates (#2247) Bumps the all group with 5 updates: | Package | From | To | | --- | --- | --- | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [hashbrown](https://github.com/rust-lang/hashbrown) | `0.14.1` | `0.14.2` | | [regex](https://github.com/rust-lang/regex) | `1.10.1` | `1.10.2` | | [tracing](https://github.com/tokio-rs/tracing) | `0.1.39` | `0.1.40` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.5.0` | Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `hashbrown` from 0.14.1 to 0.14.2 - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.14.1...v0.14.2) Updates `regex` from 1.10.1 to 1.10.2 - [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.1...1.10.2) Updates `tracing` from 0.1.39 to 0.1.40 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.39...tracing-0.1.40) Updates `uuid` from 1.4.1 to 1.5.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.5.0) --- updated-dependencies: - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: hashbrown 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: tracing dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 02:12:00 +02:00
regex = "1.10.2"
reqwest = { version = "0.11.20", default-features = false, features = [
"cookies",
"json",
"gzip",
"native-tls",
"native-tls-alpn",
] }
rpassword = "^7.2.0"
rusqlite = { version = "^0.28.0", features = ["array", "bundled"] }
2023-01-25 07:09:54 +01:00
scim_proto = "^0.2.1"
sd-notify = "^0.4.1"
selinux = "^0.4.2"
chore(deps): bump the all group with 7 updates (#2266) Bumps the all group with 7 updates: | Package | From | To | | --- | --- | --- | | [base64](https://github.com/marshallpierce/rust-base64) | `0.21.4` | `0.21.5` | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.7` | | [clap_complete](https://github.com/clap-rs/clap) | `4.4.3` | `4.4.4` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [serde](https://github.com/serde-rs/serde) | `1.0.189` | `1.0.190` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.9` | `0.7.10` | Updates `base64` from 0.21.4 to 0.21.5 - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.21.4...v0.21.5) Updates `clap` from 4.4.6 to 4.4.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/v4.4.6...v4.4.7) Updates `clap_complete` from 4.4.3 to 4.4.4 - [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.4.3...clap_complete-v4.4.4) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `serde` from 1.0.189 to 1.0.190 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.189...v1.0.190) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tokio-util` from 0.7.9 to 0.7.10 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/commits) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - 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: futures 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: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: tokio-util 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>
2023-10-30 05:27:15 +01:00
serde = "^1.0.190"
2022-10-01 08:08:51 +02:00
serde_cbor = { version = "0.12.0-dev", package = "serde_cbor_2" }
serde_json = "^1.0.107"
serde-wasm-bindgen = "0.5"
2022-10-01 08:08:51 +02:00
shellexpand = "^2.1.2"
sketching = { path = "./libs/sketching", version = "1.1.0-rc.15-dev" }
2022-10-01 08:08:51 +02:00
smartstring = "^1.0.1"
smolset = "^1.3.1"
sshkey-attest = "^0.5.0-dev"
svg = "0.13.1"
syn = { version = "2.0.38", features = ["full"] }
chore(deps): bump the all group with 7 updates (#2266) Bumps the all group with 7 updates: | Package | From | To | | --- | --- | --- | | [base64](https://github.com/marshallpierce/rust-base64) | `0.21.4` | `0.21.5` | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.7` | | [clap_complete](https://github.com/clap-rs/clap) | `4.4.3` | `4.4.4` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [serde](https://github.com/serde-rs/serde) | `1.0.189` | `1.0.190` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.9` | `0.7.10` | Updates `base64` from 0.21.4 to 0.21.5 - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.21.4...v0.21.5) Updates `clap` from 4.4.6 to 4.4.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/v4.4.6...v4.4.7) Updates `clap_complete` from 4.4.3 to 4.4.4 - [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.4.3...clap_complete-v4.4.4) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `serde` from 1.0.189 to 1.0.190 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.189...v1.0.190) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tokio-util` from 0.7.9 to 0.7.10 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/commits) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - 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: futures 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: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: tokio-util 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>
2023-10-30 05:27:15 +01:00
tempfile = "3.8.1"
2023-03-01 04:10:52 +01:00
testkit-macros = { path = "./server/testkit-macros" }
time = { version = "^0.3.21", features = ["formatting", "local-offset"] }
2022-10-01 08:08:51 +02:00
tikv-jemallocator = "0.5"
tokio = "^1.33.0"
2022-10-01 08:08:51 +02:00
tokio-openssl = "^0.6.3"
chore(deps): bump the all group with 7 updates (#2266) Bumps the all group with 7 updates: | Package | From | To | | --- | --- | --- | | [base64](https://github.com/marshallpierce/rust-base64) | `0.21.4` | `0.21.5` | | [clap](https://github.com/clap-rs/clap) | `4.4.6` | `4.4.7` | | [clap_complete](https://github.com/clap-rs/clap) | `4.4.3` | `4.4.4` | | [futures](https://github.com/rust-lang/futures-rs) | `0.3.28` | `0.3.29` | | [serde](https://github.com/serde-rs/serde) | `1.0.189` | `1.0.190` | | [tempfile](https://github.com/Stebalien/tempfile) | `3.8.0` | `3.8.1` | | [tokio-util](https://github.com/tokio-rs/tokio) | `0.7.9` | `0.7.10` | Updates `base64` from 0.21.4 to 0.21.5 - [Changelog](https://github.com/marshallpierce/rust-base64/blob/master/RELEASE-NOTES.md) - [Commits](https://github.com/marshallpierce/rust-base64/compare/v0.21.4...v0.21.5) Updates `clap` from 4.4.6 to 4.4.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/v4.4.6...v4.4.7) Updates `clap_complete` from 4.4.3 to 4.4.4 - [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.4.3...clap_complete-v4.4.4) Updates `futures` from 0.3.28 to 0.3.29 - [Release notes](https://github.com/rust-lang/futures-rs/releases) - [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/futures-rs/compare/0.3.28...0.3.29) Updates `serde` from 1.0.189 to 1.0.190 - [Release notes](https://github.com/serde-rs/serde/releases) - [Commits](https://github.com/serde-rs/serde/compare/v1.0.189...v1.0.190) Updates `tempfile` from 3.8.0 to 3.8.1 - [Changelog](https://github.com/Stebalien/tempfile/blob/master/CHANGELOG.md) - [Commits](https://github.com/Stebalien/tempfile/commits) Updates `tokio-util` from 0.7.9 to 0.7.10 - [Release notes](https://github.com/tokio-rs/tokio/releases) - [Commits](https://github.com/tokio-rs/tokio/commits) --- updated-dependencies: - dependency-name: base64 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - 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: futures 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: tempfile dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: tokio-util 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>
2023-10-30 05:27:15 +01:00
tokio-util = "^0.7.10"
2022-10-01 08:08:51 +02:00
toml = "^0.5.11"
chore(deps): bump the all group with 5 updates (#2247) Bumps the all group with 5 updates: | Package | From | To | | --- | --- | --- | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [hashbrown](https://github.com/rust-lang/hashbrown) | `0.14.1` | `0.14.2` | | [regex](https://github.com/rust-lang/regex) | `1.10.1` | `1.10.2` | | [tracing](https://github.com/tokio-rs/tracing) | `0.1.39` | `0.1.40` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.5.0` | Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `hashbrown` from 0.14.1 to 0.14.2 - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.14.1...v0.14.2) Updates `regex` from 1.10.1 to 1.10.2 - [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.1...1.10.2) Updates `tracing` from 0.1.39 to 0.1.40 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.39...tracing-0.1.40) Updates `uuid` from 1.4.1 to 1.5.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.5.0) --- updated-dependencies: - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: hashbrown 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: tracing dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 02:12:00 +02:00
tracing = { version = "^0.1.40", features = [
"max_level_trace",
"release_max_level_debug",
] }
# tracing = { version = "^0.1.37" }
tracing-subscriber = { version = "^0.3.17", features = ["env-filter"] }
2023-08-01 07:12:35 +02:00
tracing-forest = "^0.1.6"
2022-10-01 08:08:51 +02:00
tss-esapi = "^7.4.0"
url = "^2.4.1"
urlencoding = "2.1.3"
utoipa = "4.0.0"
utoipa-swagger-ui = "4.0.0"
chore(deps): bump the all group with 5 updates (#2247) Bumps the all group with 5 updates: | Package | From | To | | --- | --- | --- | | [serde_with](https://github.com/jonasbb/serde_with) | `3.3.0` | `3.4.0` | | [hashbrown](https://github.com/rust-lang/hashbrown) | `0.14.1` | `0.14.2` | | [regex](https://github.com/rust-lang/regex) | `1.10.1` | `1.10.2` | | [tracing](https://github.com/tokio-rs/tracing) | `0.1.39` | `0.1.40` | | [uuid](https://github.com/uuid-rs/uuid) | `1.4.1` | `1.5.0` | Updates `serde_with` from 3.3.0 to 3.4.0 - [Release notes](https://github.com/jonasbb/serde_with/releases) - [Commits](https://github.com/jonasbb/serde_with/compare/v3.3.0...v3.4.0) Updates `hashbrown` from 0.14.1 to 0.14.2 - [Changelog](https://github.com/rust-lang/hashbrown/blob/master/CHANGELOG.md) - [Commits](https://github.com/rust-lang/hashbrown/compare/v0.14.1...v0.14.2) Updates `regex` from 1.10.1 to 1.10.2 - [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.1...1.10.2) Updates `tracing` from 0.1.39 to 0.1.40 - [Release notes](https://github.com/tokio-rs/tracing/releases) - [Commits](https://github.com/tokio-rs/tracing/compare/tracing-0.1.39...tracing-0.1.40) Updates `uuid` from 1.4.1 to 1.5.0 - [Release notes](https://github.com/uuid-rs/uuid/releases) - [Commits](https://github.com/uuid-rs/uuid/compare/1.4.1...1.5.0) --- updated-dependencies: - dependency-name: serde_with dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all - dependency-name: hashbrown 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: tracing dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: uuid dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2023-10-23 02:12:00 +02:00
uuid = "^1.5.0"
2022-10-01 08:08:51 +02:00
wasm-bindgen = "^0.2.86"
chore(deps): bump the all group with 8 updates (#2293) Bumps the all group with 8 updates: | Package | From | To | | --- | --- | --- | | [dyn-clone](https://github.com/dtolnay/dyn-clone) | `1.0.14` | `1.0.16` | | [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.65` | | [libc](https://github.com/rust-lang/libc) | `0.2.149` | `0.2.150` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.95` | | [openssl](https://github.com/sfackler/rust-openssl) | `0.10.57` | `0.10.59` | | [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.37` | `0.4.38` | | [wasm-bindgen-test](https://github.com/rustwasm/wasm-bindgen) | `0.3.37` | `0.3.38` | | [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.65` | Updates `dyn-clone` from 1.0.14 to 1.0.16 - [Release notes](https://github.com/dtolnay/dyn-clone/releases) - [Commits](https://github.com/dtolnay/dyn-clone/compare/1.0.14...1.0.16) Updates `js-sys` from 0.3.64 to 0.3.65 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `libc` from 0.2.149 to 0.2.150 - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.149...0.2.150) Updates `openssl-sys` from 0.9.93 to 0.9.95 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.95) Updates `openssl` from 0.10.57 to 0.10.59 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.59) Updates `wasm-bindgen-futures` from 0.4.37 to 0.4.38 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `wasm-bindgen-test` from 0.3.37 to 0.3.38 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `web-sys` from 0.3.64 to 0.3.65 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) --- updated-dependencies: - dependency-name: dyn-clone dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: js-sys 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: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: openssl dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: wasm-bindgen-futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: wasm-bindgen-test dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: web-sys 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>
2023-11-05 22:24:21 +01:00
wasm-bindgen-futures = "^0.4.38"
wasm-bindgen-test = "0.3.38"
2022-09-25 03:21:30 +02:00
webauthn-authenticator-rs = { version = "0.5.0-dev", features = [
"softpasskey",
"softtoken",
"mozilla",
] }
webauthn-rs = { version = "0.5.0-dev", features = ["preview-features"] }
webauthn-rs-core = "0.5.0-dev"
webauthn-rs-proto = "0.5.0-dev"
chore(deps): bump the all group with 8 updates (#2293) Bumps the all group with 8 updates: | Package | From | To | | --- | --- | --- | | [dyn-clone](https://github.com/dtolnay/dyn-clone) | `1.0.14` | `1.0.16` | | [js-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.65` | | [libc](https://github.com/rust-lang/libc) | `0.2.149` | `0.2.150` | | [openssl-sys](https://github.com/sfackler/rust-openssl) | `0.9.93` | `0.9.95` | | [openssl](https://github.com/sfackler/rust-openssl) | `0.10.57` | `0.10.59` | | [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.37` | `0.4.38` | | [wasm-bindgen-test](https://github.com/rustwasm/wasm-bindgen) | `0.3.37` | `0.3.38` | | [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.64` | `0.3.65` | Updates `dyn-clone` from 1.0.14 to 1.0.16 - [Release notes](https://github.com/dtolnay/dyn-clone/releases) - [Commits](https://github.com/dtolnay/dyn-clone/compare/1.0.14...1.0.16) Updates `js-sys` from 0.3.64 to 0.3.65 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `libc` from 0.2.149 to 0.2.150 - [Release notes](https://github.com/rust-lang/libc/releases) - [Commits](https://github.com/rust-lang/libc/compare/0.2.149...0.2.150) Updates `openssl-sys` from 0.9.93 to 0.9.95 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-sys-v0.9.93...openssl-sys-v0.9.95) Updates `openssl` from 0.10.57 to 0.10.59 - [Release notes](https://github.com/sfackler/rust-openssl/releases) - [Commits](https://github.com/sfackler/rust-openssl/compare/openssl-v0.10.57...openssl-v0.10.59) Updates `wasm-bindgen-futures` from 0.4.37 to 0.4.38 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `wasm-bindgen-test` from 0.3.37 to 0.3.38 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) Updates `web-sys` from 0.3.64 to 0.3.65 - [Release notes](https://github.com/rustwasm/wasm-bindgen/releases) - [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md) - [Commits](https://github.com/rustwasm/wasm-bindgen/commits) --- updated-dependencies: - dependency-name: dyn-clone dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: js-sys 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: openssl-sys dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: openssl dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: wasm-bindgen-futures dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: wasm-bindgen-test dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all - dependency-name: web-sys 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>
2023-11-05 22:24:21 +01:00
web-sys = "^0.3.65"
whoami = "^1.4.1"
walkdir = "2"
2022-10-01 08:08:51 +02:00
2023-01-08 03:34:30 +01:00
yew = "^0.20.0"
yew-router = "^0.17.0"
zxcvbn = "^2.2.2"
2022-08-01 07:52:01 +02:00
2023-03-30 03:41:52 +02:00
nonempty = "0.8.1"