-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
38 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ members = [ | |
|
||
[package] | ||
name = "sea-streamer" | ||
version = "0.3.2" | ||
version = "0.5.0" | ||
authors = ["Chris Tsang <[email protected]>"] | ||
edition = "2021" | ||
description = "🌊 The stream processing toolkit for Rust" | ||
|
@@ -32,13 +32,13 @@ features = ["json", "kafka", "stdio", "socket"] | |
rustdoc-args = ["--cfg", "docsrs"] | ||
|
||
[dependencies] | ||
sea-streamer-types = { version = "0.3", path = "sea-streamer-types" } | ||
sea-streamer-kafka = { version = "0.3", path = "sea-streamer-kafka", optional = true } | ||
sea-streamer-redis = { version = "0.3.2", path = "sea-streamer-redis", optional = true } | ||
sea-streamer-stdio = { version = "0.3", path = "sea-streamer-stdio", optional = true } | ||
sea-streamer-file = { version = "0.3.2", path = "sea-streamer-file", optional = true } | ||
sea-streamer-socket = { version = "0.3", path = "sea-streamer-socket", optional = true } | ||
sea-streamer-runtime = { version = "0.3", path = "sea-streamer-runtime", optional = true } | ||
sea-streamer-types = { version = "0.5", path = "sea-streamer-types" } | ||
sea-streamer-kafka = { version = "0.5", path = "sea-streamer-kafka", optional = true } | ||
sea-streamer-redis = { version = "0.5", path = "sea-streamer-redis", optional = true } | ||
sea-streamer-stdio = { version = "0.5", path = "sea-streamer-stdio", optional = true } | ||
sea-streamer-file = { version = "0.5", path = "sea-streamer-file", optional = true } | ||
sea-streamer-socket = { version = "0.5", path = "sea-streamer-socket", optional = true } | ||
sea-streamer-runtime = { version = "0.5", path = "sea-streamer-runtime", optional = true } | ||
|
||
[features] | ||
json = ["sea-streamer-types/json"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sea-streamer-benchmark" | ||
version = "0.3.0" | ||
version = "0.5.0" | ||
authors = ["Chris Tsang <[email protected]>"] | ||
edition = "2021" | ||
description = "🌊 The stream processing toolkit for Rust" | ||
|
@@ -20,7 +20,7 @@ tokio = { version = "1.10", features = ["full"], optional = true } | |
|
||
[dependencies.sea-streamer] | ||
path = ".." # remove this line in your own project | ||
version = "0.3" | ||
version = "0.5" | ||
features = ["redis", "stdio", "file", "socket"] | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sea-streamer-examples" | ||
version = "0.3.0" | ||
version = "0.5.0" | ||
authors = ["Chris Tsang <[email protected]>"] | ||
edition = "2021" | ||
description = "🌊 The stream processing toolkit for Rust" | ||
|
@@ -20,7 +20,7 @@ tokio = { version = "1.10", features = ["full"], optional = true } | |
|
||
[dependencies.sea-streamer] | ||
path = ".." # remove this line in your own project | ||
version = "0.3" | ||
version = "0.5" | ||
features = ["kafka", "redis", "stdio", "file", "socket"] | ||
|
||
[features] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sea-streamer-file" | ||
version = "0.3.9" | ||
version = "0.5.0" | ||
authors = ["Chris Tsang <[email protected]>"] | ||
edition = "2021" | ||
description = "🌊 SeaStreamer File Backend" | ||
|
@@ -24,8 +24,8 @@ flume = { version = "0.11", default-features = false, features = ["async"] } | |
lazy_static = { version = "1.4" } | ||
log = { version = "0.4", default-features = false } | ||
notify = { version = "6" } | ||
sea-streamer-types = { version = "0.3", path = "../sea-streamer-types" } | ||
sea-streamer-runtime = { version = "0.3", path = "../sea-streamer-runtime", features = ["file"]} | ||
sea-streamer-types = { version = "0.5", path = "../sea-streamer-types" } | ||
sea-streamer-runtime = { version = "0.5", path = "../sea-streamer-runtime", features = ["file"]} | ||
serde = { version = "1", optional = true, features = ["derive"] } | ||
serde_json = { version = "1", optional = true } | ||
clap = { version = "4.5", features = ["derive"], optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sea-streamer-kafka" | ||
version = "0.3.2" | ||
version = "0.5.0" | ||
authors = ["Chris Tsang <[email protected]>"] | ||
edition = "2021" | ||
description = "🌊 SeaStreamer Kafka / Redpanda Backend" | ||
|
@@ -22,8 +22,8 @@ env_logger = { version = "0.9", optional = true } | |
lazy_static = { version = "1.4" } | ||
mac_address = { version = "1" } | ||
rdkafka = { version = "0.36", default-features = false, features = ["libz"] } | ||
sea-streamer-types = { version = "0.3", path = "../sea-streamer-types" } | ||
sea-streamer-runtime = { version = "0.3", path = "../sea-streamer-runtime" } | ||
sea-streamer-types = { version = "0.5", path = "../sea-streamer-types" } | ||
sea-streamer-runtime = { version = "0.5", path = "../sea-streamer-runtime" } | ||
clap = { version = "4.5", features = ["derive", "env"], optional = true } | ||
tokio = { version = "1.10.0", optional = true } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sea-streamer-redis" | ||
version = "0.3.2" | ||
version = "0.5.0" | ||
authors = ["Chris Tsang <[email protected]>"] | ||
edition = "2021" | ||
description = "🌊 SeaStreamer Redis Backend" | ||
|
@@ -24,8 +24,8 @@ lazy_static = { version = "1.4" } | |
log = { version = "0.4", default-features = false } | ||
mac_address = { version = "1" } | ||
redis = { version = "0.25", default-features = false, features = ["acl", "streams"] } | ||
sea-streamer-types = { version = "0.3", path = "../sea-streamer-types" } | ||
sea-streamer-runtime = { version = "0.3", path = "../sea-streamer-runtime" } | ||
sea-streamer-types = { version = "0.5", path = "../sea-streamer-types" } | ||
sea-streamer-runtime = { version = "0.5", path = "../sea-streamer-runtime" } | ||
clap = { version = "4.5", features = ["derive", "env"], optional = true } | ||
thiserror = { version = "1", default-features = false } | ||
tokio = { version = "1.10.0", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "redis-streams-dump" | ||
version = "0.3.0" | ||
version = "0.5.0" | ||
authors = ["Chris Tsang <[email protected]>"] | ||
edition = "2021" | ||
description = "A small utility to dump Redis Streams content into a SeaStreamer file" | ||
|
@@ -15,9 +15,9 @@ rust-version = "1.60" | |
anyhow = { version = "1" } | ||
env_logger = { version = "0.9" } | ||
log = { version = "0.4", default-features = false } | ||
sea-streamer-file = { version = "0.3", path = "../../sea-streamer-file", features = ["runtime-tokio"] } | ||
sea-streamer-redis = { version = "0.3", path = "../../sea-streamer-redis", features = ["runtime-tokio"] } | ||
sea-streamer-types = { version = "0.3.1", path = "../../sea-streamer-types" } | ||
sea-streamer-file = { version = "0.5", path = "../../sea-streamer-file", features = ["runtime-tokio"] } | ||
sea-streamer-redis = { version = "0.5", path = "../../sea-streamer-redis", features = ["runtime-tokio"] } | ||
sea-streamer-types = { version = "0.5", path = "../../sea-streamer-types" } | ||
clap = { version = "4.5", features = ["derive"] } | ||
time = { version = "0.3", default-features = false, features = ["std", "parsing"] } | ||
tokio = { version = "1.10.0", features = ["full"]} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sea-streamer-runtime" | ||
version = "0.3.3" | ||
version = "0.5.0" | ||
authors = ["Chris Tsang <[email protected]>"] | ||
edition = "2021" | ||
description = "🌊 SeaStreamer async runtime abstraction" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sea-streamer-socket" | ||
version = "0.3.0" | ||
version = "0.5.0" | ||
authors = ["Chris Tsang <[email protected]>"] | ||
edition = "2021" | ||
description = "🌊 SeaStreamer backend-agnostic Socket API" | ||
|
@@ -18,11 +18,11 @@ rustdoc-args = ["--cfg", "docsrs"] | |
[dependencies] | ||
anyhow = { version = "1", optional = true } | ||
env_logger = { version = "0.9", optional = true } | ||
sea-streamer-kafka = { version = "0.3", path = "../sea-streamer-kafka", optional = true } | ||
sea-streamer-redis = { version = "0.3", path = "../sea-streamer-redis", optional = true } | ||
sea-streamer-stdio = { version = "0.3", path = "../sea-streamer-stdio", optional = true } | ||
sea-streamer-file = { version = "0.3", path = "../sea-streamer-file", optional = true } | ||
sea-streamer-types = { version = "0.3", path = "../sea-streamer-types" } | ||
sea-streamer-kafka = { version = "0.5", path = "../sea-streamer-kafka", optional = true } | ||
sea-streamer-redis = { version = "0.5", path = "../sea-streamer-redis", optional = true } | ||
sea-streamer-stdio = { version = "0.5", path = "../sea-streamer-stdio", optional = true } | ||
sea-streamer-file = { version = "0.5", path = "../sea-streamer-file", optional = true } | ||
sea-streamer-types = { version = "0.5", path = "../sea-streamer-types" } | ||
clap = { version = "4.5", features = ["derive"], optional = true } | ||
thiserror = { version = "1", default-features = false } | ||
tokio = { version = "1.10.0", optional = true } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sea-streamer-stdio" | ||
version = "0.3.0" | ||
version = "0.5.0" | ||
authors = ["Chris Tsang <[email protected]>"] | ||
edition = "2021" | ||
description = "🌊 SeaStreamer Standard I/O Backend" | ||
|
@@ -22,8 +22,8 @@ flume = { version = "0.11", default-features = false, features = ["async"] } | |
lazy_static = { version = "1.4" } | ||
log = { version = "0.4", default-features = false } | ||
nom = { version = "7" } | ||
sea-streamer-types = { version = "0.3", path = "../sea-streamer-types" } | ||
sea-streamer-runtime = { version = "0.3", path = "../sea-streamer-runtime" } | ||
sea-streamer-types = { version = "0.5", path = "../sea-streamer-types" } | ||
sea-streamer-runtime = { version = "0.5", path = "../sea-streamer-runtime" } | ||
serde_json = { version = "1", optional = true } | ||
clap = { version = "4.5", features = ["derive"], optional = true } | ||
thiserror = { version = "1", default-features = false } | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "sea-streamer-types" | ||
version = "0.3.1" | ||
version = "0.5.0" | ||
authors = ["Chris Tsang <[email protected]>"] | ||
edition = "2021" | ||
description = "🌊 SeaStreamer Traits & Types" | ||
|