Skip to content

Commit 8bcd643

Browse files
chore: readme cleanup
1 parent add3a64 commit 8bcd643

3 files changed

Lines changed: 14 additions & 4 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "hyprlang"
3-
version = "0.1.3"
3+
version = "0.1.4"
44
edition = "2024"
55
authors = ["Alex Spinu"]
66
description = "A scripting language interpreter and parser for Hyprlang and Hyprland configuration files."

README.md

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ A Rust reimplementation of [Hyprlang](https://github.com/hyprwm/hyprlang), the c
44

55
Hyprlang is a powerful configuration language featuring variables, nested categories, expressions, custom handlers, and more. This library provides a complete parser and configuration manager with a clean, idiomatic Rust API.
66

7+
This project is not endorsed by or affiliated with the Hyprland project/HyprWM Organization.
8+
9+
[![Rust Build](https://github.com/spinualexandru/hyprlang-rs/actions/workflows/rust.yml/badge.svg)](https://github.com/spinualexandru/hyprlang-rs/actions/workflows/rust.yml)
10+
[![Crates.io](https://img.shields.io/crates/v/hyprlang.svg)](https://crates.io/crates/hyprlang)
11+
[![Docs.rs](https://docs.rs/hyprlang/badge.svg)](https://docs.rs/hyprlang)
12+
[![License](https://img.shields.io/crates/l/hyprlang.svg)](https://img.shields.io/crates/l/hyprlang.svg)
13+
![Crates.io Total Downloads](https://img.shields.io/crates/d/hyprlang)
14+
![Crates.io Size](https://img.shields.io/crates/size/hyprlang)
15+
[![GitHub Sponsors](https://img.shields.io/github/sponsors/spinualexandru)](https://github.com/sponsors/spinualexandru)
16+
717
## Features
818

919
- 🎯 **Complete Hyprlang Implementation** - Full compatibility with the original C++ version
@@ -25,7 +35,7 @@ Add this to your `Cargo.toml`:
2535

2636
```toml
2737
[dependencies]
28-
hyprlang = "0.1.0"
38+
hyprlang = "0.1.4"
2939
```
3040

3141
### Optional Features
@@ -36,7 +46,7 @@ Enable the `hyprland` feature to get a high-level `Hyprland` struct with pre-con
3646

3747
```toml
3848
[dependencies]
39-
hyprlang = { version = "0.1.0", features = ["hyprland"] }
49+
hyprlang = { version = "0.1.4", features = ["hyprland"] }
4050
```
4151

4252
This feature provides:

0 commit comments

Comments
 (0)