initial commit
This commit is contained in:
19
Cargo.toml
Normal file
19
Cargo.toml
Normal 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"] }
|
||||
Reference in New Issue
Block a user