copybook-support-matrix 0.4.3

COBOL feature support matrix contract and status registry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# copybook-support-matrix

This crate stores the shared COBOL support-matrix contract.

- Stable support feature IDs
- Per-feature support status
- Structured `FeatureSupport` entries

## Public API

- `FeatureId` (`#[serde]`-stable identifiers)
- `SupportStatus` (`Supported`, `Partial`, `Planned`, `NotPlanned`)
- `FeatureSupport` (name, description, docs, status)
- `all_features() -> &'static [FeatureSupport]`
- `find_feature(id: &str) -> Option<&'static FeatureSupport>`
- `find_feature_by_id(id: FeatureId) -> Option<&'static FeatureSupport>`