rust-py-cache 0.1.1__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (22) hide show
  1. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/Cargo.lock +1 -1
  2. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/Cargo.toml +1 -1
  3. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/PKG-INFO +3 -1
  4. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/README.md +2 -0
  5. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/pyproject.toml +1 -1
  6. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/.github/workflows/ci.yml +0 -0
  7. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/.github/workflows/release.yml +0 -0
  8. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/.gitignore +0 -0
  9. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/PUBLISHING.md +0 -0
  10. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/examples/django_example.py +0 -0
  11. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/examples/fastapi_example.py +0 -0
  12. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/python/rust_py_cache/__init__.py +0 -0
  13. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/python/rust_py_cache/decorators.py +0 -0
  14. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/src/cache.rs +0 -0
  15. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/src/entry.rs +0 -0
  16. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/src/lib.rs +0 -0
  17. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/src/stats.rs +0 -0
  18. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/src/ttl.rs +0 -0
  19. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/tests/test_cache_basic.py +0 -0
  20. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/tests/test_delete.py +0 -0
  21. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/tests/test_features.py +0 -0
  22. {rust_py_cache-0.1.1 → rust_py_cache-0.1.2}/tests/test_set_get.py +0 -0
@@ -202,7 +202,7 @@ dependencies = [
202
202
 
203
203
  [[package]]
204
204
  name = "rust_py_cache"
205
- version = "0.1.1"
205
+ version = "0.1.2"
206
206
  dependencies = [
207
207
  "dashmap",
208
208
  "pyo3",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust_py_cache"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  edition = "2021"
5
5
  readme = "README.md"
6
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rust-py-cache
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: Programming Language :: Python :: Implementation :: CPython
@@ -29,6 +29,8 @@ process.
29
29
  [![Python](https://img.shields.io/pypi/pyversions/rust-py-cache)](https://pypi.org/project/rust-py-cache/)
30
30
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow)](./LICENSE)
31
31
 
32
+ 🌐 **Website:** [rust-py-cache.vercel.app](https://rust-py-cache.vercel.app/)
33
+
32
34
  ## Installation
33
35
 
34
36
  ```bash
@@ -11,6 +11,8 @@ process.
11
11
  [![Python](https://img.shields.io/pypi/pyversions/rust-py-cache)](https://pypi.org/project/rust-py-cache/)
12
12
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow)](./LICENSE)
13
13
 
14
+ 🌐 **Website:** [rust-py-cache.vercel.app](https://rust-py-cache.vercel.app/)
15
+
14
16
  ## Installation
15
17
 
16
18
  ```bash
@@ -4,7 +4,7 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "rust-py-cache"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "An ultra-fast local cache for Python, powered by Rust."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.10"
File without changes
File without changes
File without changes