[package]
edition = "2021"
rust-version = "1.88"
name = "datasynth-output"
version = "5.35.2"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Output sinks for CSV, Parquet, JSON, and streaming formats"
homepage = "https://github.com/mivertowski/SyntheticData"
readme = "README.md"
keywords = [
"synthetic-data",
"accounting",
"financial",
"test-data",
"data-generation",
]
categories = [
"simulation",
"command-line-utilities",
]
license = "Apache-2.0"
repository = "https://github.com/mivertowski/SyntheticData"
[lib]
name = "datasynth_output"
path = "src/lib.rs"
[[test]]
name = "csv_output_integration"
path = "tests/csv_output_integration.rs"
[[test]]
name = "json_output_integration"
path = "tests/json_output_integration.rs"
[[test]]
name = "parquet_integration"
path = "tests/parquet_integration.rs"
[[test]]
name = "xbrl_test"
path = "tests/xbrl_test.rs"
[dependencies.arrow]
version = "58"
features = ["prettyprint"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.csv]
version = "1.3"
[dependencies.datasynth-core]
version = "5.35.2"
[dependencies.itoa]
version = "1.0"
[dependencies.parquet]
version = "58"
features = [
"arrow",
"async",
"zstd",
"lz4",
"snap",
]
[dependencies.rust_decimal]
version = "1.36"
features = [
"serde",
"serde-with-str",
"maths",
]
[dependencies.ryu]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.zstd]
version = "0.13"
[dev-dependencies.proptest]
version = "1.11"
[dev-dependencies.rust_decimal_macros]
version = "1.36"
[dev-dependencies.tempfile]
version = "3.26"