initial commit

This commit is contained in:
2025-08-20 17:34:20 +02:00
commit ca4aa96565
7 changed files with 2450 additions and 0 deletions

19
Cargo.toml Normal file
View File

@@ -0,0 +1,19 @@
[package]
name = "kafka-producer"
version = "0.1.0"
edition = "2024"
[dependencies]
clap = { version = "4", features = ["derive"] }
csv = "1"
# Serialization / parsing
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml2 = "0.1"
rdkafka = { version = "0.38", features = ["tokio"] }
schema_registry_converter = { version = "4", features = ["avro"] }
apache-avro = "0.19"
anyhow = "1"
tokio = { version = "1", features = ["full"] }