- 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>
22 lines
618 B
TOML
22 lines
618 B
TOML
[package]
|
|
name = "iam-authz"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
description = "Authorization layer (PDP) for IAM"
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
iam-types = { path = "../iam-types" }
|
|
iam-store = { path = "../iam-store" }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
tokio = { workspace = true }
|
|
tracing = { workspace = true }
|
|
async-trait = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
ipnetwork = { workspace = true }
|
|
glob-match = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
tokio = { workspace = true, features = ["full", "test-util"] }
|