photoncloud-monorepo/iam/crates/iam-server/Cargo.toml
centra 3eeb303dcb feat: Batch commit for T039.S3 deployment
Includes all pending changes needed for nixos-anywhere:
- fiberlb: L7 policy, rule, certificate types
- deployer: New service for cluster management
- nix-nos: Generic network modules
- Various service updates and fixes

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2025-12-13 04:34:51 +09:00

38 lines
1.1 KiB
TOML

[package]
name = "iam-server"
version.workspace = true
edition.workspace = true
description = "IAM server binary"
license.workspace = true
[[bin]]
name = "iam-server"
path = "src/main.rs"
[dependencies]
iam-types = { path = "../iam-types" }
iam-store = { path = "../iam-store" }
iam-authn = { path = "../iam-authn" }
iam-authz = { path = "../iam-authz" }
iam-api = { path = "../iam-api" }
iam-client = { path = "../iam-client" }
serde = { workspace = true }
serde_json = { workspace = true }
thiserror = { workspace = true }
tokio = { workspace = true, features = ["full"] }
tracing = { workspace = true }
tracing-subscriber = { workspace = true }
tonic = { workspace = true }
tonic-health = { workspace = true }
toml = { workspace = true }
clap = { workspace = true }
metrics = { workspace = true }
metrics-exporter-prometheus = { workspace = true }
# REST API dependencies
axum = "0.8"
uuid = { version = "1.11", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
[dev-dependencies]
tokio = { workspace = true, features = ["full", "test-util"] }