Skip to content

Commit cb1a35a

Browse files
authored
Merge pull request #80 from comnik/graphql_v2
Graphql v2
2 parents 9eacf17 + 6367daf commit cb1a35a

9 files changed

Lines changed: 788 additions & 185 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,8 @@ keywords = ["differential", "dataflow", "datalog", "graphql", "query"]
1414
license = "MIT"
1515

1616
[dependencies]
17-
# timely = { version = "0.9.0", features = ["bincode"] }
18-
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", features = ["bincode"] }
19-
# differential-dataflow = { version = "0.9.0" }
20-
differential-dataflow = { git = "https://github.com/TimelyDataflow/differential-dataflow" }
17+
timely = { version = "0.10.0", features = ["bincode"] }
18+
differential-dataflow = { version = "0.10.0" }
2119
serde = "1"
2220
serde_derive = "1"
2321
log = "0.4"

rust-toolchain

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.34.1
1+
1.36.0

src/domain/mod.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ where
124124
InputSemantics::CardinalityMany => pairs.as_collection().distinct(),
125125
};
126126

127+
// @TODO should only create this if used later
127128
let tuples_reverse = tuples.map(|(e, v)| (v, e));
128129

129130
// Propose traces are used in general, whereas the other

0 commit comments

Comments
 (0)