Skip to content

Commit 91341cb

Browse files
authored
Fix README location for vortex rustdoc (#2576)
Verified locally by running: ``` cargo publish --workspace --dry-run --exclude bench-vortex --exclude vortex-fuzz --exclude xtask --exclude pyvortex --allow-dirty -Z package-workspace ```
1 parent ccdb140 commit 91341cb

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

vortex/src/lib.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/../README.md"))]
1+
// https://github.com/rust-lang/cargo/pull/11645#issuecomment-1536905941
2+
#![doc = include_str!(concat!("../", env!("CARGO_PKG_README")))]
23

34
pub use vortex_array::*;
45
#[cfg(feature = "files")]

0 commit comments

Comments
 (0)