mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 04:57:00 +01:00
this completely removes actix and actix-web from the codebase, replacing it with tokio and http-rs/tide. Due to a current temporary limit in tokio parts with openssl/libressl, rustls is used for the webserver, but I'll change this back once that issue is resolved. For now there are likely some other clippy issues, but the next step now is that I can finally run cargo outdated and update this and the other kanidm/* deps to be up to date due to no longer being held back on versions by actix. So following this, I need to finish clippy warnings, and run cargo outdated and cargo audit.
76 lines
1.7 KiB
TOML
76 lines
1.7 KiB
TOML
[package]
|
|
name = "kanidm_unix_int"
|
|
version = "1.1.0-alpha"
|
|
authors = ["William Brown <william@blackhats.net.au>"]
|
|
edition = "2018"
|
|
license = "MPL-2.0"
|
|
description = "Kanidm Unix Integration Clients"
|
|
documentation = "https://docs.rs/kanidm/latest/kanidm/"
|
|
homepage = "https://github.com/kanidm/kanidm/"
|
|
repository = "https://github.com/kanidm/kanidm/"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "kanidm_unix_common"
|
|
path = "src/lib.rs"
|
|
|
|
[[bin]]
|
|
name = "kanidm_unixd"
|
|
path = "src/daemon.rs"
|
|
|
|
[[bin]]
|
|
name = "kanidm_ssh_authorizedkeys"
|
|
path = "src/ssh_authorizedkeys.rs"
|
|
|
|
[[bin]]
|
|
name = "kanidm_cache_invalidate"
|
|
path = "src/cache_invalidate.rs"
|
|
|
|
[[bin]]
|
|
name = "kanidm_cache_clear"
|
|
path = "src/cache_clear.rs"
|
|
|
|
[[bin]]
|
|
name = "kanidm_unixd_status"
|
|
path = "src/daemon_status.rs"
|
|
|
|
[[bin]]
|
|
name = "kanidm_test_auth"
|
|
path = "src/test_auth.rs"
|
|
|
|
[dependencies]
|
|
kanidm_client = { path = "../kanidm_client", version = "1.1.0-alpha" }
|
|
kanidm_proto = { path = "../kanidm_proto", version = "1.1.0-alpha" }
|
|
kanidm = { path = "../kanidmd", version = "1.1.0-alpha" }
|
|
toml = "0.5"
|
|
rpassword = "4.0"
|
|
tokio = { version = "0.2", features=["full"] }
|
|
tokio-util = { version = "0.3", features = ["codec"] }
|
|
futures = "0.3"
|
|
bytes = "0.5"
|
|
|
|
libc = "0.2"
|
|
log = "0.4"
|
|
env_logger = "0.7"
|
|
serde = "1.0"
|
|
serde_derive = "1.0"
|
|
serde_cbor = "0.11"
|
|
structopt = { version = "0.3", default-features = false }
|
|
|
|
libsqlite3-sys = { version = "0.18" }
|
|
rusqlite = { version = "0.23" }
|
|
r2d2 = "0.8"
|
|
r2d2_sqlite = "0.16"
|
|
|
|
reqwest = { version = "0.10" }
|
|
|
|
users = "0.10"
|
|
async-std = "1.6"
|
|
|
|
[features]
|
|
default = [ "libsqlite3-sys/bundled" ]
|
|
|
|
[dev-dependencies]
|
|
kanidm = { path = "../kanidmd" }
|