mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
26 lines
573 B
TOML
26 lines
573 B
TOML
[package]
|
|
name = "nss_kanidm"
|
|
|
|
version = { workspace = true }
|
|
authors = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
edition = { workspace = true }
|
|
license = { workspace = true }
|
|
homepage = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[lib]
|
|
name = "nss_kanidm"
|
|
crate-type = [ "cdylib" ]
|
|
path = "src/lib.rs"
|
|
|
|
[dependencies]
|
|
kanidm_unix_common = { workspace = true }
|
|
|
|
[target.'cfg(not(target_family = "windows"))'.dependencies]
|
|
libnss = { workspace = true }
|
|
libc = { workspace = true }
|
|
paste = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
|