# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" rust-version = "1.60" name = "sea-streamer" version = "0.5.0" authors = ["Chris Tsang "] description = "🌊 The stream processing toolkit for Rust" documentation = "https://docs.rs/sea-streamer" readme = "README.md" keywords = [ "async", "stream", "kafka", "stream-processing", ] categories = ["concurrency"] license = "MIT OR Apache-2.0" repository = "https://github.com/SeaQL/sea-streamer" [package.metadata.docs.rs] features = [ "json", "kafka", "stdio", "socket", ] rustdoc-args = [ "--cfg", "docsrs", ] [dependencies.sea-streamer-file] version = "0.5" optional = true [dependencies.sea-streamer-kafka] version = "0.5" optional = true [dependencies.sea-streamer-redis] version = "0.5" optional = true [dependencies.sea-streamer-runtime] version = "0.5" optional = true [dependencies.sea-streamer-socket] version = "0.5" optional = true [dependencies.sea-streamer-stdio] version = "0.5" optional = true [dependencies.sea-streamer-types] version = "0.5" [features] file = [ "sea-streamer-file", "sea-streamer-socket?/backend-file", ] json = ["sea-streamer-types/json"] kafka = [ "sea-streamer-kafka", "sea-streamer-socket?/backend-kafka", ] redis = [ "sea-streamer-redis", "sea-streamer-socket?/backend-redis", ] runtime = ["sea-streamer-runtime"] runtime-async-std = [ "sea-streamer-socket?/runtime-async-std", "sea-streamer-kafka?/runtime-async-std", "sea-streamer-redis?/runtime-async-std", "sea-streamer-runtime/runtime-async-std", ] runtime-tokio = [ "sea-streamer-socket?/runtime-tokio", "sea-streamer-kafka?/runtime-tokio", "sea-streamer-redis?/runtime-tokio", "sea-streamer-runtime/runtime-tokio", ] socket = ["sea-streamer-socket"] stdio = [ "sea-streamer-stdio", "sea-streamer-socket?/backend-stdio", ]