[package]
name = "origin-app"
description = "Composition root machinery for Origin applications: ApplicationBuilder, modules, service registry."
version.workspace = true
edition.workspace = true
rust-version.workspace = true
license.workspace = true
homepage.workspace = true
repository.workspace = true
authors.workspace = true
readme = "README.md"
keywords = ["tauri", "service-registry", "composition-root", "modules"]
categories = ["rust-patterns"]
[features]
default = []
ts = ["dep:ts-rs", "origin-domain/ts", "origin-sync/ts"]
[dependencies]
origin-accounts = { workspace = true }
origin-auth = { workspace = true }
origin-connector = { workspace = true }
origin-domain = { workspace = true }
origin-events = { workspace = true }
origin-http = { workspace = true }
origin-jobs = { workspace = true }
origin-sync = { workspace = true }
origin-platform = { workspace = true }
origin-secrets = { workspace = true }
origin-settings = { workspace = true }
origin-storage = { workspace = true }
serde = { workspace = true }
thiserror = { workspace = true }
ts-rs = { workspace = true, optional = true }
tracing = { workspace = true }
[dev-dependencies]
async-trait = { workspace = true }
origin-domain = { workspace = true, features = ["testing"] }
origin-platform = { workspace = true, features = ["testing"] }
time = { workspace = true }
tokio = { workspace = true, features = ["rt-multi-thread", "macros"] }
[lints]
workspace = true