-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes #604
- Loading branch information
Showing
8 changed files
with
45 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pica" | ||
version = "0.14.1" | ||
version = "0.15.0" | ||
authors = ["Nico Wagner <[email protected]>"] | ||
edition = "2021" | ||
license = "MIT OR Unlicense" | ||
|
@@ -13,7 +13,7 @@ bstr = "1.0" | |
clap = { version = "4.0", features = ["cargo", "derive", "wrap_help"] } | ||
clap_complete = "4.0" | ||
csv = "1.1" | ||
directories = "4.0" | ||
directories = "5.0" | ||
flate2 = "1.0" | ||
nom = "7.1" | ||
rand = "0.8" | ||
|
@@ -27,12 +27,12 @@ unicode-normalization = "0.1" | |
xml-rs = "0.8" | ||
|
||
pica-matcher = { version = "0.1", path = "pica-matcher" } | ||
pica-path = { version = "0.1", path = "pica-path" } | ||
pica-path = { version = "0.2", path = "pica-path" } | ||
pica-record = { version = "0.1", path = "pica-record" } | ||
|
||
[dev-dependencies] | ||
assert_cmd = "2.0" | ||
predicates = "2.1" | ||
predicates = "3.0" | ||
quickcheck = "1.0" | ||
quickcheck_macros = "1.0" | ||
tempfile = "3.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ build this project from source Rust 1.58.1 or newer is required. | |
To install the latest stable release: | ||
|
||
```bash | ||
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs --tag v0.14.1 pica | ||
$ cargo install --git https://github.com/deutsche-nationalbibliothek/pica-rs --tag v0.15.0 pica | ||
``` | ||
|
||
## Commands | ||
|
@@ -179,7 +179,7 @@ values, use the `partition` command. Note that if the field and/or | |
subfield is repeatable, the record will be written to all partitions | ||
(duplicate values will be removed), thus the resulting partitions may | ||
not be disjoint. Records that don't have the field/subfield, won't be | ||
written to a partition. | ||
written to a partition. | ||
|
||
```bash | ||
$ pica partition -s -o outdir "[email protected]" DUMP.dat.gz | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "pica-path" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2021" | ||
authors = ["Nico Wagner <[email protected]>"] | ||
license = "MIT OR Unlicense" | ||
|