[package] name = "mxaccess-compat" description = "LMXProxyServer-shaped Rust facade on top of `mxaccess::Session`. Optional / post-V1." version.workspace = true edition.workspace = true license.workspace = true repository.workspace = true rust-version.workspace = true authors.workspace = true [dependencies] mxaccess = { path = "../mxaccess", version = "0.0.0" } tokio = { workspace = true } tokio-stream = { version = "0.1", features = ["sync"] } futures-util = { workspace = true } thiserror = { workspace = true } [dev-dependencies] tokio = { workspace = true, features = ["macros", "rt", "rt-multi-thread", "sync", "time"] } async-trait = { workspace = true } mxaccess-rpc = { path = "../mxaccess-rpc", version = "0.0.0" } # F56 — buffered subscribe live test needs real Galaxy DB metadata # (engine_id / platform_id / object_id / attribute_id from # `dbo.gobject` etc.); the StaticResolver shim used by lmx_write_live # was hardcoded to platform_id=1 / engine_id=2 which the engine # silently accepts for writes but doesn't dispatch DataUpdate frames # against. The buffered live test resolves real IDs via SqlTagResolver. mxaccess-galaxy = { path = "../mxaccess-galaxy", version = "0.0.0", features = ["galaxy-resolver"] } # Live tests use tracing-subscriber to dump router/dcom_sink trace # events on demand (set RUST_LOG=mxaccess=trace,mxaccess_callback=trace). tracing = { workspace = true } tracing-subscriber = { version = "0.3", features = ["env-filter"] } [features] default = [] # F49 / F54 live test gate. Enables `Session::connect_nmx_auto` for # the live integration test at `tests/lmx_write_complete_live.rs`. live-windows-com = ["mxaccess/windows-com"] [lints] workspace = true