[package]
edition = "2024"
name = "attack-rs"
version = "0.1.0"
authors = ["Threatwise"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "MITRE ATT&CK Framework semantic layer - strongly-typed, graph-based interface for threat intelligence"
homepage = "https://github.com/Threatwise/attack-rs"
documentation = "https://docs.rs/attack-rs"
readme = "README.md"
keywords = [
"attack",
"mitre",
"threat-intelligence",
"cybersecurity",
"stix",
]
categories = [
"data-structures",
"encoding",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/Threatwise/attack-rs"
[lib]
name = "attack"
path = "src/lib.rs"
[[bin]]
name = "attack"
path = "src/bin/attack.rs"
[[test]]
name = "field_coverage_test"
path = "tests/field_coverage_test.rs"
[[test]]
name = "full_coverage_test"
path = "tests/full_coverage_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4.0"
features = ["derive"]
[dependencies.reqwest]
version = "0.12"
features = [
"blocking",
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.stix-rs]
version = "0.1.0"
[dependencies.thiserror]
version = "1.0"