From 37f5f910118342d557a82ac38322bfb9129b321d Mon Sep 17 00:00:00 2001 From: David Teller Date: Sun, 3 Feb 2019 14:20:50 +0100 Subject: [PATCH] Cargo.toml: pointing to the extracted doc Pointing twice to `README.md` doesn't seem necessary :) --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index e0d39b00..a2a134b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ version = "3.1.8" authors = ["Daniel Reiter Horn ", "The Brotli Authors"] description = "A brotli compressor and decompressor that with an interface avoiding the rust stdlib. This makes it suitable for embedded devices and kernels. It is designed with a pluggable allocator so that the standard lib's allocator may be employed. The default build also includes a stdlib allocator and stream interface. Disable this with --features=no-stdlib. All included code is safe." license = "BSD-3-Clause/MIT" -documentation = "https://github.com/dropbox/rust-brotli/blob/master/README.md" +documentation = "https://docs.rs/brotli/" homepage = "https://github.com/dropbox/rust-brotli" repository = "https://github.com/dropbox/rust-brotli" keywords = ["brotli", "decompression", "lz77", "huffman", "nostd"]