Skip to content

Commit

Permalink
Move pica-record crate to root directory (#813)
Browse files Browse the repository at this point in the history
Signed-off-by: Nico Wagner <[email protected]>
  • Loading branch information
nwagner84 authored Sep 2, 2024
1 parent 5ae2a08 commit c93572e
Show file tree
Hide file tree
Showing 27 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- { name: pica-format, fuzz-dir: crates/pica-format/fuzz, target: fuzz-format, max-total-time: 300 }
- { name: pica-path, fuzz-dir: crates/pica-path/fuzz, target: fuzz-path, max-total-time: 300 }
- { name: pica-record-matcher, fuzz-dir: crates/pica-matcher/fuzz, target: fuzz-record-matcher, max-total-time: 300 }
- { name: pica-record-ref, fuzz-dir: crates/pica-record/fuzz, target: fuzz-record-ref, max-total-time: 300 }
- { name: pica-record-ref, fuzz-dir: pica-record/fuzz, target: fuzz-record-ref, max-total-time: 300 }
- { name: pica-select-query, fuzz-dir: crates/pica-select/fuzz, target: fuzz-query, max-total-time: 300 }
steps:
- uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
"crates/pica-lint",
"crates/pica-matcher",
"crates/pica-path",
"crates/pica-record",
"pica-record",
"crates/pica-select",
"crates/pica-toolkit",
"crates/pica-utils"
Expand All @@ -26,7 +26,7 @@ rust-version = "1.76"
pica-format = { version = "0.1", path = "./crates/pica-format" }
pica-matcher = { version = "0.25", path = "./crates/pica-matcher" }
pica-path = { version = "0.25", path = "./crates/pica-path" }
pica-record = { version = "0.25", path = "./crates/pica-record" }
pica-record = { version = "0.25", path = "./pica-record" }
pica-select = { version = "0.25", path = "./crates/pica-select" }
pica-utils = { version = "0.25", path = "./crates/pica-utils" }

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ fn reader_builder_from_reader() {
#[test]
fn reader_builder_from_path() {
let path = PathBuf::from(env!("CARGO_MANIFEST_DIR"))
.join("../../tests/data/DUMP.dat.gz");
.join("../tests/data/DUMP.dat.gz");

let mut reader = ReaderBuilder::new().from_path(path).unwrap();
let mut count = 0;
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit c93572e

Please sign in to comment.