Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(thegraph-core): update crate readme #357

Merged
merged 1 commit into from
Nov 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion thegraph-core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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) <[email protected]>"]
Expand Down
7 changes: 4 additions & 3 deletions thegraph-core/README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
2 changes: 1 addition & 1 deletion thegraph-core/src/lib.rs
Original file line number Diff line number Diff line change
@@ -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};
Expand Down
Loading