rust-py-audit 0.2.1__tar.gz → 0.2.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 (42) hide show
  1. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/Cargo.lock +1 -1
  2. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/Cargo.toml +1 -1
  3. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/PKG-INFO +2 -2
  4. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/pyproject.toml +2 -2
  5. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/python/rust_py_audit/__init__.py +1 -1
  6. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/.github/workflows/release.yml +0 -0
  7. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/.gitignore +0 -0
  8. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/LICENSE +0 -0
  9. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/README.md +0 -0
  10. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/examples/__init__.py +0 -0
  11. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/examples/basic_usage.py +0 -0
  12. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/examples/django_example/__init__.py +0 -0
  13. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/examples/django_example/settings.py +0 -0
  14. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/examples/django_example/urls.py +0 -0
  15. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/examples/django_example/views.py +0 -0
  16. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/examples/fastapi_app.py +0 -0
  17. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/examples/immutablelog_basic.py +0 -0
  18. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/python/rust_py_audit/django.py +0 -0
  19. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/python/rust_py_audit/fastapi.py +0 -0
  20. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/src/audit_logger.rs +0 -0
  21. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/src/errors.rs +0 -0
  22. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/src/event.rs +0 -0
  23. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/src/hash.rs +0 -0
  24. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/src/immutablelog_client.rs +0 -0
  25. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/src/immutablelog_config.rs +0 -0
  26. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/src/immutablelog_receipt.rs +0 -0
  27. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/src/lib.rs +0 -0
  28. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/src/pyconv.rs +0 -0
  29. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/src/retry.rs +0 -0
  30. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/src/storage.rs +0 -0
  31. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/src/verifier.rs +0 -0
  32. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/tests/conftest.py +0 -0
  33. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/tests/test_audit_logger.py +0 -0
  34. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/tests/test_django_immutablelog.py +0 -0
  35. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/tests/test_django_middleware.py +0 -0
  36. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/tests/test_fastapi_immutablelog.py +0 -0
  37. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/tests/test_fastapi_middleware.py +0 -0
  38. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/tests/test_flush_pending.py +0 -0
  39. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/tests/test_hello.py +0 -0
  40. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/tests/test_immutablelog_hybrid.py +0 -0
  41. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/tests/test_immutablelog_remote.py +0 -0
  42. {rust_py_audit-0.2.1 → rust_py_audit-0.2.2}/tests/test_verify.py +0 -0
@@ -1597,7 +1597,7 @@ dependencies = [
1597
1597
 
1598
1598
  [[package]]
1599
1599
  name = "rust_py_audit"
1600
- version = "0.2.1"
1600
+ version = "0.2.2"
1601
1601
  dependencies = [
1602
1602
  "httpmock",
1603
1603
  "pyo3",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "rust_py_audit"
3
- version = "0.2.1"
3
+ version = "0.2.2"
4
4
  edition = "2021"
5
5
  description = "Auditoria de eventos com cadeia de hashes (SHA-256) para apps Python, core em Rust via PyO3."
6
6
  license = "MIT"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: rust-py-audit
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Classifier: Development Status :: 3 - Alpha
5
5
  Classifier: Intended Audience :: Developers
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -26,7 +26,7 @@ Provides-Extra: dev
26
26
  Provides-Extra: django
27
27
  Provides-Extra: fastapi
28
28
  License-File: LICENSE
29
- Summary: Auditoria de eventos rápida e íntegra (hash chain) para apps Python, com core em Rust.
29
+ Summary: Fast, tamper-evident event auditing (hash chain) for Python apps, with a Rust core.
30
30
  Keywords: audit,audit-log,security,django,fastapi,rust,integrity,hash-chain
31
31
  Author-email: Roberto Lima <robertolima.izphera@gmail.com>
32
32
  License-Expression: MIT
@@ -4,8 +4,8 @@ build-backend = "maturin"
4
4
 
5
5
  [project]
6
6
  name = "rust-py-audit"
7
- version = "0.2.1"
8
- description = "Auditoria de eventos rápida e íntegra (hash chain) para apps Python, com core em Rust."
7
+ version = "0.2.2"
8
+ description = "Fast, tamper-evident event auditing (hash chain) for Python apps, with a Rust core."
9
9
  readme = "README.md"
10
10
  license = "MIT"
11
11
  authors = [
@@ -8,5 +8,5 @@ que existe um módulo nativo por trás.
8
8
 
9
9
  from ._rust_py_audit import AuditLogger, hello
10
10
 
11
- __version__ = "0.2.1"
11
+ __version__ = "0.2.2"
12
12
  __all__ = ["AuditLogger", "hello"]
File without changes
File without changes
File without changes
File without changes
File without changes