20 lines
571 B
TOML
20 lines
571 B
TOML
[package]
|
|
name = "rdkafka-example"
|
|
version = "0.3.0"
|
|
authors = ["Pranav Bhatt <adpranavb2000@gmail.com>"]
|
|
edition = "2018"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait = "^0.1.33"
|
|
cloudevents-sdk = { path = "../..", features = ["rdkafka"] }
|
|
lazy_static = "1.4.0"
|
|
bytes = "^1.0"
|
|
url = { version = "^2.1", features = ["serde"] }
|
|
serde_json = "^1.0"
|
|
futures = "^0.3"
|
|
tokio = { version = "^1.0", features = ["full"] }
|
|
clap = "2.33.1"
|
|
rdkafka = { version = "^0.28", features = ["cmake-build"] }
|