-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathCargo.toml
36 lines (33 loc) · 932 Bytes
/
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
[package]
name = "async-opcua-codegen"
version = "0.14.0"
edition = "2021"
description = "OPC UA code generation library"
authors = ["Einar Omang <[email protected]>"]
homepage = "https://github.com/freeopcua/async-opcua"
repository = "https://github.com/freeopcua/async-opcua"
license = "MPL-2.0"
keywords = ["opcua", "opc", "ua"]
readme = "README.md"
documentation = "https://docs.rs/async-opcua/"
[lib]
name = "opcua_codegen"
[dependencies]
base64 = "0.22.1"
chrono = "0.4.38"
convert_case = "0.6.0"
env_logger = "0.11.7"
pathdiff = "0.2.3"
prettyplease = "0.2.20"
proc-macro2 = "1.0.86"
quote = "1.0.36"
regex = "1.10.5"
roxmltree = "0.20.0"
serde = { workspace = true }
serde_json = { workspace = true }
serde_yaml = { workspace = true }
syn = { version = "2.0.71", features = ["full"] }
thiserror = "1.0.63"
tracing = { workspace = true }
uuid = "1.10.0"
async-opcua-xml = { path = "../async-opcua-xml", version = "0.15.1" }