Skip to content

Commit 1974fbf

Browse files
authored
Merge pull request #8 from macher259/main
Generation Fetcher implementation.
2 parents 5c02fff + 0fb9743 commit 1974fbf

File tree

4 files changed

+515
-1
lines changed

4 files changed

+515
-1
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
/scylla-cdc/target
33
/target
44
Cargo.lock
5+
.idea/

scylla-cdc/Cargo.toml

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,10 @@ edition = "2021"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
scylla = "0.2.1"
9+
scylla = "0.3.0"
1010
tokio = { version = "1.1.0", features = ["rt", "io-util", "net", "time", "macros", "sync"] }
11+
chrono = "0.4.19"
12+
futures = "0.3.17"
13+
14+
[dev-dependencies]
15+
hex = "0.4.3"

scylla-cdc/src/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
pub mod stream_generations;
2+
13
#[cfg(test)]
24
mod tests {
35
#[test]

0 commit comments

Comments
 (0)