[package]
edition = "2024"
name = "wp-data-fmt"
version = "0.2.4"
authors = ["WarpParse Dev Team"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Format wp_model_core records into JSON, CSV, KV, ProtoText, SQL, and raw text for WarpParse connectors"
homepage = "https://github.com/wp-labs/wp-data-fmt"
documentation = "https://docs.rs/wp-data-fmt"
readme = "README.md"
keywords = [
"wp",
"data-format",
"json",
"csv",
"sql",
]
license = "Elastic-2.0"
repository = "https://github.com/wp-labs/wp-data-fmt"
[lib]
name = "wp_data_fmt"
path = "src/lib.rs"
[[test]]
name = "new_api_demo"
path = "tests/new_api_demo.rs"
[[test]]
name = "nginx_csv_snapshot"
path = "tests/nginx_csv_snapshot.rs"
[[test]]
name = "nginx_json_snapshot"
path = "tests/nginx_json_snapshot.rs"
[[test]]
name = "nginx_kv_snapshot"
path = "tests/nginx_kv_snapshot.rs"
[[test]]
name = "nginx_proto_txt_snapshot"
path = "tests/nginx_proto_txt_snapshot.rs"
[[test]]
name = "nginx_raw_snapshot"
path = "tests/nginx_raw_snapshot.rs"
[[test]]
name = "nginx_sql_snapshot"
path = "tests/nginx_sql_snapshot.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.wp-model-core]
version = "0.8"