[package]
edition = "2021"
name = "maec-rs"
version = "0.1.0"
authors = ["Threatwise"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MAEC (Malware Attribute Enumeration and Characterization) data model library for Rust"
homepage = "https://github.com/Threatwise/maec-rs"
documentation = "https://docs.rs/maec-rs"
readme = "README.md"
keywords = [
"maec",
"malware",
"threat-intelligence",
"cybersecurity",
"analysis",
]
categories = [
"data-structures",
"encoding",
"parser-implementations",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/Threatwise/maec-rs"
[features]
default = []
stix-integration = []
[lib]
name = "maec"
path = "src/lib.rs"
[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.quick-xml]
version = "0.29"
features = ["serialize"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dependencies.uuid]
version = "1.3"
features = [
"v4",
"serde",
]