[package]
edition = "2024"
rust-version = "1.89"
name = "kibana-sync"
version = "0.2.2"
authors = ["Ryan Eno"]
build = false
include = [
"src/**",
"Cargo.toml",
"README.md",
"../../LICENSE",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Reusable Kibana sync library for saved objects, spaces, agents, tools, skills, and workflows"
homepage = "https://github.com/VimCommando/kibana-object-manager"
documentation = "https://docs.rs/kibana-sync"
readme = "README.md"
keywords = [
"kibana",
"elasticsearch",
"client",
"saved-objects",
"sync",
]
categories = [
"api-bindings",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/VimCommando/kibana-object-manager"
[lib]
name = "kibana_sync"
path = "src/lib.rs"
[dependencies.base64]
version = "^0.22"
[dependencies.json5]
version = "^1.0"
[dependencies.reqwest]
version = "^0.12"
features = [
"json",
"multipart",
]
[dependencies.semver]
version = "1"
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.140"
[dependencies.tokio]
version = "1"
features = ["sync"]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "^2.5.0"
[dependencies.yaml_serde]
version = "0.10.4"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tokio]
version = "1"
features = [
"macros",
"rt",
]