forked from tpm-rs/tpm-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (32 loc) · 888 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
[workspace]
resolver = "2"
members = [
"base",
"client",
"client/feature",
"errors",
"marshal",
"marshal/derive",
"service",
"unionify"
]
[workspace.dependencies]
# Third party dependencies
arrayvec = { version="0.7.4", default-features=false }
bitflags = "2.4.2"
hex-literal = { version = "0.4.1" }
open-enum = "0.4.1"
proc-macro2 = "1"
quote = "1"
syn = {version = "2", features = ["full"]}
zerocopy = { version = "0.7.0", features = ["derive"] }
trybuild = { version = "1.0.89", features = ["diff"] }
# Common workspace crates
tpm2-rs-base = { path = "base" }
tpm2-rs-client = { path = "client" }
tpm2-rs-errors = { path = "errors" }
tpm2-rs-features-client = { path = "client/feature" }
tpm2-rs-marshal = { path = "marshal" }
tpm2-rs-marshal-derive = { path = "marshal/derive" }
tpm2-rs-service = { path = "service" }
unionify = { path = "unionify" }