Skip to content

Commit bd75e9c

Browse files
committed
docs: update documentation
1 parent 486ffb1 commit bd75e9c

File tree

9 files changed

+9
-11
lines changed

9 files changed

+9
-11
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!--
44
<a href="https://github.com/MAIF/yozefu/releases"><img src="https://img.shields.io/github/v/release/MAIF/yozefu?style=flatd&color=f8be75&logo=GitHub"></a>-->
55
<a href="https://crates.io/crates/yozefu/"><img src="https://img.shields.io/crates/v/yozefu?logo=Rust"></a>
6-
<a href="https://www.rust-lang.org/"><img src="https://img.shields.io/badge/MSRV-1.80.1+-lightgray.svg?logo=rust" alt="Minimum supported Rust version: 1.80.1 or plus"/></a>
6+
<a href="https://www.rust-lang.org/"><img src="https://img.shields.io/badge/MSRV-1.85.0+-lightgray.svg?logo=rust" alt="Minimum supported Rust version: 1.85.0 or plus"/></a>
77
<a href="https://github.com/MAIF/yozefu/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-Apache_2.0-blue.svg" alt="Licence"/></a>
88

99

crates/app/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yozefu-app"
3-
description = "A TUI for browsing kafka topics"
3+
description = "The Kafka consumer of Yozefu"
44
keywords = ["kafka", "consumer", "search", "avro"]
55
categories = ["command-line-utilities", "development-tools", "gui"]
66
readme = "README.md"

crates/app/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,7 @@
44
[![](https://img.shields.io/crates/v/yozefu-app.svg)](https://crates.io/crates/yozefu-app)
55

66

7-
This library contains the code for the main kafka consumer and all the logic to filter kafka records based on the user-provided search query.
8-
9-
7+
This library contains the code for the kafka consumer and all the logic to filter kafka records based on the user-provided search query for [Yozefu](https://github.com/MAIF/yozefu).
108

119
## Usage
1210

crates/bin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yozefu"
3-
description = "yozefu is a CLI tool for Apache kafka. It allows you to navigate topics and search Kafka records."
3+
description = "Yozefu is a CLI tool for Apache kafka. It allows you to navigate topics and search Kafka records."
44
keywords = ["kafka", "consumer", "avro", "tui", "ratatui"]
55
categories = [
66
"command-line-utilities",

crates/command/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yozefu-command"
3-
description = "Clap commands of yozefu"
3+
description = "Clap commands of Yozefu"
44
keywords = ["argument", "cli", "tui", "parser", "parse"]
55
readme = "README.md"
66
categories = [

crates/command/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![The crate](https://img.shields.io/crates/v/yozefu-command.svg)](https://crates.io/crates/yozefu-command)
55

66

7-
This library contains the `clap` commands of [yozefu](https://github.com/MAIF/yozefu):
7+
This library contains the `clap` commands of [Yozefu](https://github.com/MAIF/yozefu):
88
- `configure` to access to the configuration file.
99
- `create-filter` to crate a new search filter
1010
- `import-filter` to import the search filter to the tool.

crates/lib/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[![](https://img.shields.io/crates/v/yozefu-lib.svg)](https://crates.io/crates/yozefu-lib)
55

66

7-
This crate provides the core definitions for [yozefu](https://github.com/MAIF/yozefu).
7+
This crate provides the core definitions for [Yozefu](https://github.com/MAIF/yozefu).
88
- [`KafkaRecord`](./src/kafka/kafka_record.rs), the main structure used everywhere representing a kafka record.
99
- Definitions of errors that can occur.
1010
- Structures and functions to parse and execute search queries.

crates/tui/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "yozefu-tui"
3-
description = "A TUI for browsing kafka topics"
3+
description = "library for rendering the TUI of Yozefu"
44
keywords = ["kafka", "consumer", "tui", "terminal"]
55
readme = "README.md"
66
categories = [

crates/wasm-types/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![Build](https://github.com/MAIF/yozefu/actions/workflows/build.yml/badge.svg)](https://github.com/MAIF/yozefu/actions/workflows/build.yml)
44
[![](https://img.shields.io/crates/v/yozefu-wasm-types.svg)](https://crates.io/crates/yozefu-wasm-types)
55

6-
This library provides structures for defining a WebAssembly module for the search engine of [yozefu](https://github.com/MAIF/yozefu). It uses `json` to exchange data from the host to the WebAssembly module.
6+
This library provides structures for defining a WebAssembly module for the search engine of [Yozefu](https://github.com/MAIF/yozefu). It uses `json` to exchange data from the host to the WebAssembly module.
77

88
## Usage
99

0 commit comments

Comments
 (0)