mirror of
https://github.com/fabro-sh/fabro.git
synced 2026-08-28 05:27:41 +00:00
34 lines
823 B
TOML
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"] }
|