Skip to content

Commit d0d2c03

Browse files
author
Rob Patro
committed
Rename project to rapidgzip-rust
1 parent 5a9235c commit d0d2c03

10 files changed

Lines changed: 18 additions & 18 deletions

File tree

BENCHMARKING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ Every decoder verified CRCs and wrote to a discard sink.
7575

7676
| decoder | 1 | 4 | 16 | 44 |
7777
|---|---:|---:|---:|---:|
78-
| rapidgzip-rs, zlib-rs | 0.969 | 0.407 | 0.141 | 0.130 |
78+
| rapidgzip-rust, zlib-rs | 0.969 | 0.407 | 0.141 | 0.130 |
7979
| C++ rapidgzip, zlib-ng | 1.834 | 0.623 | 0.214 | 0.136 |
8080
| gzippy | 0.764 | 0.289 | 0.118 | 0.096 |
8181

@@ -86,7 +86,7 @@ geometric mean.
8686

8787
| decoder | 1 | 4 | 16 | 44 |
8888
|---|---:|---:|---:|---:|
89-
| rapidgzip-rs, zlib-rs | 0.936 | 0.434 | 0.152 | 0.157 |
89+
| rapidgzip-rust, zlib-rs | 0.936 | 0.434 | 0.152 | 0.157 |
9090
| C++ rapidgzip, zlib-ng | 1.839 | 0.625 | 0.214 | 0.149 |
9191
| gzippy | 0.789 | 0.786 | 0.192 | 0.198 |
9292

@@ -99,7 +99,7 @@ grid point, while workers and useful later tasks remain live.
9999

100100
| decoder | 1 | 4 | 16 | 44 |
101101
|---|---:|---:|---:|---:|
102-
| rapidgzip-rs, zlib-rs | 0.812 | 0.243 | 0.086 | 0.072 |
102+
| rapidgzip-rust, zlib-rs | 0.812 | 0.243 | 0.086 | 0.072 |
103103
| C++ rapidgzip, zlib-ng | 1.048 | 0.339 | 0.139 | 0.080 |
104104
| gzippy | 0.813 | 0.378 | 0.213 | 0.353 |
105105

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[workspace]
22
members = [
33
"crates/rapidgzip-core",
4-
"crates/rapidgzip-rs",
4+
"crates/rapidgzip-rust-cli",
55
"crates/rapidgzip-bench",
66
]
77
resolver = "3"
@@ -10,7 +10,7 @@ resolver = "3"
1010
version = "0.1.0"
1111
edition = "2024"
1212
rust-version = "1.87"
13-
authors = ["rapidgzip-rs contributors"]
13+
authors = ["rapidgzip-rust contributors"]
1414
license = "BSD-3-Clause AND MIT"
1515
repository = "https://github.com/COMBINE-lab/rapidgzip-rust"
1616

LICENSE-BSD-3-CLAUSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2026, rapidgzip-rs contributors
3+
Copyright (c) 2026, rapidgzip-rust contributors
44

55
Redistribution and use in source and binary forms, with or without
66
modification, are permitted provided that the following conditions are met:

LICENSE-MIT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
MIT License
22

33
Copyright (c) 2018-2026 Mario Knespel and rapidgzip contributors
4-
Copyright (c) 2026 rapidgzip-rs contributors
4+
Copyright (c) 2026 rapidgzip-rust contributors
55

66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# rapidgzip-rs
1+
# rapidgzip-rust
22

3-
`rapidgzip-rs` is a Rust 2024, decoder-only implementation of the
4-
[rapidgzip](https://github.com/mxmlnkn/rapid-gzip) approach to parallel gzip
3+
`rapidgzip-rust` is a Rust 2024, decoder-only implementation of the
4+
[rapidgzip](https://github.com/mxmlnkn/rapidgzip) approach to parallel gzip
55
decompression.
66

77
The library exposes both a push API writing decompressed bytes to

benchmarks/run-matrix.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ input=$1
1010
runs=${RUNS:-9}
1111
warmups=${WARMUPS:-2}
1212
thread_cells=${THREAD_CELLS:-"1 4 16 44"}
13-
rust_binary=${RAPIDGZIP_RS:-target/release/rapidgzip-rs}
13+
rust_binary=${RAPIDGZIP_RUST:-target/release/rapidgzip-rust}
1414
cpp_binary=${RAPIDGZIP_CPP:-rapidgzip}
1515
gzippy_binary=${GZIPPY:-gzippy}
1616
decoded_bytes=${DECODED_BYTES:-}
@@ -62,7 +62,7 @@ for threads in $thread_cells; do
6262
fi
6363
done
6464
for run in $(seq 1 "$runs"); do
65-
benchmark_one rapidgzip-rs "$threads" "$run" \
65+
benchmark_one rapidgzip-rust "$threads" "$run" \
6666
"$rust_binary" -P "$threads" -t "$input"
6767
if command -v "$cpp_binary" > /dev/null 2>&1 || [[ -x "$cpp_binary" ]]; then
6868
benchmark_one rapidgzip-cpp "$threads" "$run" \

crates/rapidgzip-bench/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "rapidgzip-bench"
3-
description = "Unpublished benchmark harness for rapidgzip-rs"
3+
description = "Unpublished benchmark harness for rapidgzip-rust"
44
version.workspace = true
55
edition.workspace = true
66
rust-version.workspace = true
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[package]
2-
name = "rapidgzip-rs"
2+
name = "rapidgzip-rust-cli"
33
description = "Decode-only command-line interface for rapidgzip-core"
44
version.workspace = true
55
edition.workspace = true
@@ -9,7 +9,7 @@ license.workspace = true
99
repository.workspace = true
1010

1111
[[bin]]
12-
name = "rapidgzip-rs"
12+
name = "rapidgzip-rust"
1313
path = "src/main.rs"
1414

1515
[dependencies]
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ use std::process::ExitCode;
99

1010
#[derive(Debug, Parser)]
1111
#[command(
12-
name = "rapidgzip-rs",
12+
name = "rapidgzip-rust",
1313
version,
1414
about = "Parallel, verified gzip decompression"
1515
)]
@@ -81,7 +81,7 @@ fn main() -> ExitCode {
8181
ExitCode::SUCCESS
8282
}
8383
Err(error) => {
84-
eprintln!("rapidgzip-rs: {error}");
84+
eprintln!("rapidgzip-rust: {error}");
8585
ExitCode::FAILURE
8686
}
8787
}

0 commit comments

Comments
 (0)