[package]
edition = "2021"
rust-version = "1.88"
name = "seedgen"
version = "0.3.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Zero-config database seed data generator with deterministic, constraint-safe fake data"
homepage = "https://github.com/ff4f/seedgen"
documentation = "https://docs.rs/seedgen"
readme = "README.md"
keywords = [
"database",
"postgresql",
"seed",
"testing",
"fake-data",
]
categories = [
"database",
"command-line-utilities",
"development-tools::testing",
]
license = "MIT"
repository = "https://github.com/ff4f/seedgen"
[features]
default = []
integration = []
proptest = []
[lib]
name = "seedgen"
path = "src/lib.rs"
[[bin]]
name = "seedgen"
path = "src/main.rs"
[[test]]
name = "introspect"
path = "tests/integration/introspect_test.rs"
[[test]]
name = "lifecycle"
path = "tests/integration/lifecycle_tests.rs"
[[test]]
name = "lifecycle_snapshot"
path = "tests/lifecycle_snapshot.rs"
[[test]]
name = "output"
path = "tests/integration/output_test.rs"
[[test]]
name = "profile"
path = "tests/integration/profile_test.rs"
[[test]]
name = "profile_snapshot"
path = "tests/profile_snapshot.rs"
[[test]]
name = "property"
path = "tests/integration/property_tests.rs"
[[test]]
name = "resolve"
path = "tests/integration/resolve_test.rs"
[[test]]
name = "snapshot_tests"
path = "tests/snapshot_tests.rs"
[[bench]]
name = "generate_bench"
path = "benches/generate_bench.rs"
harness = false
[dependencies.anyhow]
version = "1"
[dependencies.chrono]
version = "0.4"
features = [
"serde",
"clock",
"std",
]
default-features = false
[dependencies.clap]
version = "4"
features = [
"derive",
"env",
]
[dependencies.clap_complete]
version = "4"
[dependencies.indicatif]
version = "0.17"
[dependencies.petgraph]
version = "0.6"
[dependencies.rand]
version = "0.8"
[dependencies.rand_chacha]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"postgres",
"uuid",
"chrono",
"json",
]
default-features = false
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.criterion]
version = "0.5"
features = ["async_tokio"]
[dev-dependencies.insta]
version = "1"
features = ["yaml"]
[dev-dependencies.proptest]
version = "1"