[package]
name = "sightingdb"
version = "0.5.8"
authors = ["Sebastien Tricaud <sebastien.tricaud@devo.com>"]
edition = "2024"
rust-version = "1.88"
license = "MIT"
description = "A database designed for Sightings, a technique to count items"
repository = "https://github.com/stricaud/sightingdb"
readme = "README.md"
keywords = ["sightings", "threat-intelligence", "indicators", "database"]
categories = ["database-implementations", "command-line-utilities"]
exclude = [
"rust-toolchain.toml",
".cargo/*",
".idea/*",
".github/*",
"tests/*",
"docker/*",
]
[[bin]]
name = "sightingdb"
path = "src/main.rs"
[dependencies]
actix-web = { version = "4.14", features = ["openssl"] }
anyhow = "1.0"
chrono = { version = "0.4.45", features = ["serde"] }
data-encoding = "2.11"
clap = { version = "4.6", features = ["derive"] }
dirs = "6.0"
hickory-proto = { version = "0.26", default-features = false, features = ["std"] }
zeromq = { version = "0.6", default-features = false, features = ["tcp-transport", "tokio-runtime"] }
log = "0.4"
log4rs = "1.4"
openssl = "0.10.81"
regex = "1.13"
serde_json = "1.0"
zstd = "0.13"
toml = "1.1"
uuid = { version = "1.24", features = ["v5"] }
toml_edit = "0.25"
serde = { version = "1.0", features = ["derive"] }
rand = "0.10"
sha2 = "0.11.0"
[features]
vendored-openssl = ["openssl/vendored"]
[dev-dependencies]
actix-rt = "2.11"
[profile.release]
lto = "thin"
codegen-units = 1