cwenum 1.2.1

A tiny crate to access a strongly typed common weakness enumeration (cwe) object.
Documentation
1
2
3
4
5
6
7
8
#![warn(missing_docs)]
#![warn(clippy::unwrap_used)]
#![cfg_attr(not(feature = "std"), no_std)] // Enable `no_std` when the `std` feature is disabled
#![doc = include_str!("../README.md")]

mod cwe;

pub use cwe::*;