Skip to content

Commit 20a5fb9

Browse files
committed
add symlink to the toplevel readme so both build and publish can see the file on the same path
1 parent 74a62d9 commit 20a5fb9

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

ruzstd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://github.com/KillingSpark/zstd-rs"
88
repository = "https://github.com/KillingSpark/zstd-rs"
99
description = "A decoder for the zstd compression format"
1010
exclude = ["decodecorpus_files/*", "dict_tests/*", "fuzz_decodecorpus/*"]
11-
readme = "../Readme.md"
11+
readme = "Readme.md"
1212
keywords = ["zstd", "zstandard", "decompression"]
1313
categories = ["compression"]
1414

ruzstd/Readme.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../Readme.md

ruzstd/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
//! Compression can be achieved by using the [`encoding::compress`]/[`encoding::compress_to_vec`]
1111
//! functions or [`encoding::FrameCompressor`]
1212
//!
13-
#![doc = include_str!("../../Readme.md")]
13+
#![doc = include_str!("../Readme.md")]
1414
#![no_std]
1515
#![deny(trivial_casts, trivial_numeric_casts, rust_2018_idioms)]
1616

0 commit comments

Comments
 (0)