Skip to content

Commit 9bd35f3

Browse files
authored
Move differential crate from . to directory (#575)
* Move differential-dataflow to own directory Signed-off-by: Moritz Hoffmann <[email protected]> * Cleanup Signed-off-by: Moritz Hoffmann <[email protected]> * differential is a workspace dep Signed-off-by: Moritz Hoffmann <[email protected]> --------- Signed-off-by: Moritz Hoffmann <[email protected]>
1 parent e54fbb1 commit 9bd35f3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

106 files changed

+53
-107
lines changed

.travis.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

Cargo.toml

Lines changed: 3 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,6 @@
1-
[package]
2-
3-
name = "differential-dataflow"
4-
version = "0.13.6"
5-
authors = ["Frank McSherry <[email protected]>"]
6-
7-
description = "An incremental data-parallel dataflow platform"
8-
9-
# These URLs point to more information about the repository
10-
documentation = "https://docs.rs/differential-dataflow"
11-
homepage = "https://github.com/TimelyDataflow/differential-dataflow"
12-
repository = "https://github.com/TimelyDataflow/differential-dataflow.git"
13-
keywords = ["differential", "dataflow"]
14-
license = "MIT"
15-
readme = "README.md"
16-
edition="2021"
17-
181
[workspace]
192
members = [
20-
".",
3+
"differential-dataflow",
214
# "advent_of_code_2017",
225
"dogsdogsdogs",
236
"experiments",
@@ -30,32 +13,13 @@ members = [
3013
#"tpchlike",
3114
"doop"
3215
]
33-
34-
[dev-dependencies]
35-
bincode = "1.3.1"
36-
indexmap = "2.1"
37-
rand="0.4"
38-
byteorder="1"
39-
itertools="^0.13"
40-
serde_json = "1.0"
41-
graph_map = "0.1"
42-
bytemuck = "1.18.0"
43-
44-
[dependencies]
45-
columnar = "0.3"
46-
columnation = "0.1.0"
47-
fnv="1.0.2"
48-
paste = "1.0"
49-
serde = { version = "1.0", features = ["derive"] }
50-
timely = {workspace = true}
16+
resolver = "2"
5117

5218
[workspace.dependencies]
19+
differential-dataflow = { path = "differential-dataflow", default-features = false, version = "0.13.6" }
5320
timely = { version = "0.18", default-features = false }
5421
#timely = { path = "../timely-dataflow/timely/", default-features = false }
5522

56-
[features]
57-
default = ["timely/getopts"]
58-
5923
[profile.release]
6024
opt-level = 3
6125
debug = true

advent_of_code_2017/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

advent_of_code_2017/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ authors = ["Frank McSherry <[email protected]>"]
55
publish = false
66

77
[dependencies]
8-
differential-dataflow = { path = "../" }
8+
differential-dataflow = { workspace = true }
99
timely = { git = "https://github.com/frankmcsherry/timely-dataflow" }

differential-dataflow/Cargo.toml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[package]
2+
3+
name = "differential-dataflow"
4+
version = "0.13.6"
5+
authors = ["Frank McSherry <[email protected]>"]
6+
7+
description = "An incremental data-parallel dataflow platform"
8+
9+
# These URLs point to more information about the repository
10+
documentation = "https://docs.rs/differential-dataflow"
11+
homepage = "https://github.com/TimelyDataflow/differential-dataflow"
12+
repository = "https://github.com/TimelyDataflow/differential-dataflow.git"
13+
keywords = ["differential", "dataflow"]
14+
license = "MIT"
15+
readme = "../README.md"
16+
edition="2021"
17+
18+
[dev-dependencies]
19+
indexmap = "2.1"
20+
rand="0.4"
21+
itertools="^0.13"
22+
graph_map = "0.1"
23+
bytemuck = "1.18.0"
24+
25+
[dependencies]
26+
columnar = "0.3"
27+
columnation = "0.1.0"
28+
fnv="1.0.2"
29+
paste = "1.0"
30+
serde = { version = "1.0", features = ["derive"] }
31+
timely = {workspace = true}
32+
33+
[features]
34+
default = ["timely/getopts"]

benches/sort-bench.rs renamed to differential-dataflow/benches/sort-bench.rs

File renamed without changes.

examples/accumulate.rs renamed to differential-dataflow/examples/accumulate.rs

File renamed without changes.

examples/columnar.rs renamed to differential-dataflow/examples/columnar.rs

File renamed without changes.

0 commit comments

Comments
 (0)