Skip to content

Commit 8657d5e

Browse files
committed
Update plugin descriptions and keywords
Enhanced descriptions in Cargo.toml, README.md, and package.json to highlight advanced features of the Tauri plugin, including compression, TTL management, memory caching, and cross-platform support. Updated keywords in package.json to improve discoverability.
1 parent b267e47 commit 8657d5e

3 files changed

Lines changed: 13 additions & 4 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "tauri-plugin-cache"
33
version = "0.1.0"
44
authors = ["Taiizor <taiizor@vegalya.com>"]
5-
description = "A Tauri plugin for caching data on disk with optional TTL"
5+
description = "Advanced disk caching solution for Tauri applications. Provides compression, TTL management, memory caching, automatic cleanup, and cross-platform support. Enhances data access performance and storage optimization."
66
edition = "2021"
77
rust-version = "1.77.2"
88
exclude = ["/examples", "/dist-js", "/guest-js", "/node_modules"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/Taiizor/tauri-plugin-cache/blob/develop/LICENSE)
44

5-
A Tauri plugin for caching data on disk with optional time-to-live (TTL) functionality. This plugin allows your Tauri application to store and retrieve data with expiration management.
5+
An advanced, versatile, and performance-focused disk caching solution for Tauri applications. This plugin features powerful compression support, memory caching layer, configurable time-to-live (TTL) management, automatic cleanup, and cross-platform compatibility. It enables persistent storage of data on disk for fast access and optimizes application performance through intelligent caching strategies. Working seamlessly on both desktop and mobile platforms, it significantly enhances the data management capabilities of your Tauri applications.
66

77
## Features
88

package.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "tauri-plugin-cache-api",
33
"version": "0.1.0",
44
"author": "Taiizor",
5-
"description": "A Tauri plugin for caching data on disk with optional TTL",
5+
"description": "Comprehensive disk and memory caching solution for Tauri applications. Features dynamic TTL management, intelligent data compression, automatic cleanup, and statistics monitoring. Delivers high-performance data access, optimized storage, and improved user experience.",
66
"license": "MIT",
77
"repository": {
88
"type": "git",
@@ -11,9 +11,18 @@
1111
"keywords": [
1212
"tauri",
1313
"plugin",
14+
"cache",
1415
"disk",
1516
"memory",
16-
"ttl"
17+
"ttl",
18+
"compression",
19+
"storage",
20+
"expiration",
21+
"optimization",
22+
"cross-platform",
23+
"auto-cleanup",
24+
"statistics",
25+
"performance"
1726
],
1827
"type": "module",
1928
"types": "./dist-js/index.d.ts",

0 commit comments

Comments
 (0)