Files
ERP.LT/crates/erplt/Cargo.toml
2026-09-09 22:20:29 +03:00

42 lines
1.2 KiB
TOML

[package]
name = "erplt"
version = "0.1.0"
edition = "2024"
[lib]
crate-type = ["cdylib", "rlib"]
[features]
default = ["ssr", "erplt-api/ssr"]
hydrate=["erplt-api/hydrate"]
ssr=[
"erplt-api/ssr",
"dep:erplt-db",
"dep:erplt-config",
"dep:camino",
"dep:clap",
"dep:serde",
"dep:toml",
"dep:anyhow",
"dep:tracing",
"dep:tracing-subscriber",
"dep:humantime",
"dep:humantime-serde",
"dep:tokio",
]
[dependencies]
erplt-api.path="../erplt-api"
erplt-db = { path="../erplt-db", optional = true }
erplt-config = { path="../erplt-config", optional = true }
camino = { workspace = true, optional = true }
clap = { workspace = true, optional = true }
serde = { workspace = true, optional = true }
toml = { workspace = true, optional = true }
anyhow = { workspace = true, optional = true }
tracing-subscriber = { workspace = true, optional = true }
tracing = { workspace = true, optional = true }
humantime = { workspace = true, optional = true }
humantime-serde = { workspace = true, optional = true }
tokio = { workspace = true, optional = true }