-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathCargo.toml
More file actions
179 lines (172 loc) · 5.99 KB
/
Copy pathCargo.toml
File metadata and controls
179 lines (172 loc) · 5.99 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
[workspace]
members = [
"crates/firma",
"crates/firma-audit-schema",
"crates/firma-authority",
"crates/firma-config-loader",
"crates/firma-config-schema",
"crates/firma-core",
"crates/firma-demo-fixture",
"crates/firma-demo-tui",
"crates/firma-fs",
"crates/firma-grpc-interceptor-proto",
"crates/firma-http",
"crates/firma-identifiers",
"crates/firma-process-orchestrator",
"crates/firma-run",
"crates/firma-runtime-state",
"crates/firma-secret-provider",
"crates/firma-sidecar",
"crates/firma-stack",
"crates/firma-test-helpers",
"crates/firma-tui",
"crates/firma-vz-guest-init",
"crates/firma-vz-runner",
]
resolver = "3"
[workspace.package]
version = "0.1.6"
edition = "2024"
license = "GPL-3.0-only"
publish = false
repository = "https://github.com/Firma-AI/openfirma"
rust-version = "1.97"
[workspace.lints.clippy]
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
unwrap_used = "warn"
expect_used = "warn"
panic = "warn"
missing_const_for_fn = "allow"
allow_attributes = "warn"
[workspace.lints.rust]
unsafe_code = "warn"
[workspace.lints.rustdoc]
private_intra_doc_links = "allow"
[profile.release]
lto = "fat"
codegen-units = 1
# The profile that 'dist' will build with
[profile.dist]
inherits = "release"
lto = "thin"
[workspace.dependencies]
aho-corasick = "1"
anyhow = "1"
arbitrary = "1"
arc-swap = "1"
async-stream = "0.3"
async-trait = "0.1"
base64 = "0.22"
block2 = "0.6"
brotli = "8"
bytesize = "2.7"
camino = "1.2"
cedar-policy = "3"
cedar-policy-core = "3"
chrono = { version = "0.4", features = ["serde"] }
clap = { version = "4", default-features = false }
criterion = { version = "0.8", default-features = false, features = ["cargo_bench_support"] }
ctrlc = { version = "3.5", features = ["termination"] }
dialoguer = "0.11"
dirs = "6"
dispatch2 = "0.3"
ecdsa = { version = "0.16", features = ["signing", "verifying"] }
either = "1.17"
elliptic-curve = { version = "0.13", features = ["pem"] }
firma-audit-schema = { path = "crates/firma-audit-schema", version = "0.1.6" }
firma-authority = { path = "crates/firma-authority", version = "0.1.5" }
firma-config-loader = { path = "crates/firma-config-loader", version = "0.1.5" }
firma-config-schema = { path = "crates/firma-config-schema", version = "0.1.5" }
firma-core = { path = "crates/firma-core", version = "0.1.5" }
firma-fs = { path = "crates/firma-fs", version = "0.1.5" }
firma-grpc-interceptor-proto = { path = "crates/firma-grpc-interceptor-proto", version = "0.1.5" }
firma-http = { path = "crates/firma-http", version = "0.1.5" }
firma-identifiers = { path = "crates/firma-identifiers", version = "0.1.5" }
firma-process-orchestrator = { path = "crates/firma-process-orchestrator", version = "0.1.5" }
firma-protobuf = "0.2"
firma-run = { path = "crates/firma-run", version = "0.1.5" }
firma-runtime-state = { path = "crates/firma-runtime-state", version = "0.1.5" }
firma-secret-provider = { path = "crates/firma-secret-provider", version = "0.1.5" }
firma-sidecar = { path = "crates/firma-sidecar", version = "0.1.5" }
firma-stack = { path = "crates/firma-stack", version = "0.1.5" }
firma-test-helpers = { path = "crates/firma-test-helpers", version = "0.1.5" }
firma-tui = { path = "crates/firma-tui", version = "0.1.5" }
flate2 = "1"
form_urlencoded = "1"
fs-err = "3.3"
fs2 = "0.4.3"
governor = "0.10"
headers = "0.4"
hex = "0.4"
http = "1"
http-body = "1"
http-body-util = "0.1"
hyper = { version = "1", default-features = false }
hyper-util = { version = "0.1", default-features = false }
insta = { version = "1", features = ["filters", "json", "redactions"] }
jiff = "0.2"
json-escape = "0.3"
libc = "0.2"
lru = "0.18.2"
miette = { version = "7", features = ["fancy-no-backtrace"] }
mime = "0.3"
nix = { version = "0.31", features = ["fs", "process", "signal", "socket", "user"] }
notify = "8"
objc2 = "0.6"
objc2-foundation = "0.3"
objc2-virtualization = { version = "0.3.2", default-features = false }
owo-colors = { version = "4", features = ["supports-colors"] }
p256 = { version = "0.13", features = ["ecdsa", "pem"] }
pasetors = "0.7"
pin-project = "1.1"
pretty_assertions = "1"
proptest = "1"
prost = "0.14"
prost-types = "0.14"
quick-xml = "0.41"
rand = { version = "0.9", default-features = false, features = ["small_rng"] }
rcgen = { version = "0.13", features = ["x509-parser"] }
regex = "1"
reqwest = { version = "0.13", default-features = false, features = ["charset", "http2", "query", "rustls-no-provider"] }
rustls = { version = "0.23", default-features = false, features = ["logging", "ring", "std", "tls12"] }
rustls-pemfile = "2"
rustls-platform-verifier = "0.7"
same-file = "1"
secrecy = "0.10"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_json_path = "0.7"
serde_repr = "0.1"
serde_yaml = "0.9"
serial_test = "3"
sha2 = "0.11"
signal-hook = "0.3"
socket2 = "0.6"
strum = "0.28"
tempfile = "3"
textwrap = "0.16"
thiserror = "2"
time = { version = "0.3", default-features = false }
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "macros"] }
tokio-rustls = { version = "0.26", default-features = false, features = ["logging", "ring", "tls12"] }
tokio-stream = { version = "0.1", features = ["sync"] }
tokio-util = { version = "0.7", features = ["rt"] }
toml = "1"
toml_edit = "0.23"
tonic = { version = "0.14", features = ["transport"] }
tonic-health = "0.14"
tonic-prost = "0.14"
tonic-prost-build = "0.14"
tower = { version = "0.5", default-features = false, features = ["util"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter", "json"] }
type-safe-id = { version = "0.3.3", features = ["serde"] }
uuid = { version = "1", features = ["v4", "v7", "serde"] }
wait-timeout = "0.2"
webpki-roots = "1"
windows-sys = { version = "0.59", features = ["Win32_Foundation", "Win32_Security", "Win32_Storage_FileSystem", "Win32_System_Console", "Win32_System_Diagnostics_ToolHelp", "Win32_System_JobObjects", "Win32_System_Threading"] }
wiremock = "0.6"
x509-parser = "0.16"
xxhash-rust = { version = "0.8", features = ["xxh3"] }
zstd = "0.13"