mirror of
https://github.com/CCC-MF/bwhc-kafka-rest-proxy.git
synced 2025-07-03 00:42:53 +00:00
Initial commit
This commit is contained in:
41
Cargo.toml
Normal file
41
Cargo.toml
Normal file
@ -0,0 +1,41 @@
|
||||
[package]
|
||||
name = "bwhc-kafka-rest-proxy"
|
||||
version = "0.1.0"
|
||||
edition = "2021"
|
||||
authors = ["Paul-Christian Volkmer <volkmer_p@ukw.de>"]
|
||||
license = "AGPL-3.0"
|
||||
description = "bwHC MTB-File REST Proxy für Kafka"
|
||||
|
||||
# Dependencies
|
||||
|
||||
[dependencies.log]
|
||||
version = "0.4"
|
||||
|
||||
[dependencies.simple-log]
|
||||
version = "1.6"
|
||||
|
||||
[dependencies.axum]
|
||||
version = "0.7"
|
||||
|
||||
[dependencies.tokio]
|
||||
version = "1.36"
|
||||
features = ["rt-multi-thread"]
|
||||
|
||||
[dependencies.serde]
|
||||
version = "1.0"
|
||||
features = ["derive"]
|
||||
|
||||
[dependencies.serde_json]
|
||||
version = "1.0"
|
||||
|
||||
[dependencies.rdkafka]
|
||||
version = "0.36"
|
||||
features = [ "cmake-build", "libz-static" ]
|
||||
|
||||
[dependencies.uuid]
|
||||
version = "1.7"
|
||||
features = [ "v4" ]
|
||||
|
||||
[dependencies.bwhc-dto]
|
||||
git = "https://github.com/ccc-mf/bwhc-dto-rs"
|
||||
branch = "master"
|
Reference in New Issue
Block a user