- Remove gitlinks (160000 mode) for chainfire, flaredb, iam - Add workspace contents as regular tracked files - Update flake.nix to use simple paths instead of builtins.fetchGit This resolves the nix build failure where submodule directories appeared empty in the nix store. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
32 lines
896 B
TOML
32 lines
896 B
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" }
|
|
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 }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["full", "test-util"] }
|