28 lines
861 B
TOML
28 lines
861 B
TOML
[package]
|
|
name = "mxaccess-asb"
|
|
description = "IASBIDataV2 client — the alternate ASB data plane for the AVEVA System Platform."
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
authors.workspace = true
|
|
|
|
[dependencies]
|
|
mxaccess-codec = { path = "../mxaccess-codec", version = "0.0.0" }
|
|
mxaccess-asb-nettcp = { path = "../mxaccess-asb-nettcp", version = "0.0.0" }
|
|
thiserror = { workspace = true }
|
|
tracing = { workspace = true }
|
|
tokio = { workspace = true }
|
|
rand = { workspace = true }
|
|
|
|
[features]
|
|
default = []
|
|
# `dpapi` provides a Windows DPAPI-backed default impl of the `SecretProvider`
|
|
# trait. With `dpapi=off`, callers must inject a `SecretProvider` explicitly;
|
|
# otherwise `Session::builder()` fails at construction.
|
|
dpapi = []
|
|
|
|
[lints]
|
|
workspace = true
|