feat: rust fake data gen

This commit is contained in:
counterweight 2025-07-24 23:10:24 +02:00
parent 5982642ba3
commit e5d9eca47f
Signed by: counterweight
GPG key ID: 883EDBAA726BD96C
5 changed files with 2188 additions and 0 deletions

11
rust/Cargo.toml Normal file
View file

@ -0,0 +1,11 @@
[package]
name = "meltano_playground"
version = "0.1.0"
edition = "2021"
[dependencies]
tokio = { version = "1", features = ["full"] }
sqlx = { version = "0.7", features = ["runtime-tokio", "postgres"] }
fake = { version = "4", features = ["derive"] }
rand = { version = "0.9.2" }
dotenvy = { version = "0.15.7" }