Skip to content

Commit 89a44a1

Browse files
committed
build: update workspace deps and crates/lib names
1 parent e970b66 commit 89a44a1

11 files changed

Lines changed: 90 additions & 23 deletions

File tree

Cargo.toml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,20 @@ authors = [
1717
license = "MIT"
1818
version = "1.2.0"
1919
readme = "README.md"
20+
keywords = [
21+
"arrow",
22+
"parquet",
23+
""
24+
]
25+
description = "Efficiently evolve your old fixed-length data files into modern file formats. "
26+
27+
[workspace.dependencies]
28+
evolution-builder = { path = "crates/evolution-builder", version = "1.2.0" }
29+
evolution-common = { path = "crates/evolution-common", version = "1.2.0" }
30+
evolution-converter = { path = "crates/evolution-converter", version = "1.2.0" }
31+
evolution-mocker = { path = "crates/evolution-mocker", version = "1.2.0" }
32+
evolution-parser = { path = "crates/evolution-parser", version = "1.2.0" }
33+
evolution-schema = { path = "crates/evolution-schema", version = "1.2.0" }
34+
evolution-slicer = { path = "crates/evolution-slicer", version = "1.2.0" }
35+
evolution-target = { path = "crates/evolution-target", version = "1.2.0" }
36+
evolution-writer = { path = "crates/evolution-writer", version = "1.2.0" }

crates/evolution-builder/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,14 @@ repository = { workspace = true }
99
license = { workspace = true }
1010
readme = { workspace = true }
1111

12+
[lib]
13+
name = "evolution_builder"
14+
path = "src/lib.rs"
15+
bench = false
16+
1217
[dependencies]
13-
evolution-common = { path = "../evolution-common", version = "1.2.0" }
14-
evolution-parser = { path = "../evolution-parser", version = "1.2.0" }
18+
evolution-common = { workspace = true }
19+
evolution-parser = { workspace = true }
1520
arrow = { version = "51.0.0", default-features = false }
1621
log = "0.4.21"
1722
half = "2.4.1"

crates/evolution-common/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ repository = { workspace = true }
99
license = { workspace = true }
1010
readme = { workspace = true }
1111

12+
[lib]
13+
name = "evolution_common"
14+
path = "src/lib.rs"
15+
bench = false
16+
1217
[dependencies]
1318
log = "0.4.21"
1419
num_cpus = "1.16.0"

crates/evolution-converter/Cargo.toml

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,19 @@ repository = { workspace = true }
99
license = { workspace = true }
1010
readme = { workspace = true }
1111

12+
[lib]
13+
name = "evolution_converter"
14+
path = "src/lib.rs"
15+
bench = false
16+
1217
[dependencies]
1318
arrow = "51.0.0"
1419
crossbeam = "0.8.4"
15-
evolution-builder = { path = "../evolution-builder", version = "1.2.0" }
16-
evolution-common = { path = "../evolution-common", version = "1.2.0" }
17-
evolution-schema = { path = "../evolution-schema", version = "1.2.0" }
18-
evolution-slicer = { path = "../evolution-slicer", version = "1.2.0" }
19-
evolution-writer = { path = "../evolution-writer", version = "1.2.0" }
20+
evolution-builder = { workspace = true }
21+
evolution-common = { workspace = true }
22+
evolution-schema = { workspace = true }
23+
evolution-slicer = { workspace = true }
24+
evolution-writer = { workspace = true }
2025
log = "0.4.21"
2126
num_cpus = "1.16.0"
2227
parquet = "51.0.0"

crates/evolution-mocker/Cargo.toml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,16 @@ repository = { workspace = true }
99
license = { workspace = true }
1010
readme = { workspace = true }
1111

12+
[lib]
13+
name = "evolution_mocker"
14+
path = "src/lib.rs"
15+
bench = false
16+
1217
[dependencies]
1318
crossbeam = "0.8.4"
14-
evolution-common = { path = "../evolution-common", version = "1.2.0" }
15-
evolution-schema = { path = "../evolution-schema", version = "1.2.0" }
16-
evolution-writer = { path = "../evolution-writer", version = "1.2.0" }
19+
evolution-common = { workspace = true }
20+
evolution-schema = { workspace = true }
21+
evolution-writer = { workspace = true }
1722
faker_rand = "0.1.1"
1823
half = "2.4.1"
1924
log = "0.4.21"

crates/evolution-parser/Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@ repository = { workspace = true }
99
license = { workspace = true }
1010
readme = { workspace = true }
1111

12+
[lib]
13+
name = "evolution_parser"
14+
path = "src/lib.rs"
15+
bench = false
16+
1217
[dependencies]
1318
atoi_simd = "0.16.0"
14-
evolution-common = { path = "../evolution-common", version = "1.2.0" }
19+
evolution-common = { workspace = true }
1520
log = "0.4.21"
1621
padder = "1.2.0"

crates/evolution-schema/Cargo.toml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "evolution-schema"
3-
description = "Standard implementation of a schema used with evolution."
3+
description = "Schema implementations for evolution."
44
version = { workspace = true }
55
edition = { workspace = true }
66
authors = { workspace = true }
@@ -9,10 +9,15 @@ repository = { workspace = true }
99
license = { workspace = true }
1010
readme = { workspace = true }
1111

12+
[lib]
13+
name = "evolution_schema"
14+
path = "src/lib.rs"
15+
bench = false
16+
1217
[dependencies]
13-
evolution-builder = { path = "../evolution-builder", version = "1.2.0" }
14-
evolution-common = { path = "../evolution-common" , version = "1.2.0" }
15-
evolution-parser = { path = "../evolution-parser", version = "1.2.0" }
18+
evolution-builder = { workspace = true }
19+
evolution-common = { workspace = true }
20+
evolution-parser = { workspace = true }
1621
arrow = { version = "51.0.0", default-features = false }
1722
deltalake = "0.17.3"
1823
padder = { version = "1.2.0", features = ["serde"] }

crates/evolution-slicer/Cargo.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@ repository = { workspace = true }
99
license = { workspace = true }
1010
readme = { workspace = true }
1111

12+
[lib]
13+
name = "evolution_slicer"
14+
path = "src/lib.rs"
15+
bench = false
16+
1217
[dependencies]
13-
evolution-common = { path = "../evolution-common", version = "1.2.0" }
18+
evolution-common = { workspace = true }
1419
log = "0.4.21"

crates/evolution-target/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,10 @@ repository = { workspace = true }
99
license = { workspace = true }
1010
readme = { workspace = true }
1111

12+
[lib]
13+
name = "evolution_target"
14+
path = "src/lib.rs"
15+
bench = false
16+
1217
[dependencies]
1318
clap = { version = "4.5.4", features = ["derive"] }

crates/evolution-writer/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,13 @@ repository = { workspace = true }
99
license = { workspace = true }
1010
readme = { workspace = true }
1111

12+
[lib]
13+
name = "evolution_writer"
14+
path = "src/lib.rs"
15+
bench = false
16+
1217
[dependencies]
1318
arrow = "51.0.0"
14-
evolution-builder = { path = "../evolution-builder", version = "1.2.0" }
15-
evolution-common = { path = "../evolution-common", version = "1.2.0" }
19+
evolution-builder = { workspace = true }
20+
evolution-common = { workspace = true }
1621
parquet = "51.0.0"

0 commit comments

Comments
 (0)