-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
61 lines (56 loc) · 1.6 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[package]
name = "libadcs"
version = "0.1.0"
edition = "2021"
license = "MIT"
[workspace]
members = [ "bcder-derive", "adcs-submit", "xtask" ]
[workspace.dependencies]
x509-certificate = "0.20.0"
thiserror = "1.0.38"
hex = "0.4.3"
bitflags = "2.0.0"
bcder = "0.7.2"
tracing = "0.1.37"
[features]
default = ["policy_https", "enrollment_https", "policy_ldap", "enrollment_rpc"]
policy_ldap = []
policy_https = []
enrollment_rpc = []
enrollment_https = []
[dependencies]
x509-certificate.workspace = true
thiserror.workspace = true
hex.workspace = true
bitflags.workspace = true
bcder.workspace = true
tracing.workspace = true
cross-krb5 = "0.3.0"
ldap3 = { version = "0.11.1", default-features = false, features = ["gssapi", "native-tls", "sync"] }
libdcerpc = { git = "https://github.com/outurnate/dcerpc.git" }
cryptographic-message-syntax = "0.23.0"
uuid = { version = "1.3.0", features = ["v4"] }
base64 = "0.21.0"
auto_enums = "0.8.0"
bcder-derive = { path = "bcder-derive" }
yaserde_derive = "0.8.0"
yaserde = "0.8.0"
xml-rs = "0.8.4"
trust-dns-resolver = { version = "0.22.0" }
itertools = "0.10.5"
rand = "0.8.5"
tokio = { version = "1.26.0", default-features = false, features = ["rt"] }
signature = "2.0.0"
reqwest = { version = "0.11.16", features = ["blocking"] }
bytes = "1.4.0"
anyhow = "1.0.70"
xmltree = "0.10.3"
derive_builder = "0.12.0"
url = "2.3.1"
chrono = "0.4.24"
num-derive = "0.3.3"
num-traits = "0.2.15"
[dev-dependencies]
test-log = { version = "0.2.11", features = ["log", "trace"] }
env_logger = "0.10.0"
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }