[package] name = "streaming-platform" version = "0.1.0" authors = ["Maximb "] license = "MIT" readme = "README.md" keywords = ["message", "broker", "stream"] categories = ["network-programming", "asynchronous"] repository = "https://github.com/astromq/streaming-platform" documentation = "https://docs.rs/streaming-platform" description = """ Data streaming platform and message broker with concurrent data transfer capabilities. """ edition = "2018" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] log = "0.4" bytes = "0.5" futures = { version = "0.3", features = ["async-await"] } rand = "0.7" siphasher = "0.2" serde = "1.0" serde_derive = "1.0" serde_json = "1.0" toml = "0.5" tokio = { version = "0.2", features = ["full"] } hyper = { version = "0.13", optional = true } sp-dto = "0.1" [features] default = [] http = ["hyper"] [dev-dependencies] env_logger = "0.7"