You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-10Lines changed: 9 additions & 10 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ The project is structured as a monorepo which hosts all of the *evolution* frame
11
11
12
12
## Installation
13
13
14
-
The easiest way to install a complete *evolution* binary on your system is by using the [Cargo](https://crates.io/) package manager (which downloads it from [this](https://crates.io/crates/evolution) link).
14
+
The easiest way to install an *evolution* binary on your system with support for all implemented output targets is by using the [Cargo](https://crates.io/) package manager (which downloads it from [this link](https://crates.io/crates/evolution)). This binary can be found at [examples/full](examples/full) in this repo.
15
15
16
16
```
17
17
cargo install evolution
@@ -29,13 +29,12 @@ cd evolution
29
29
cargo build --release
30
30
```
31
31
32
-
If you want to integrate any of the evolution crates in your own project, simply add them as dependencies to your projects Cargo.toml file, for example.
32
+
If you want to integrate any of the evolution crates in your own project that you're building, simply add them as dependencies to your projects Cargo.toml file like you would any other third-party dependecy, like below.
33
33
34
34
```toml
35
35
[dependencies]
36
-
evolution-common = "1.0.0"
37
-
evolution-schema = "1.0.0"
38
-
...
36
+
evolution-common = "1.2.0"
37
+
evolution-schema = "1.2.0"
39
38
```
40
39
41
40
@@ -48,10 +47,10 @@ An example schema can be found [here](https://github.com/firelink-data/evolution
48
47
49
48
## Quick start
50
49
51
-
If you install the program as explained above then by simply running the binary you will see the following helpful usage print:
50
+
If you install the program as explained above then by simply running the binary you will see the following usage print:
52
51
53
52
```
54
-
🦖 Evolve your fixed-length data files into Apache Parquet, fully parallelized!
53
+
Efficiently evolve your old fixed-length data files into modern file formats.
55
54
56
55
Usage: evolution.exe [OPTIONS] <COMMAND>
57
56
@@ -64,7 +63,7 @@ Options:
64
63
-N, --n-threads <N_THREADS>
65
64
Enable multithreading and set the number of threads (logical cores) to use [default: 1]
0 commit comments