forked from locka99/opcua
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
42 lines (35 loc) · 1.14 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
40
41
42
[package]
name = "opcua-types"
version = "0.13.0" # OPCUARustVersion
description = "OPC UA data types"
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"]
readme = "../README.md"
documentation = "https://docs.rs/opcua/"
edition = "2021"
[features]
json = ["struson", "opcua-macros/json"]
xml = ["opcua-xml", "opcua-macros/xml"]
[lib]
name = "opcua_types"
[dependencies]
bitflags = { workspace = true }
log = { workspace = true }
regex = { workspace = true }
lazy_static = { workspace = true }
hashbrown = { workspace = true }
uuid = { workspace = true }
chrono = { workspace = true }
byteorder = { workspace = true }
base64 = { workspace = true }
thiserror = { workspace = true }
opcua-macros = { path = "../opcua-macros" }
struson = { workspace = true, optional = true }
opcua-xml = { path = "../opcua-xml", optional = true }
[dev-dependencies]
opcua-types = { path = ".", features = ["xml", "json"] }
serde_json = { workspace = true }