27 lines
826 B
TOML
27 lines
826 B
TOML
[package]
|
|
name = "cloudevents-sdk-rdkafka"
|
|
version = "0.3.1"
|
|
authors = ["Pranav Bhatt <adpranavb2000@gmail.com>"]
|
|
edition = "2018"
|
|
license-file = "../LICENSE"
|
|
description = "CloudEvents official Rust SDK - Kafka integration"
|
|
documentation = "https://docs.rs/cloudevents-sdk-rdkafka"
|
|
repository = "https://github.com/cloudevents/sdk-rust"
|
|
readme = "README.md"
|
|
categories = ["web-programming", "encoding"]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
bytes = "^1.0"
|
|
cloudevents-sdk = { version = "0.3.0", path = ".." }
|
|
lazy_static = "1.4.0"
|
|
rdkafka = { version = "^0.25", features = ["cmake-build"] }
|
|
|
|
[dev-dependencies]
|
|
url = { version = "^2.1" }
|
|
serde_json = "^1.0"
|
|
chrono = { version = "^0.4", features = ["serde"] }
|
|
futures = "^0.3"
|
|
version-sync = "^0.9"
|