ferrumdeck-core 0.7.12

FerrumDeck core primitives: ULID-based typed IDs, errors, config, and time helpers
Documentation
[package]
name = "ferrumdeck-core"
description = "FerrumDeck core primitives: ULID-based typed IDs, errors, config, and time helpers"
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
repository.workspace = true
homepage = "https://github.com/sattyamjjain/ferrumdeck"
keywords = ["agent", "security", "policy", "enforcement", "mcp"]
categories = ["development-tools"]
readme = "README.md"

# Published as `ferrumdeck-core` (the plain `fd-core` name is taken on crates.io
# by an unrelated crate); the Rust import path stays `fd_core` via the lib name.
[lib]
name = "fd_core"

[dependencies]
# IDs
ulid = { workspace = true }
uuid = { workspace = true }

# Time
chrono = { workspace = true }

# Serialization
serde = { workspace = true }
serde_json = { workspace = true }

# Error handling
thiserror = { workspace = true }
anyhow = { workspace = true }

# Configuration
config = { workspace = true }
dotenvy = { workspace = true }

# Tracing
tracing = { workspace = true }

[dev-dependencies]
tokio-test = { workspace = true }