[package]
edition = "2021"
rust-version = "1.75"
name = "datasynth-standards"
version = "0.2.3"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Accounting and audit standards framework for synthetic data generation (IFRS, US GAAP, ISA, SOX, PCAOB)"
readme = false
license = "Apache-2.0"
[lib]
name = "datasynth_standards"
path = "src/lib.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.datasynth-core]
version = "0.2.3"
[dependencies.rust_decimal]
version = "1.36"
features = [
"serde",
"serde-with-str",
"maths",
]
[dependencies.rust_decimal_macros]
version = "1.36"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "2.0"
[dependencies.uuid]
version = "1.11"
features = [
"v4",
"v7",
"serde",
]
[dev-dependencies.proptest]
version = "1.5"