kanidm/Cargo.toml

186 lines
5.5 KiB
TOML
Raw Normal View History

[profile.release]
debug = true
lto = "thin"
[workspace]
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",
"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-08-01 07:23:07 +02:00
version = "1.1.0-rc.14"
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/"
2022-09-25 03:21:30 +02:00
[workspace.dependencies]
argon2 = { version = "0.5.1", features = ["alloc"] }
async-recursion = "1.0.4"
async-trait = "^0.1.72"
axum = {version = "0.6.19", features = ["json", "http2", "macros", "tracing", "headers", "original-uri", "query", "form", "http2"]}
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"
base64 = "^0.21.0"
base64urlsafedata = "0.1.3"
bytes = "^1.3.0"
clap = { version = "^4.3.19", features = ["derive"] }
clap_complete = "^4.3.2"
2022-12-21 00:53:57 +01:00
# Forced by saffron/cron
chrono = "^0.4.26"
2023-02-01 07:21:00 +01:00
compact_jwt = { version = "^0.2.3", default-features = false }
2022-09-25 03:21:30 +02:00
# compact_jwt = { path = "../compact_jwt" }
2023-01-25 07:09:54 +01:00
concread = "^0.4.1"
# concread = { path = "../concread" }
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"
dyn-clone = "^1.0.12"
fernet = "^0.2.1"
filetime = "^0.2.21"
fs2 = "^0.4.3"
futures = "^0.3.28"
futures-concurrency = "^3.1.0"
futures-util = { version = "^0.3.21", features = ["sink"] }
git2 = "0.17.2"
gloo = "^0.8.1"
hashbrown = { version = "0.14.0", features = ["serde", "inline-more", "ahash"] }
hex = "^0.4.3"
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"
# idlset = { path = "../idlset" }
js-sys = "^0.3.63"
2023-03-01 04:10:52 +01:00
kanidmd_core = { path = "./server/core" }
kanidmd_lib = { path = "./server/lib" }
kanidmd_lib_macros = { path = "./server/lib-macros" }
kanidm_lib_crypto = { path = "./libs/crypto" }
kanidm_lib_file_permissions = { path = "./libs/file_permissions" }
kanidm_client = { path = "./libs/client", version = "1.1.0-alpha.11" }
kanidm_proto = { path = "./proto", version = "1.1.0-alpha.11" }
kanidm_unix_int = { path = "./unix_integration" }
kanidm_utils_users = { path = "./libs/users" }
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
2023-06-13 06:26:50 +02:00
# ldap3_client = { path = "../ldap3/client", version = "0.3.2" }
# ldap3_proto = { path = "../ldap3/proto", version = "^0.3.2", features = ["serde"] }
2023-01-25 07:09:54 +01:00
# ldap3_client = { git = "https://github.com/kanidm/ldap3.git", version = "0.3.0" }
# ldap3_proto = { git = "https://github.com/kanidm/ldap3.git", version = "0.3.0" }
2022-11-09 22:43:22 +01:00
libc = "^0.2.147"
2022-10-01 08:08:51 +02:00
libnss = "^0.4.0"
libsqlite3-sys = "^0.25.0"
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"
openssl = "^0.10.55"
paste = "^1.0.14"
pkg-config = "^0.3.27"
proc-macro2 = "1.0.66"
2023-03-01 04:10:52 +01:00
profiles = { path = "./libs/profiles" }
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"
regex = "1.9.1"
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
reqwest = { version = "0.11.18", default-features = false, features=["cookies", "json", "gzip", "native-tls", "native-tls-alpn"] }
rpassword = "^7.2.0"
2022-10-01 08:08:51 +02:00
rusqlite = "^0.28.0"
2023-01-25 07:09:54 +01:00
scim_proto = "^0.2.1"
# scim_proto = { path = "../scim/proto", version = "^0.2.1" }
2023-01-25 07:09:54 +01:00
# scim_proto = { git = "https://github.com/kanidm/scim.git", version = "0.1.1" }
sd-notify = "^0.4.1"
selinux = "^0.4.1"
serde = "^1.0.178"
2022-10-01 08:08:51 +02:00
serde_cbor = { version = "0.12.0-dev", package = "serde_cbor_2" }
serde_json = "^1.0.104"
serde-wasm-bindgen = "0.5"
2022-10-01 08:08:51 +02:00
shellexpand = "^2.1.2"
2023-03-01 04:10:52 +01:00
sketching = { path = "./libs/sketching" }
2022-10-01 08:08:51 +02:00
smartstring = "^1.0.1"
smolset = "^1.3.1"
sshkeys = "^0.3.1"
syn = { version = "2.0.27", features = ["full"] }
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.29.1"
2022-10-01 08:08:51 +02:00
tokio-openssl = "^0.6.3"
tokio-util = "^0.7.8"
2022-10-01 08:08:51 +02:00
toml = "^0.5.11"
2022-10-01 08:08:51 +02:00
touch = "^0.0.1"
2023-01-30 04:20:44 +01:00
# tracing = { version = "^0.1.37", features = ["max_level_trace", "release_max_level_debug"] }
tracing = { version = "^0.1.37" }
tracing-subscriber = { version = "^0.3.17", features = ["env-filter"] }
2022-10-01 08:08:51 +02:00
# tracing-forest = { path = "/Users/william/development/tracing-forest/tracing-forest" }
2023-08-01 07:12:35 +02:00
# tracing-forest = { git = "https://github.com/QnnOkabayashi/tracing-forest.git", rev = "77daf8c8abf010b87d45ece2bf656983c6f8cecb" }
tracing-forest = "^0.1.6"
2022-10-01 08:08:51 +02:00
tss-esapi = "^7.2.0"
url = "^2.4.0"
urlencoding = "2.1.3"
uuid = "^1.4.1"
2022-10-01 08:08:51 +02:00
wasm-bindgen = "^0.2.86"
2022-10-01 08:08:51 +02:00
wasm-bindgen-futures = "^0.4.30"
wasm-bindgen-test = "0.3.35"
2022-09-25 03:21:30 +02:00
2022-11-16 10:17:24 +01:00
webauthn-authenticator-rs = "0.4.8"
webauthn-rs = "0.4.8"
webauthn-rs-core = "0.4.8"
webauthn-rs-proto = "0.4.8"
2022-09-25 03:21:30 +02:00
# 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" }
web-sys = "^0.3.62"
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"
2022-08-01 07:52:01 +02:00
# link time optimization using using whole-program analysis
# lto = true