Owows so many new files
This commit is contained in:
@@ -1,19 +1,41 @@
|
||||
[package]
|
||||
name = "erplt"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
[package]
|
||||
name = "erplt"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
erplt-db.path="../erplt-db"
|
||||
erplt-api.path="../erplt-api"
|
||||
erplt-config.path="../erplt-config"
|
||||
camino.workspace = true
|
||||
clap.workspace = true
|
||||
serde.workspace = true
|
||||
toml.workspace = true
|
||||
anyhow.workspace = true
|
||||
tracing-subscriber.workspace = true
|
||||
tracing.workspace = true
|
||||
humantime.workspace = true
|
||||
humantime-serde.workspace = true
|
||||
tokio.workspace = true
|
||||
[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 }
|
||||
|
||||
Reference in New Issue
Block a user