2022-02-20 03:43:38 +01:00
|
|
|
[package]
|
2023-08-01 09:25:32 +02:00
|
|
|
name = "kanidm_build_profiles"
|
2022-02-20 03:43:38 +01:00
|
|
|
description = "Kanidm Build System Profiles"
|
|
|
|
documentation = "https://docs.rs/kanidm/latest/kanidm/"
|
2022-10-24 01:50:31 +02:00
|
|
|
# We do not have tests in this pkg
|
|
|
|
autotests = false
|
2022-10-01 08:08:51 +02:00
|
|
|
|
2023-06-27 03:38:22 +02:00
|
|
|
version = { workspace = true }
|
|
|
|
authors = { workspace = true }
|
|
|
|
rust-version = { workspace = true }
|
|
|
|
edition = { workspace = true }
|
|
|
|
license = { workspace = true }
|
|
|
|
homepage = { workspace = true }
|
|
|
|
repository = { workspace = true }
|
2022-02-20 03:43:38 +01:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "profiles"
|
|
|
|
path = "src/lib.rs"
|
2023-10-22 13:16:42 +02:00
|
|
|
test = false
|
|
|
|
doctest = false
|
2022-02-20 03:43:38 +01:00
|
|
|
|
|
|
|
[dependencies]
|
2024-10-15 03:54:46 +02:00
|
|
|
base64 = { workspace = true }
|
2022-10-01 08:08:51 +02:00
|
|
|
serde = { workspace = true, features = ["derive"] }
|
2024-10-15 03:54:46 +02:00
|
|
|
sha2 = { workspace = true }
|
2023-06-27 03:38:22 +02:00
|
|
|
toml = { workspace = true }
|
2022-02-20 03:43:38 +01:00
|
|
|
|
|
|
|
[build-dependencies]
|
2023-06-27 03:38:22 +02:00
|
|
|
base64 = { workspace = true }
|
2023-09-26 01:59:00 +02:00
|
|
|
gix = { workspace = true, default-features = false }
|
2025-02-09 11:06:01 +01:00
|
|
|
|
|
|
|
|
|
|
|
[package.metadata.cargo-machete]
|
|
|
|
ignored = ["gix"]
|