-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
88 lines (69 loc) · 1.4 KB
/
Copy pathCargo.toml
File metadata and controls
88 lines (69 loc) · 1.4 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[package]
name = "policyengine"
version.workspace = true
edition.workspace = true
authors.workspace = true
description.workspace = true
license.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
[dependencies]
# Core dependencies
serde.workspace = true
serde_json.workspace = true
thiserror.workspace = true
anyhow.workspace = true
# WASM runtime
wasmtime.workspace = true
wasmtime-wasi.workspace = true
# Cryptography
ring.workspace = true
ed25519-dalek.workspace = true
sha2.workspace = true
# Async runtime
tokio.workspace = true
num_cpus.workspace = true
# HTTP/gRPC support
axum.workspace = true
tonic.workspace = true
prost.workspace = true
# NATS support
nats.workspace = true
# Logging
tracing.workspace = true
tracing-subscriber.workspace = true
# Configuration
config.workspace = true
# CLI
clap.workspace = true
# YAML
serde_yaml.workspace = true
# Hex encoding
hex.workspace = true
# Bincode
bincode.workspace = true
[dev-dependencies]
tokio-test.workspace = true
mockall.workspace = true
criterion.workspace = true
[features]
default = []
sgx = []
sev = []
bench = []
[lib]
name = "policyengine"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "policyengine-server"
path = "src/bin/server.rs"
[[bin]]
name = "rbac-gen"
path = "src/bin/rbac_gen.rs"
[[bin]]
name = "attest-verify"
path = "src/bin/attest_verify.rs"
[[bench]]
name = "smoke"
harness = false