53 lines
1.8 KiB
TOML
53 lines
1.8 KiB
TOML
|
|
[package]
|
||
|
|
name = "ontoref-daemon"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition.workspace = true
|
||
|
|
description = "Ontoref runtime daemon: NCL export cache, file watcher, actor registry, HTTP API"
|
||
|
|
license.workspace = true
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "ontoref-daemon"
|
||
|
|
path = "src/main.rs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
stratum-db = { path = "../../../stratumiops/crates/stratum-db", default-features = false, optional = true }
|
||
|
|
platform-nats = { path = "../../../stratumiops/crates/platform-nats", optional = true }
|
||
|
|
|
||
|
|
axum = { workspace = true }
|
||
|
|
tokio = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
notify = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tracing-subscriber = { workspace = true, features = ["env-filter"] }
|
||
|
|
tower-http = { workspace = true }
|
||
|
|
tera = { version = "1", default-features = false, features = ["builtins"], optional = true }
|
||
|
|
argon2 = { version = "0.5", features = ["std"], optional = true }
|
||
|
|
toml = { version = "0.8", optional = true }
|
||
|
|
uuid = { workspace = true, optional = true }
|
||
|
|
axum-server = { version = "0.7", features = ["tls-rustls"], optional = true }
|
||
|
|
rmcp = { version = "1", features = ["server", "transport-io", "transport-streamable-http-server"], optional = true }
|
||
|
|
schemars = { version = "1", optional = true }
|
||
|
|
thiserror = { workspace = true }
|
||
|
|
dashmap = { workspace = true }
|
||
|
|
clap = { workspace = true }
|
||
|
|
anyhow = { workspace = true }
|
||
|
|
bytes = { workspace = true }
|
||
|
|
hostname = { workspace = true }
|
||
|
|
reqwest = { workspace = true }
|
||
|
|
|
||
|
|
[target.'cfg(unix)'.dependencies]
|
||
|
|
libc = { workspace = true }
|
||
|
|
|
||
|
|
[features]
|
||
|
|
default = ["db", "nats", "ui", "mcp"]
|
||
|
|
db = ["stratum-db/remote"]
|
||
|
|
nats = ["dep:platform-nats"]
|
||
|
|
ui = ["dep:tera", "dep:argon2", "dep:toml", "dep:uuid"]
|
||
|
|
tls = ["ui", "dep:axum-server"]
|
||
|
|
mcp = ["ui", "dep:rmcp", "dep:schemars"]
|
||
|
|
|
||
|
|
[dev-dependencies]
|
||
|
|
tokio-test = { workspace = true }
|
||
|
|
tempfile = { workspace = true }
|