File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -17,3 +17,20 @@ authors = [
1717license = " MIT"
1818version = " 1.2.0"
1919readme = " 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" }
Original file line number Diff line number Diff line change @@ -9,9 +9,14 @@ repository = { workspace = true }
99license = { workspace = true }
1010readme = { 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 }
1520arrow = { version = " 51.0.0" , default-features = false }
1621log = " 0.4.21"
1722half = " 2.4.1"
Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ repository = { workspace = true }
99license = { workspace = true }
1010readme = { workspace = true }
1111
12+ [lib ]
13+ name = " evolution_common"
14+ path = " src/lib.rs"
15+ bench = false
16+
1217[dependencies ]
1318log = " 0.4.21"
1419num_cpus = " 1.16.0"
Original file line number Diff line number Diff line change @@ -9,14 +9,19 @@ repository = { workspace = true }
99license = { workspace = true }
1010readme = { workspace = true }
1111
12+ [lib ]
13+ name = " evolution_converter"
14+ path = " src/lib.rs"
15+ bench = false
16+
1217[dependencies ]
1318arrow = " 51.0.0"
1419crossbeam = " 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 }
2025log = " 0.4.21"
2126num_cpus = " 1.16.0"
2227parquet = " 51.0.0"
Original file line number Diff line number Diff line change @@ -9,11 +9,16 @@ repository = { workspace = true }
99license = { workspace = true }
1010readme = { workspace = true }
1111
12+ [lib ]
13+ name = " evolution_mocker"
14+ path = " src/lib.rs"
15+ bench = false
16+
1217[dependencies ]
1318crossbeam = " 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 }
1722faker_rand = " 0.1.1"
1823half = " 2.4.1"
1924log = " 0.4.21"
Original file line number Diff line number Diff line change @@ -9,8 +9,13 @@ repository = { workspace = true }
99license = { workspace = true }
1010readme = { workspace = true }
1111
12+ [lib ]
13+ name = " evolution_parser"
14+ path = " src/lib.rs"
15+ bench = false
16+
1217[dependencies ]
1318atoi_simd = " 0.16.0"
14- evolution-common = { path = " ../evolution-common " , version = " 1.2.0 " }
19+ evolution-common = { workspace = true }
1520log = " 0.4.21"
1621padder = " 1.2.0"
Original file line number Diff line number Diff line change 11[package ]
22name = " evolution-schema"
3- description = " Standard implementation of a schema used with evolution."
3+ description = " Schema implementations for evolution."
44version = { workspace = true }
55edition = { workspace = true }
66authors = { workspace = true }
@@ -9,10 +9,15 @@ repository = { workspace = true }
99license = { workspace = true }
1010readme = { 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 }
1621arrow = { version = " 51.0.0" , default-features = false }
1722deltalake = " 0.17.3"
1823padder = { version = " 1.2.0" , features = [" serde" ] }
Original file line number Diff line number Diff line change @@ -9,6 +9,11 @@ repository = { workspace = true }
99license = { workspace = true }
1010readme = { 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 }
1419log = " 0.4.21"
Original file line number Diff line number Diff line change @@ -9,5 +9,10 @@ repository = { workspace = true }
99license = { workspace = true }
1010readme = { workspace = true }
1111
12+ [lib ]
13+ name = " evolution_target"
14+ path = " src/lib.rs"
15+ bench = false
16+
1217[dependencies ]
1318clap = { version = " 4.5.4" , features = [" derive" ] }
Original file line number Diff line number Diff line change @@ -9,8 +9,13 @@ repository = { workspace = true }
99license = { workspace = true }
1010readme = { workspace = true }
1111
12+ [lib ]
13+ name = " evolution_writer"
14+ path = " src/lib.rs"
15+ bench = false
16+
1217[dependencies ]
1318arrow = " 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 }
1621parquet = " 51.0.0"
You can’t perform that action at this time.
0 commit comments