We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea5eb87 commit 693f83bCopy full SHA for 693f83b
parser/Cargo.toml
@@ -6,7 +6,7 @@ authors = ["Eric Scouten <[email protected]>"]
6
license = "MIT OR Apache-2.0"
7
documentation = "https://docs.rs/asciidoc-parser"
8
repository = "https://github.com/scouten/asciidoc-parser"
9
-readme = "README.md"
+readme = "../README.md"
10
edition = "2021"
11
keywords = ["asciidoc", "parser"]
12
categories = ["parser-implementations"]
parser/src/lib.rs
@@ -4,7 +4,7 @@
4
#![deny(clippy::unwrap_used)]
5
#![deny(missing_docs)]
#![deny(warnings)]
-#![doc = include_str!("../../README.md")]
+#![doc = include_str!(concat!("../", std::env!("CARGO_PKG_README")))]
pub mod attributes;
0 commit comments