-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCargo.toml
40 lines (34 loc) · 1.03 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
[package]
name = "async-opcua-crypto"
version = "0.15.1"
description = "OPC UA cryptography library"
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-crypto/"
edition = "2021"
[lints]
workspace = true
[lib]
name = "opcua_crypto"
[dependencies]
chrono = { workspace = true }
gethostname = { workspace = true }
serde = { workspace = true }
tracing = { workspace = true }
async-opcua-types = { path = "../async-opcua-types", version = "0.15.1" }
aes = { workspace = true }
cbc = { workspace = true }
const-oid = { workspace = true }
hmac = { workspace = true }
rand = { workspace = true }
rsa = { workspace = true }
sha1 = { workspace = true }
sha2 = { workspace = true }
x509-cert = { workspace = true }
[dev-dependencies]
tempdir = "0.3"