[package]
edition = "2021"
name = "export-engine"
version = "1.0.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Export and serialization engine for metrics and events produced by the Peek tool"
homepage = "https://github.com/ankittk/peek"
documentation = "https://github.com/ankittk/peek"
readme = "README.md"
keywords = [
"process",
"linux",
"monitoring",
"export",
]
categories = [
"command-line-utilities",
"os::linux-apis",
]
license = "MIT"
repository = "https://github.com/ankittk/peek"
[lib]
name = "export_engine"
path = "src/lib.rs"
[[test]]
name = "json_and_html"
path = "tests/json_and_html.rs"
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.peek-core]
version = "1.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.which]
version = "6"