mirror of
https://github.com/xzcrpw/blackwall.git
synced 2026-04-24 11:56:21 +02:00
23 lines
682 B
TOML
23 lines
682 B
TOML
|
|
[package]
|
||
|
|
name = "hivemind-api"
|
||
|
|
version = "0.1.0"
|
||
|
|
edition = "2021"
|
||
|
|
description = "Enterprise Threat Feed API — REST/STIX/TAXII endpoint for HiveMind verified IoCs"
|
||
|
|
|
||
|
|
[dependencies]
|
||
|
|
common = { path = "../common", default-features = false, features = ["user"] }
|
||
|
|
tokio = { workspace = true }
|
||
|
|
tracing = { workspace = true }
|
||
|
|
tracing-subscriber = { workspace = true }
|
||
|
|
anyhow = { workspace = true }
|
||
|
|
serde = { workspace = true }
|
||
|
|
serde_json = { workspace = true }
|
||
|
|
hyper = { workspace = true, features = ["server"] }
|
||
|
|
hyper-util = { workspace = true }
|
||
|
|
http-body-util = { workspace = true }
|
||
|
|
ring = { workspace = true }
|
||
|
|
|
||
|
|
[[bin]]
|
||
|
|
name = "hivemind-api"
|
||
|
|
path = "src/main.rs"
|