Skip to content

Commit

Permalink
Update some links and fix a typo
Browse files Browse the repository at this point in the history
  • Loading branch information
atouchet committed Nov 19, 2020
1 parent adcecd3 commit 2697327
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
snap
====
A pure Rust implementation of the
[Snappy compression algorithm](http://google.github.io/snappy/).
[Snappy compression algorithm](https://google.github.io/snappy/).
Includes streaming compression and decompression using the Snappy frame format.
This implementation is ported from both the
[reference C++ implementation](https://github.com/google/snappy)
and the
[Go implementation](https://github.com/golang/snappy).

[![Build status](https://github.com/BurntSushi/rust-snappy/workflows/ci/badge.svg)](https://github.com/BurntSushi/rust-snappy/actions)
[![](http://meritbadge.herokuapp.com/snap)](https://crates.io/crates/snap)
[![](https://meritbadge.herokuapp.com/snap)](https://crates.io/crates/snap)

Licensed under the BSD 3-Clause.

Expand Down
5 changes: 3 additions & 2 deletions data/COPYING
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ Some of the benchmark data in in this directory is licensed thusly:
“Combinatorial Modeling of Chromatin Features Quantitatively Predicts DNA
Replication Timing in _Drosophila_” by Federico Comoglio and Renato Paro,
which is licensed under the CC-BY license. See
http://www.ploscompbiol.org/static/license for more ifnormation.
https://journals.plos.org/ploscompbiol/s/licenses-and-copyright for more
information.

- alice29.txt, asyoulik.txt, plrabn12.txt and lcet10.txt are from Project
Gutenberg. The first three have expired copyrights and are in the public
domain; the latter does not have expired copyright, but is still in the
public domain according to the license information
(http://www.gutenberg.org/ebooks/53).
(https://www.gutenberg.org/ebooks/53).
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ decompress data at about 800 MB/sec or more.
# Install
To use this crate with
[Cargo](http://doc.crates.io/index.html),
[Cargo](https://doc.rust-lang.org/cargo/),
simply add it as a dependency to your `Cargo.toml`:
```ignore
Expand Down
2 changes: 1 addition & 1 deletion szip/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ A pure Rust command line tool for compressing and decompressing Snappy files.
By default, this tool uses the Snappy frame format.

[![Build status](https://github.com/BurntSushi/rust-snappy/workflows/ci/badge.svg)](https://github.com/BurntSushi/rust-snappy/actions)
[![](http://meritbadge.herokuapp.com/szip)](https://crates.io/crates/szip)
[![](https://meritbadge.herokuapp.com/szip)](https://crates.io/crates/szip)

Licensed under the BSD 3-Clause.

Expand Down

0 comments on commit 2697327

Please sign in to comment.