From 7ca05bd95001745009fb09ca47405cbe22ec923f Mon Sep 17 00:00:00 2001 From: Nixon <43715558+nixonyh@users.noreply.github.com> Date: Wed, 22 Oct 2025 16:31:47 +0800 Subject: [PATCH 1/2] Add README badges --- README.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/README.md b/README.md index 0dc4e40..5ef468a 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,12 @@ # Field Path +[![License](https://img.shields.io/badge/license-MIT%2FApache-blue.svg)](https://github.com/voxell-tech/field_path#license) +[![Crates.io](https://img.shields.io/crates/v/field_path.svg)](https://crates.io/crates/field_path) +[![Downloads](https://img.shields.io/crates/d/field_path.svg)](https://crates.io/crates/field_path) +[![Docs](https://docs.rs/field_path/badge.svg)](https://docs.rs/field_path/latest/field_path/) +[![CI](https://github.com/voxell-tech/field_path/workflows/CI/badge.svg)](https://github.com/voxell-tech/field_path/actions) +[![Discord](https://img.shields.io/discord/442334985471655946.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](https://discord.gg/Mhnyp6VYEQ) + **`field_path`** provides a lightweight and type-safe abstraction for referencing and accessing nested fields within structs. From f41260f89dec2be46433a2f6f9a2754086be8572 Mon Sep 17 00:00:00 2001 From: Nixon <43715558+nixonyh@users.noreply.github.com> Date: Wed, 22 Oct 2025 16:33:04 +0800 Subject: [PATCH 2/2] Bump minor version --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 0e59395..37ef492 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "field_path" description = "Type-safe, no-std field access and reflection utilities." -version = "0.2.0" +version = "0.2.1" edition = "2024" license = "MIT OR Apache-2.0" repository = "https://github.com/voxell-tech/field_path"