-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (40 loc) · 1023 Bytes
/
Cargo.toml
File metadata and controls
46 lines (40 loc) · 1023 Bytes
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
[workspace]
members = [
"crates/arazzo-spec",
"crates/arazzo-validate",
"crates/arazzo-expr",
"crates/arazzo-runtime",
"crates/arazzo-generate",
"crates/arazzo-cli",
"crates/arazzo-debug-adapter",
"crates/arazzo-mcp",
]
resolver = "2"
[workspace.package]
version = "0.2.0"
edition = "2021"
rust-version = "1.82"
license = "MIT"
description = "Standalone Arazzo 1.0 workflow executor and debugger"
keywords = ["arazzo", "openapi", "workflow", "api", "cli"]
categories = ["command-line-utilities", "web-programming"]
repository = "https://github.com/strefethen/arazzo-cli"
homepage = "https://github.com/strefethen/arazzo-cli"
readme = "README.md"
publish = false
[workspace.dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[profile.release]
lto = "thin"
codegen-units = 1
strip = true
panic = "abort"
[profile.bench]
debug = true
[workspace.lints.rust]
unsafe_code = "forbid"
[workspace.lints.clippy]
unwrap_used = "deny"
expect_used = "deny"
dbg_macro = "deny"
todo = "deny"