From ff8029884bb342b93a0b1136d595f5b3e5d69888 Mon Sep 17 00:00:00 2001 From: Kepler Vital Date: Tue, 10 Dec 2024 17:22:40 +0000 Subject: [PATCH] fix: publishing needs readme to be relative to the project (#34) --- canfund-rs/README.md | 1 + canfund-rs/src/lib.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) create mode 120000 canfund-rs/README.md diff --git a/canfund-rs/README.md b/canfund-rs/README.md new file mode 120000 index 0000000..32d46ee --- /dev/null +++ b/canfund-rs/README.md @@ -0,0 +1 @@ +../README.md \ No newline at end of file diff --git a/canfund-rs/src/lib.rs b/canfund-rs/src/lib.rs index 8ef6b7c..111a6ff 100644 --- a/canfund-rs/src/lib.rs +++ b/canfund-rs/src/lib.rs @@ -1,4 +1,4 @@ -#![doc = include_str!("../../README.md")] +#![doc = include_str!("../README.md")] pub mod api; pub mod errors;