[package]
edition = "2021"
name = "mockforge-data"
version = "0.3.71"
authors = ["SaaSy Solutions LLC <ray.clanan@saasysolutionsllc.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Data generator for MockForge - faker + RAG synthetic data engine"
homepage = "https://mockforge.dev"
documentation = "https://docs.rs/mockforge"
readme = "README.md"
keywords = [
"faker",
"data-generation",
"synthetic-data",
"testing",
"mock",
]
categories = [
"development-tools::testing",
"data-structures",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/SaaSy-Solutions/mockforge"
[features]
default = []
[lib]
name = "mockforge_data"
path = "src/lib.rs"
[[test]]
name = "data_quality_tests"
path = "tests/data_quality_tests.rs"
[[test]]
name = "dataset_validation"
path = "tests/dataset_validation.rs"
[[test]]
name = "prop_data_generation_tests"
path = "tests/prop_data_generation_tests.rs"
[[test]]
name = "rag_tests"
path = "tests/rag_tests.rs"
[[bench]]
name = "token_resolver_bench"
path = "benches/token_resolver_bench.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
features = ["macros"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.fake]
version = "3.0"
features = [
"derive",
"http",
"chrono",
"uuid",
"random_color",
]
[dependencies.fastrand]
version = "2.0"
[dependencies.hex]
version = "0.4"
[dependencies.itertools]
version = "0.14"
[dependencies.jsonschema]
version = "0.33"
[dependencies.ndarray]
version = "0.17"
[dependencies.ndarray-stats]
version = "0.5"
[dependencies.openapiv3]
version = "2.2"
[dependencies.rand]
version = "0.9"
[dependencies.regex]
version = "1.10"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2.0"
[dependencies.tokio]
version = "1.0"
features = [
"rt-multi-thread",
"macros",
"net",
"time",
"sync",
"fs",
]
[dependencies.tower]
version = "0.5"
[dependencies.tower-http]
version = "0.6"
features = ["cors"]
[dependencies.tracing]
version = "0.1"
[dependencies.url]
version = "2.5"
[dependencies.uuid]
version = "1.0"
features = ["v4"]
[dev-dependencies.criterion]
version = "0.5"
features = [
"html_reports",
"async_tokio",
]
[dev-dependencies.proptest]
version = "1.8.0"
[dev-dependencies.tokio]
version = "1.0"
features = [
"rt-multi-thread",
"macros",
"net",
"time",
"sync",
"fs",
"macros",
"test-util",
]
[lints.rust]
missing_docs = "deny"