-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (60 loc) · 1.37 KB
/
Cargo.toml
File metadata and controls
77 lines (60 loc) · 1.37 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
[workspace]
members = ["engine"]
resolver = "2"
[workspace.package]
version = "0.1.0"
edition = "2021"
authors = ["Security Envelopes Team"]
description = "Formally verified security system with RBAC, tenant isolation, and remote attestation"
license = "MIT"
repository = "https://github.com/security-envelopes/security-envelopes"
keywords = ["security", "rbac", "abac", "wasm", "policy", "attestation", "sgx", "sev"]
categories = ["security", "web-programming"]
[workspace.dependencies]
# Core dependencies
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
anyhow = "1.0"
# WASM runtime
wasmtime = "15.0"
wasmtime-wasi = "15.0"
# Cryptography
ring = "0.17"
ed25519-dalek = "2.0"
sha2 = "0.10"
# Async runtime
tokio = { version = "1.0", features = ["full"] }
# CPU count (used by default config)
num_cpus = "1.16"
# HTTP/gRPC support
axum = "0.7"
tonic = "0.10"
prost = "0.12"
# NATS support
nats = "0.26"
# Logging
tracing = "0.1"
tracing-subscriber = "0.3"
# Configuration
config = "0.14"
# CLI
clap = { version = "4.0", features = ["derive"] }
# YAML
serde_yaml = "0.9"
# Hex encoding
hex = "0.4"
# Bincode
bincode = "1.3"
# Testing
criterion = { version = "0.5", features = ["html_reports"] }
tokio-test = "0.4"
mockall = "0.12"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
panic = "abort"
[profile.dev]
opt-level = 0
debug = true