-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
107 lines (89 loc) · 2.22 KB
/
Copy pathCargo.toml
File metadata and controls
107 lines (89 loc) · 2.22 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
[workspace]
resolver = "2"
members = [
"rauha-common",
"rauha-ebpf-common",
"rauha-evidence",
"rauhad",
"rauha-cli",
"rauha-shim",
"rauha-guest-agent",
"rauha-oci",
"containerd-shim-rauha-v2",
"rauha-enforce",
"xtask",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/rauha-runtime/rauha"
[profile.release]
opt-level = "z"
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "symbols"
[workspace.dependencies]
# Async runtime
tokio = { version = "1", default-features = false, features = ["io-std", "io-util", "macros", "net", "rt-multi-thread", "signal", "sync", "time"] }
# gRPC
tonic = "0.12"
prost = "0.13"
tonic-build = "0.12"
# Serialization
serde = { version = "1", features = ["derive"] }
toml = "0.8"
postcard = { version = "1", features = ["alloc"] }
# Metadata store
redb = "2"
# CLI
clap = { version = "4", features = ["derive"] }
# Logging
tracing = "0.1"
tracing-subscriber = { version = "0.3", default-features = false, features = ["env-filter", "fmt"] }
# OCI
oci-spec = "0.7"
# Error handling
thiserror = "2"
anyhow = "1"
# HTTP client
reqwest = { version = "0.12", features = ["json", "stream"] }
# Compression / archive
flate2 = "1"
tar = "0.4"
# Async streams
tokio-stream = "0.1"
# Utilities
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
bytes = "1"
sha2 = "0.10"
hex = "0.4"
# Platform-specific (Linux)
[workspace.dependencies.nix]
version = "0.29"
features = ["fs", "mount", "sched", "signal", "user", "net", "hostname", "poll", "term", "process"]
# eBPF (Linux)
[workspace.dependencies.aya]
version = "0.13"
[workspace.dependencies.aya-log]
version = "0.2"
# macOS Virtualization.framework bindings
[workspace.dependencies.objc2]
version = "0.6"
features = ["exception"]
[workspace.dependencies.block2]
version = "0.6"
[workspace.dependencies.objc2-virtualization]
version = "0.3"
features = ["dispatch2"]
[workspace.dependencies.dispatch2]
version = "0.3"
features = ["alloc", "objc2"]
[workspace.dependencies.objc2-foundation]
version = "0.3"
# Internal
[workspace.dependencies.rauha-ebpf-common]
path = "rauha-ebpf-common"
features = ["userspace", "offsets"]