-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
39 lines (32 loc) · 1.13 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "async-opcua-nodes"
version = "0.15.1"
description = "OPC UA node representation and import framework"
homepage = "https://github.com/freeopcua/async-opcua"
repository = "https://github.com/freeopcua/async-opcua"
license = "MPL-2.0"
keywords = ["opcua", "opc", "ua"]
categories = ["embedded", "network-programming"]
readme = "README.md"
documentation = "https://docs.rs/async-opcua-nodes/"
edition = "2021"
[lints]
workspace = true
[lib]
name = "opcua_nodes"
[features]
xml = ["async-opcua-types/xml", "async-opcua-xml"]
[dependencies]
bitflags = { workspace = true }
hashbrown = { workspace = true }
tracing = { workspace = true }
regex = { workspace = true }
thiserror = { workspace = true }
async-opcua-macros = { path = "../async-opcua-macros", version = "0.15.1" }
async-opcua-types = { path = "../async-opcua-types", version = "0.15.1" }
async-opcua-xml = { path = "../async-opcua-xml", optional = true, version = "0.15.1" }
[dev-dependencies]
async-opcua-nodes = { path = ".", features = ["xml"] }
[package.metadata.docs.rs]
all-features = true