From 641b8f252d2a112474389f497227356116bfca47 Mon Sep 17 00:00:00 2001 From: Lorenzo Delgado Date: Fri, 8 Nov 2024 11:46:23 +0100 Subject: [PATCH] chore(thegraph-core): update crate readme (#357) Signed-off-by: Lorenzo Delgado --- thegraph-core/Cargo.toml | 2 +- thegraph-core/README.md | 7 ++++--- thegraph-core/src/lib.rs | 2 +- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/thegraph-core/Cargo.toml b/thegraph-core/Cargo.toml index a361218..6a1c7f9 100644 --- a/thegraph-core/Cargo.toml +++ b/thegraph-core/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "thegraph-core" -description = "A collection of Rust modules shared between The Graph's network services" +description = "Rust core modules for The Graph network" version = "0.7.0" repository = "https://github.com/edgeandnode/toolshed" authors = ["Lorenzo Delgado (LNSD) "] diff --git a/thegraph-core/README.md b/thegraph-core/README.md index f04def1..0232f1d 100644 --- a/thegraph-core/README.md +++ b/thegraph-core/README.md @@ -1,11 +1,12 @@ thegraph-core ------------- -[![Crates.io](https://img.shields.io/crates/v/thegraph-core)](https://crates.io/crates/thegraph-core) -[![License](https://img.shields.io/badge/License-MIT-blue.svg)](../LICENSE) +[![crates.io](https://img.shields.io/crates/v/thegraph-core)](https://crates.io/crates/thegraph-core) +[![license](https://img.shields.io/badge/License-MIT-blue.svg)](../LICENSE) [![ci](https://github.com/edgeandnode/toolshed/actions/workflows/ci.yml/badge.svg)](https://github.com/edgeandnode/toolshed/actions/workflows/ci.yml) +[![docs.rs](https://img.shields.io/docsrs/thegraph-core)](https://docs.rs/thegraph-core) -A collection of Rust modules shared between The Graph's network services. +Rust core modules for _The Graph_ network. ## Usage diff --git a/thegraph-core/src/lib.rs b/thegraph-core/src/lib.rs index 4ba41b7..03709dd 100644 --- a/thegraph-core/src/lib.rs +++ b/thegraph-core/src/lib.rs @@ -1,4 +1,4 @@ -//! A collection of Rust modules that are shared between _The Graph_'s network services. +//! Rust core modules for _The Graph_ network. #[doc(inline)] pub use alloy_primitives::{address, Address, BlockHash, BlockNumber, BlockTimestamp, ChainId};