Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Cleanup README include in include_str
When running cargo doc, the include_str command works fine, however, cargo publish relocates the package into target/package, so the relative path to the README is different, causing cargo publish to fail. External discussion at: rust-lang/cargo#13309 https://users.rust-lang.org/t/include-str-does-not-work-when-releasing-because-of-changed-pathes/15551/14 The solution suggested in those links is to symlink the top level README inside your package, and then consistently refer to the README in the package. That README will be copied into the right place during cargo publish.
- Loading branch information