fabro/lib/components/fabro-environment/Cargo.toml
2026-07-23 17:59:34 -04:00

34 lines
823 B
TOML

[package]
name = "fabro-environment"
edition.workspace = true
version.workspace = true
publish = false
license.workspace = true
description = "Server-owned environment domain and durable storage for Fabro"
[lib]
doctest = false
[lints]
workspace = true
[dependencies]
chrono.workspace = true
fabro-db = { path = "../../foundation/fabro-db" }
fabro-config = { path = "../../foundation/fabro-config" }
fabro-types = { path = "../../foundation/fabro-types" }
hex.workspace = true
serde.workspace = true
serde_json.workspace = true
sha2.workspace = true
sqlx.workspace = true
thiserror.workspace = true
tokio.workspace = true
toml.workspace = true
toml_edit.workspace = true
tracing.workspace = true
[dev-dependencies]
anyhow.workspace = true
tempfile = "3"
tokio = { workspace = true, features = ["macros", "test-util"] }