-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
44 lines (42 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
44 lines (42 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[workspace]
members = [
"examples/*",
"crates/*",
]
resolver = "2"
[workspace.package]
edition = "2021"
homepage = "https://github.com/firelink-data/evolution"
repository = "https://github.com/firelink-data/evolution"
authors = [
"Ted Hammarlund <TedHammarlund@gmail.com>",
"Rickard Lundin <rickard@x14.se>",
"Wilhelm Ågren <wilhelmagren98@gmail.com>",
]
license = "MIT"
version = "1.3.0"
readme = "README.md"
categories = [
"science",
"database",
"concurrency",
"command-line-interface",
]
keywords = [
"arrow",
"parquet",
"concurrency",
"data-engineering",
"ETL",
]
description = "Efficiently evolve your old fixed-length data files into modern file formats."
[workspace.dependencies]
evolution-builder = { path = "crates/evolution-builder", version = "1.3.0" }
evolution-common = { path = "crates/evolution-common", version = "1.3.0" }
evolution-converter = { path = "crates/evolution-converter", version = "1.3.0" }
evolution-mocker = { path = "crates/evolution-mocker", version = "1.3.0" }
evolution-parser = { path = "crates/evolution-parser", version = "1.3.0" }
evolution-schema = { path = "crates/evolution-schema", version = "1.3.0" }
evolution-slicer = { path = "crates/evolution-slicer", version = "1.3.0" }
evolution-target = { path = "crates/evolution-target", version = "1.3.0" }
evolution-writer = { path = "crates/evolution-writer", version = "1.3.0" }