forked from SeaQL/sea-streamer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (42 loc) · 1.9 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[workspace]
members = [
".",
"examples",
"sea-streamer-kafka",
"sea-streamer-redis",
"sea-streamer-runtime",
"sea-streamer-socket",
"sea-streamer-stdio",
"sea-streamer-types",
]
[package]
name = "sea-streamer"
version = "0.2.0"
authors = ["Chris Tsang <[email protected]>"]
edition = "2021"
description = "🌊 The stream processing toolkit for Rust"
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/sea-streamer"
repository = "https://github.com/SeaQL/sea-streamer"
categories = ["concurrency"]
keywords = ["async", "stream", "kafka", "stream-processing"]
rust-version = "1.60"
[package.metadata.docs.rs]
features = ["json", "kafka", "stdio", "socket"]
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
sea-streamer-types = { version = "0.2", path = "sea-streamer-types" }
sea-streamer-kafka = { version = "0.2", path = "sea-streamer-kafka", optional = true }
sea-streamer-redis = { version = "0.2", path = "sea-streamer-redis", optional = true }
sea-streamer-stdio = { version = "0.2", path = "sea-streamer-stdio", optional = true }
sea-streamer-socket = { version = "0.2", path = "sea-streamer-socket", optional = true }
sea-streamer-runtime = { version = "0.2", path = "sea-streamer-runtime", optional = true }
[features]
json = ["sea-streamer-types/json"]
kafka = ["sea-streamer-kafka", "sea-streamer-socket?/backend-kafka"]
redis = ["sea-streamer-redis", "sea-streamer-socket?/backend-redis"]
stdio = ["sea-streamer-stdio", "sea-streamer-socket?/backend-stdio"]
socket = ["sea-streamer-socket"]
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"]