-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
69 lines (56 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
69 lines (56 loc) · 1.47 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
[workspace]
resolver = "2"
members = [
"crates/cookbook-qualify",
"crates/cookbook-runner",
"crates/cookbook-examples",
]
[workspace.package]
version = "0.1.0"
edition = "2024"
authors = ["PAIML Engineering <engineering@paiml.com>"]
license = "MIT"
repository = "https://github.com/paiml/forjar-cookbook"
rust-version = "1.85"
exclude = [
"docs/", "book/", "scripts/", "recipes/", "configs/",
".pmat/", ".pmat-work/", "target/", "*.profraw", "*.profdata",
".vscode/", ".idea/",
]
[workspace.dependencies]
# Core
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "2.0"
# CSV parsing
csv = "1.3"
# YAML parsing
serde_yaml_ng = "0.10"
# Forjar scoring engine (v2 — eliminates duplicate scoring code)
forjar = { version = "1.2", default-features = false }
# Regex
regex = "1.11"
# CLI
clap = { version = "4.5", features = ["derive"] }
# Time
chrono = { version = "0.4", features = ["serde"] }
# Workspace crates
cookbook-qualify = { version = "0.1.0", path = "crates/cookbook-qualify" }
cookbook-runner = { version = "0.1.0", path = "crates/cookbook-runner" }
[workspace.lints.rust]
unsafe_code = "deny"
missing_docs = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
unwrap_used = "deny"
expect_used = "warn"
panic = "deny"
[profile.release]
lto = true
codegen-units = 1
strip = true
[profile.dev]
opt-level = 0
debug = true