3 Commits

Author SHA1 Message Date
b20a393479 chore: Release egui_knob version 0.1.3 2025-02-03 15:29:59 +03:00
e7f091a2f8 update cargo.toml 2025-02-03 15:28:23 +03:00
f5b4bb7728 updated readme and cargo,toml 2025-02-03 15:22:13 +03:00
3 changed files with 4 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -896,7 +896,7 @@ dependencies = [
[[package]]
name = "egui_knob"
version = "0.1.2"
version = "0.1.3"
dependencies = [
"eframe",
"egui",

View File

@@ -1,12 +1,12 @@
[package]
name = "egui_knob"
version = "0.1.2"
version = "0.1.3"
edition = "2021"
description = "A simple knob widget for egui"
homepage = "https://github.com/obsqrbtz/egui_knob"
repository = "https://github.com/obsqrbtz/egui_knob"
readme = "README.md"
license = "MIT"
license-file = "LICENSE"
keywords = ["egui", "ui", "widget", "knob", "range"]
categories = ["gui"]

View File

@@ -20,7 +20,7 @@ To use the Knob widget in your project, add the following to your `Cargo.toml`:
```toml
[dependencies]
egui = "0.30"
egui_knob = "0.1.1"
egui_knob = "*"
```
## Usage example