2020-06-10 04:07:43 +02:00
|
|
|
[profile.release]
|
|
|
|
debug = true
|
2021-04-14 01:56:40 +02:00
|
|
|
lto = "thin"
|
2020-06-10 04:07:43 +02:00
|
|
|
|
2019-09-04 03:06:37 +02:00
|
|
|
[workspace]
|
2023-08-28 02:25:05 +02:00
|
|
|
resolver = "2"
|
2019-09-04 03:06:37 +02:00
|
|
|
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",
|
2023-07-31 14:27:21 +02:00
|
|
|
"libs/sketching",
|
2023-08-21 09:16:43 +02:00
|
|
|
"libs/users",
|
2020-02-29 05:02:14 +01:00
|
|
|
]
|
|
|
|
|
2022-10-01 08:08:51 +02:00
|
|
|
[workspace.package]
|
2023-08-01 09:25:32 +02:00
|
|
|
version = "1.1.0-rc.14-dev"
|
2022-10-01 08:08:51 +02:00
|
|
|
authors = [
|
|
|
|
"William Brown <william@blackhats.net.au>",
|
|
|
|
"James Hodgkinson <james@terminaloutcomes.com>",
|
2023-08-21 09:16:43 +02:00
|
|
|
]
|
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/"
|
2021-03-13 03:33:15 +01:00
|
|
|
|
2023-08-28 02:25:05 +02:00
|
|
|
|
|
|
|
[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 = "429662e34d6e760af8cff68760567c6b56dbb2d5" }
|
|
|
|
webauthn-authenticator-rs = { git = "https://github.com/kanidm/webauthn-rs.git", rev = "429662e34d6e760af8cff68760567c6b56dbb2d5" }
|
|
|
|
webauthn-rs = { git = "https://github.com/kanidm/webauthn-rs.git", rev = "429662e34d6e760af8cff68760567c6b56dbb2d5" }
|
|
|
|
webauthn-rs-core = { git = "https://github.com/kanidm/webauthn-rs.git", rev = "429662e34d6e760af8cff68760567c6b56dbb2d5" }
|
|
|
|
webauthn-rs-proto = { git = "https://github.com/kanidm/webauthn-rs.git", rev = "429662e34d6e760af8cff68760567c6b56dbb2d5" }
|
|
|
|
|
|
|
|
# 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" }
|
|
|
|
|
2022-09-25 03:21:30 +02:00
|
|
|
[workspace.dependencies]
|
2023-08-01 09:25:32 +02:00
|
|
|
kanidmd_core = { path = "./server/core" }
|
|
|
|
kanidmd_lib = { path = "./server/lib" }
|
|
|
|
kanidmd_lib_macros = { path = "./server/lib-macros" }
|
|
|
|
kanidm_build_profiles = { path = "./libs/profiles", version = "1.1.0-rc.14-dev" }
|
|
|
|
kanidm_lib_crypto = { path = "./libs/crypto" }
|
|
|
|
kanidm_lib_file_permissions = { path = "./libs/file_permissions" }
|
|
|
|
kanidm_client = { path = "./libs/client", version = "1.1.0-rc.14-dev" }
|
|
|
|
kanidm_proto = { path = "./proto", version = "1.1.0-rc.14-dev" }
|
|
|
|
kanidm_unix_int = { path = "./unix_integration" }
|
|
|
|
kanidm_utils_users = { path = "./libs/users" }
|
|
|
|
|
2023-08-21 01:26:50 +02:00
|
|
|
serde_with = "3.3.0"
|
2023-07-17 01:03:22 +02:00
|
|
|
argon2 = { version = "0.5.1", features = ["alloc"] }
|
2023-06-05 14:03:52 +02:00
|
|
|
async-recursion = "1.0.4"
|
2023-08-13 23:57:32 +02:00
|
|
|
async-trait = "^0.1.73"
|
2023-08-21 09:16:43 +02:00
|
|
|
axum = { version = "0.6.20", features = [
|
|
|
|
"json",
|
|
|
|
"http2",
|
|
|
|
"macros",
|
|
|
|
"tracing",
|
|
|
|
"headers",
|
|
|
|
"original-uri",
|
|
|
|
"query",
|
|
|
|
"form",
|
|
|
|
"http2",
|
|
|
|
] }
|
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"
|
2023-08-28 00:26:17 +02:00
|
|
|
base64 = "^0.21.3"
|
2023-02-20 09:03:48 +01:00
|
|
|
base64urlsafedata = "0.1.3"
|
2022-11-27 23:19:30 +01:00
|
|
|
bytes = "^1.3.0"
|
2023-08-28 02:25:05 +02:00
|
|
|
clap = { version = "^4.4.0", features = ["derive", "env"] }
|
2023-08-28 00:35:29 +02:00
|
|
|
clap_complete = "^4.4.0"
|
2022-12-21 00:53:57 +01:00
|
|
|
# Forced by saffron/cron
|
2023-09-03 23:07:55 +02:00
|
|
|
chrono = "^0.4.28"
|
2023-08-28 04:07:12 +02:00
|
|
|
compact_jwt = { version = "^0.2.10", default-features = false }
|
2023-01-25 07:09:54 +01:00
|
|
|
concread = "^0.4.1"
|
2022-12-21 00:53:57 +01:00
|
|
|
cron = "0.12.0"
|
2022-10-01 08:08:51 +02:00
|
|
|
crossbeam = "0.8.1"
|
2023-07-31 14:27:21 +02:00
|
|
|
criterion = "^0.5.1"
|
2023-06-04 23:49:27 +02:00
|
|
|
csv = "1.2.2"
|
2023-04-10 00:58:57 +02:00
|
|
|
dialoguer = "0.10.4"
|
2023-08-21 01:53:25 +02:00
|
|
|
dyn-clone = "^1.0.13"
|
2023-04-09 22:57:44 +02:00
|
|
|
fernet = "^0.2.1"
|
2023-08-06 23:40:29 +02:00
|
|
|
filetime = "^0.2.22"
|
2023-04-26 13:09:18 +02:00
|
|
|
fs2 = "^0.4.3"
|
2023-04-03 14:47:08 +02:00
|
|
|
futures = "^0.3.28"
|
2022-10-10 00:49:09 +02:00
|
|
|
futures-concurrency = "^3.1.0"
|
2023-03-02 03:47:23 +01:00
|
|
|
futures-util = { version = "^0.3.21", features = ["sink"] }
|
2023-07-31 14:27:21 +02:00
|
|
|
git2 = "0.17.2"
|
2023-06-18 23:36:41 +02:00
|
|
|
gloo = "^0.8.1"
|
2023-06-18 23:00:10 +02:00
|
|
|
hashbrown = { version = "0.14.0", features = ["serde", "inline-more", "ahash"] }
|
2022-10-09 22:32:04 +02:00
|
|
|
hex = "^0.4.3"
|
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"
|
2023-08-21 09:16:43 +02:00
|
|
|
enum-iterator = "1.4.0"
|
2023-05-21 23:32:44 +02:00
|
|
|
js-sys = "^0.3.63"
|
2022-10-01 08:08:51 +02:00
|
|
|
# REMOVE this
|
|
|
|
lazy_static = "^1.4.0"
|
2023-07-18 00:49:22 +02:00
|
|
|
ldap3_client = "^0.3.5"
|
|
|
|
ldap3_proto = { version = "^0.3.5", features = ["serde"] }
|
2022-11-09 22:43:22 +01:00
|
|
|
|
2023-06-25 23:52:59 +02: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"
|
2023-06-15 05:24:53 +02:00
|
|
|
notify-debouncer-full = { version = "0.1" }
|
2023-02-27 22:44:16 +01:00
|
|
|
num_enum = "^0.5.11"
|
2022-11-21 07:51:39 +01:00
|
|
|
oauth2_ext = { version = "^4.1.0", package = "oauth2", default-features = false }
|
2022-11-04 05:48:00 +01:00
|
|
|
openssl-sys = "^0.9"
|
2023-08-28 00:52:31 +02:00
|
|
|
openssl = "^0.10.57"
|
2023-07-17 00:23:21 +02:00
|
|
|
paste = "^1.0.14"
|
2023-05-07 23:37:20 +02:00
|
|
|
pkg-config = "^0.3.27"
|
2023-07-16 23:32:02 +02:00
|
|
|
proc-macro2 = "1.0.66"
|
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"
|
2023-09-03 23:20:21 +02:00
|
|
|
regex = "1.9.5"
|
2023-08-28 00:52:55 +02:00
|
|
|
reqwest = { version = "0.11.20", default-features = false, features = [
|
2023-08-21 09:16:43 +02:00
|
|
|
"cookies",
|
|
|
|
"json",
|
|
|
|
"gzip",
|
|
|
|
"native-tls",
|
|
|
|
"native-tls-alpn",
|
|
|
|
] }
|
2022-11-27 23:16:51 +01:00
|
|
|
rpassword = "^7.2.0"
|
2022-10-01 08:08:51 +02:00
|
|
|
rusqlite = "^0.28.0"
|
2023-01-25 07:09:54 +01:00
|
|
|
|
2023-06-16 11:15:36 +02:00
|
|
|
scim_proto = "^0.2.1"
|
2023-07-25 04:23:47 +02:00
|
|
|
sd-notify = "^0.4.1"
|
2023-08-13 23:32:13 +02:00
|
|
|
selinux = "^0.4.2"
|
2023-08-27 23:47:37 +02:00
|
|
|
serde = "^1.0.188"
|
2022-10-01 08:08:51 +02:00
|
|
|
serde_cbor = { version = "0.12.0-dev", package = "serde_cbor_2" }
|
2023-08-21 00:12:08 +02:00
|
|
|
serde_json = "^1.0.105"
|
2023-07-10 00:55:10 +02:00
|
|
|
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"
|
2023-08-20 23:32:19 +02:00
|
|
|
syn = { version = "2.0.29", features = ["full"] }
|
2023-03-01 04:10:52 +01:00
|
|
|
testkit-macros = { path = "./server/testkit-macros" }
|
2023-05-25 00:25:16 +02:00
|
|
|
time = { version = "^0.3.21", features = ["formatting", "local-offset"] }
|
2022-10-01 08:08:51 +02:00
|
|
|
|
|
|
|
tikv-jemallocator = "0.5"
|
|
|
|
|
2023-08-21 00:29:33 +02:00
|
|
|
tokio = "^1.32.0"
|
2022-10-01 08:08:51 +02:00
|
|
|
tokio-openssl = "^0.6.3"
|
2023-05-01 00:44:48 +02:00
|
|
|
tokio-util = "^0.7.8"
|
2022-10-01 08:08:51 +02:00
|
|
|
|
2023-01-23 22:50:13 +01:00
|
|
|
toml = "^0.5.11"
|
2022-10-01 08:08:51 +02:00
|
|
|
touch = "^0.0.1"
|
2023-08-23 03:17:13 +02:00
|
|
|
tracing = { version = "^0.1.37", features = ["max_level_trace", "release_max_level_debug"] }
|
|
|
|
# tracing = { version = "^0.1.37" }
|
2023-04-24 01:36:20 +02:00
|
|
|
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
|
|
|
|
2023-06-21 12:33:01 +02:00
|
|
|
tss-esapi = "^7.2.0"
|
|
|
|
|
2023-09-03 23:28:03 +02:00
|
|
|
url = "^2.4.1"
|
2023-07-23 22:01:52 +02:00
|
|
|
urlencoding = "2.1.3"
|
2023-09-02 09:54:22 +02:00
|
|
|
users = "^0.11.0"
|
2023-07-23 23:19:04 +02:00
|
|
|
uuid = "^1.4.1"
|
2022-10-01 08:08:51 +02:00
|
|
|
|
2023-05-21 23:45:08 +02:00
|
|
|
wasm-bindgen = "^0.2.86"
|
2022-10-01 08:08:51 +02:00
|
|
|
wasm-bindgen-futures = "^0.4.30"
|
2023-05-15 00:54:17 +02:00
|
|
|
wasm-bindgen-test = "0.3.35"
|
2022-09-25 03:21:30 +02:00
|
|
|
|
2023-08-28 02:25:05 +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"
|
2023-08-23 03:17:13 +02:00
|
|
|
|
2023-05-14 23:37:22 +02:00
|
|
|
web-sys = "^0.3.62"
|
2023-07-02 22:42:46 +02:00
|
|
|
whoami = "^1.4.1"
|
2022-11-04 00:49:11 +01:00
|
|
|
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"
|
2023-03-20 08:06:08 +01:00
|
|
|
zxcvbn = "^2.2.2"
|
2022-08-01 07:52:01 +02:00
|
|
|
|
2023-03-30 03:41:52 +02:00
|
|
|
nonempty = "0.8.1"
|