[package]
edition = "2024"
name = "relastic"
version = "0.4.8"
authors = [
"Michael Thomas Lee / Intility AS <michael.thomas.lee@intility.no>",
"Eirik Skogstad / Intility AS <eirik.skogstad@intility.no>",
]
build = false
include = [
"src/",
"README.md",
"LICENSE.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Simple rust lib inspired by Serilog for application-wide logging to Elastic"
homepage = "https://intility.com"
documentation = "https://docs.rs/relastic"
readme = "README.md"
license = "MIT"
repository = "https://github.com/intility/relastic"
[lib]
name = "relastic"
path = "src/lib.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.lazy_static]
version = "1.5"
[dependencies.native-tls]
version = "0.2"
features = ["vendored"]
[dependencies.reqwest]
version = "0.13"
features = [
"json",
"blocking",
"rustls",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.snafu]
version = "0.9"
[dependencies.strum]
version = "0.28"
[dependencies.strum_macros]
version = "0.28"
[dev-dependencies.mockito]
version = "1.7"
[dev-dependencies.uuid]
version = "1"
features = ["v4"]