forked from locka99/opcua
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Utility for recursively browsing the node hierarchy clientside. This is something a lot of OPC-UA client applications need to do at some point, which isn't necessarily trivial to implement well. It makes sense to include a generic utility for doing this in the client library. If it isn't sufficiently flexible users are always free to use it as a reference and build something using the services directly.
- Loading branch information
Showing
15 changed files
with
1,336 additions
and
413 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
[package] | ||
name = "opcua-client" | ||
version = "0.13.0" # OPCUARustVersion | ||
version = "0.13.0" # OPCUARustVersion | ||
description = "OPC UA client API" | ||
authors = ["Adam Lock <[email protected]>", "Einar Omang <[email protected]>"] | ||
homepage = "https://github.com/locka99/opcua" | ||
repository = "https://github.com/locka99/opcua" | ||
license = "MPL-2.0" | ||
keywords = ["opcua","opc","ua"] | ||
categories = ["embedded","network-programming"] | ||
keywords = ["opcua", "opc", "ua"] | ||
categories = ["embedded", "network-programming"] | ||
readme = "../README.md" | ||
documentation = "https://docs.rs/opcua/" | ||
edition = "2021" | ||
|
@@ -20,6 +20,7 @@ arc-swap = { workspace = true } | |
async-trait = { workspace = true } | ||
chrono = { workspace = true } | ||
futures = { workspace = true } | ||
hashbrown = { workspace = true } | ||
lazy_static = { workspace = true } | ||
log = { workspace = true } | ||
parking_lot = { workspace = true } | ||
|
@@ -32,4 +33,5 @@ serde = { workspace = true } | |
opcua-types = { path = "../opcua-types" } | ||
opcua-core = { path = "../opcua-core" } | ||
opcua-crypto = { path = "../opcua-crypto" } | ||
opcua-nodes = { path = "../opcua-nodes" } | ||
opcua-xml = { path = "../opcua-xml", optional = true } |
Oops, something went wrong.