mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
* otel can eprintln kthx * started python integration tests, features * more tests more things * adding heaps more things * updating docs * fixing python test * fixing errors, updating integration test * Add models for OAuth2, Person, ServiceAccount and add missing endpoints * Alias Group to GroupInfo to keep it retrocompatible * Fixed issues from review * adding oauth2rs_get_basic_secret * adding oauth2rs_get_basic_secret * Fixed mypy issues * adding more error logs * updating test scripts and configs * fixing tests and validating things * more errors --------- Co-authored-by: Dogeek <simon.bordeyne@gmail.com>
59 lines
1.8 KiB
TOML
59 lines
1.8 KiB
TOML
[package]
|
|
name = "daemon"
|
|
description = "Kanidm Server Daemon"
|
|
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 }
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[[bin]]
|
|
name = "kanidmd"
|
|
path = "src/main.rs"
|
|
test = true
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
kanidm_proto = { workspace = true }
|
|
kanidmd_core = { workspace = true }
|
|
kanidm_lib_file_permissions = { workspace = true }
|
|
sketching = { workspace = true }
|
|
fs2 = { workspace = true }
|
|
futures = { workspace = true }
|
|
|
|
clap = { workspace = true, features = ["env"] }
|
|
reqwest = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
tokio = { workspace = true, features = ["rt-multi-thread", "macros", "signal"] }
|
|
tokio-util = { workspace = true, features = ["codec"] }
|
|
toml = { workspace = true }
|
|
opentelemetry = { workspace = true, features = ["logs"] }
|
|
opentelemetry_api = { workspace = true, features = ["logs"] }
|
|
tracing = { workspace = true, features = [
|
|
"max_level_trace",
|
|
"release_max_level_debug",
|
|
] }
|
|
serde_json.workspace = true
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
sd-notify.workspace = true
|
|
|
|
[target.'cfg(target_family = "windows")'.dependencies]
|
|
whoami = { workspace = true }
|
|
|
|
[target.'cfg(not(target_family = "windows"))'.dependencies]
|
|
kanidm_utils_users = { workspace = true }
|
|
tikv-jemallocator = { workspace = true }
|
|
|
|
[build-dependencies]
|
|
serde = { workspace = true, features = ["derive"] }
|
|
clap = { workspace = true, features = ["derive"] }
|
|
clap_complete = { workspace = true }
|
|
kanidm_build_profiles = { workspace = true }
|