hypern 0.1.0__tar.gz → 0.1.1__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 (103) hide show
  1. {hypern-0.1.0 → hypern-0.1.1}/Cargo.lock +1 -1
  2. {hypern-0.1.0 → hypern-0.1.1}/Cargo.toml +1 -1
  3. {hypern-0.1.0 → hypern-0.1.1}/PKG-INFO +3 -1
  4. {hypern-0.1.0 → hypern-0.1.1}/pyproject.toml +4 -2
  5. {hypern-0.1.0 → hypern-0.1.1}/.github/dependabot.yml +0 -0
  6. {hypern-0.1.0 → hypern-0.1.1}/.github/workflows/codeql.yml +0 -0
  7. {hypern-0.1.0 → hypern-0.1.1}/.github/workflows/codspeed.yml +0 -0
  8. {hypern-0.1.0 → hypern-0.1.1}/.github/workflows/preview-deployments.yml +0 -0
  9. {hypern-0.1.0 → hypern-0.1.1}/.github/workflows/security-scan.yml +0 -0
  10. {hypern-0.1.0 → hypern-0.1.1}/.gitignore +0 -0
  11. {hypern-0.1.0 → hypern-0.1.1}/.pre-commit-config.yaml +0 -0
  12. {hypern-0.1.0 → hypern-0.1.1}/CODE_OF_CONDUCT.md +0 -0
  13. {hypern-0.1.0 → hypern-0.1.1}/LICENSE +0 -0
  14. {hypern-0.1.0 → hypern-0.1.1}/README.md +0 -0
  15. {hypern-0.1.0 → hypern-0.1.1}/SECURITY.md +0 -0
  16. {hypern-0.1.0 → hypern-0.1.1}/benchmark.sh +0 -0
  17. {hypern-0.1.0 → hypern-0.1.1}/hypern/__init__.py +0 -0
  18. {hypern-0.1.0 → hypern-0.1.1}/hypern/application.py +0 -0
  19. {hypern-0.1.0 → hypern-0.1.1}/hypern/auth/__init__.py +0 -0
  20. {hypern-0.1.0 → hypern-0.1.1}/hypern/auth/authorization.py +0 -0
  21. {hypern-0.1.0 → hypern-0.1.1}/hypern/background.py +0 -0
  22. {hypern-0.1.0 → hypern-0.1.1}/hypern/caching/__init__.py +0 -0
  23. {hypern-0.1.0 → hypern-0.1.1}/hypern/caching/base/__init__.py +0 -0
  24. {hypern-0.1.0 → hypern-0.1.1}/hypern/caching/base/backend.py +0 -0
  25. {hypern-0.1.0 → hypern-0.1.1}/hypern/caching/base/key_maker.py +0 -0
  26. {hypern-0.1.0 → hypern-0.1.1}/hypern/caching/cache_manager.py +0 -0
  27. {hypern-0.1.0 → hypern-0.1.1}/hypern/caching/cache_tag.py +0 -0
  28. {hypern-0.1.0 → hypern-0.1.1}/hypern/caching/custom_key_maker.py +0 -0
  29. {hypern-0.1.0 → hypern-0.1.1}/hypern/caching/redis_backend.py +0 -0
  30. {hypern-0.1.0 → hypern-0.1.1}/hypern/cli/__init__.py +0 -0
  31. {hypern-0.1.0 → hypern-0.1.1}/hypern/cli/commands.py +0 -0
  32. {hypern-0.1.0 → hypern-0.1.1}/hypern/config.py +0 -0
  33. {hypern-0.1.0 → hypern-0.1.1}/hypern/datastructures.py +0 -0
  34. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/__init__.py +0 -0
  35. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/nosql/__init__.py +0 -0
  36. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/nosql/addons/__init__.py +0 -0
  37. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/nosql/addons/color.py +0 -0
  38. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/nosql/addons/daterange.py +0 -0
  39. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/nosql/addons/encrypted.py +0 -0
  40. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/nosql/addons/password.py +0 -0
  41. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/nosql/addons/unicode.py +0 -0
  42. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/sql/__init__.py +0 -0
  43. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/sql/addons/__init__.py +0 -0
  44. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/sql/addons/color.py +0 -0
  45. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/sql/addons/daterange.py +0 -0
  46. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/sql/addons/datetime.py +0 -0
  47. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/sql/addons/encrypted.py +0 -0
  48. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/sql/addons/password.py +0 -0
  49. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/sql/addons/ts_vector.py +0 -0
  50. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/sql/addons/unicode.py +0 -0
  51. {hypern-0.1.0 → hypern-0.1.1}/hypern/db/sql/repository.py +0 -0
  52. {hypern-0.1.0 → hypern-0.1.1}/hypern/enum.py +0 -0
  53. {hypern-0.1.0 → hypern-0.1.1}/hypern/exceptions.py +0 -0
  54. {hypern-0.1.0 → hypern-0.1.1}/hypern/hypern.pyi +0 -0
  55. {hypern-0.1.0 → hypern-0.1.1}/hypern/i18n/__init__.py +0 -0
  56. {hypern-0.1.0 → hypern-0.1.1}/hypern/logging/__init__.py +0 -0
  57. {hypern-0.1.0 → hypern-0.1.1}/hypern/logging/logger.py +0 -0
  58. {hypern-0.1.0 → hypern-0.1.1}/hypern/middleware/__init__.py +0 -0
  59. {hypern-0.1.0 → hypern-0.1.1}/hypern/middleware/base.py +0 -0
  60. {hypern-0.1.0 → hypern-0.1.1}/hypern/middleware/cors.py +0 -0
  61. {hypern-0.1.0 → hypern-0.1.1}/hypern/middleware/i18n.py +0 -0
  62. {hypern-0.1.0 → hypern-0.1.1}/hypern/middleware/limit.py +0 -0
  63. {hypern-0.1.0 → hypern-0.1.1}/hypern/openapi/__init__.py +0 -0
  64. {hypern-0.1.0 → hypern-0.1.1}/hypern/openapi/schemas.py +0 -0
  65. {hypern-0.1.0 → hypern-0.1.1}/hypern/openapi/swagger.py +0 -0
  66. {hypern-0.1.0 → hypern-0.1.1}/hypern/py.typed +0 -0
  67. {hypern-0.1.0 → hypern-0.1.1}/hypern/response/__init__.py +0 -0
  68. {hypern-0.1.0 → hypern-0.1.1}/hypern/response/response.py +0 -0
  69. {hypern-0.1.0 → hypern-0.1.1}/hypern/routing/__init__.py +0 -0
  70. {hypern-0.1.0 → hypern-0.1.1}/hypern/routing/dispatcher.py +0 -0
  71. {hypern-0.1.0 → hypern-0.1.1}/hypern/routing/endpoint.py +0 -0
  72. {hypern-0.1.0 → hypern-0.1.1}/hypern/routing/parser.py +0 -0
  73. {hypern-0.1.0 → hypern-0.1.1}/hypern/routing/router.py +0 -0
  74. {hypern-0.1.0 → hypern-0.1.1}/hypern/scheduler.py +0 -0
  75. {hypern-0.1.0 → hypern-0.1.1}/hypern/security.py +0 -0
  76. {hypern-0.1.0 → hypern-0.1.1}/hypern/worker.py +0 -0
  77. {hypern-0.1.0 → hypern-0.1.1}/poetry.lock +0 -0
  78. {hypern-0.1.0 → hypern-0.1.1}/scripts/format.sh +0 -0
  79. {hypern-0.1.0 → hypern-0.1.1}/sonar-project.properties +0 -0
  80. {hypern-0.1.0 → hypern-0.1.1}/src/background/background_task.rs +0 -0
  81. {hypern-0.1.0 → hypern-0.1.1}/src/background/background_tasks.rs +0 -0
  82. {hypern-0.1.0 → hypern-0.1.1}/src/background/mod.rs +0 -0
  83. {hypern-0.1.0 → hypern-0.1.1}/src/cache/backend.rs +0 -0
  84. {hypern-0.1.0 → hypern-0.1.1}/src/cache/mod.rs +0 -0
  85. {hypern-0.1.0 → hypern-0.1.1}/src/cache/redis_backend.rs +0 -0
  86. {hypern-0.1.0 → hypern-0.1.1}/src/lib.rs +0 -0
  87. {hypern-0.1.0 → hypern-0.1.1}/src/openapi/mod.rs +0 -0
  88. {hypern-0.1.0 → hypern-0.1.1}/src/openapi/schemas.rs +0 -0
  89. {hypern-0.1.0 → hypern-0.1.1}/src/openapi/swagger.rs +0 -0
  90. {hypern-0.1.0 → hypern-0.1.1}/src/scheduler/job.rs +0 -0
  91. {hypern-0.1.0 → hypern-0.1.1}/src/scheduler/mod.rs +0 -0
  92. {hypern-0.1.0 → hypern-0.1.1}/src/scheduler/retry.rs +0 -0
  93. {hypern-0.1.0 → hypern-0.1.1}/src/scheduler/scheduler.rs +0 -0
  94. {hypern-0.1.0 → hypern-0.1.1}/src/utils.rs +0 -0
  95. {hypern-0.1.0 → hypern-0.1.1}/tests/__init__.py +0 -0
  96. {hypern-0.1.0 → hypern-0.1.1}/tests/conftest.py +0 -0
  97. {hypern-0.1.0 → hypern-0.1.1}/tests/server.py +0 -0
  98. {hypern-0.1.0 → hypern-0.1.1}/tests/test_functional_handler.py +0 -0
  99. {hypern-0.1.0 → hypern-0.1.1}/tests/test_request_file.py +0 -0
  100. {hypern-0.1.0 → hypern-0.1.1}/tests/test_response_type.py +0 -0
  101. {hypern-0.1.0 → hypern-0.1.1}/tests/test_sync_async.py +0 -0
  102. {hypern-0.1.0 → hypern-0.1.1}/tests/test_validate_field.py +0 -0
  103. {hypern-0.1.0 → hypern-0.1.1}/tests/utils.py +0 -0
@@ -286,7 +286,7 @@ checksum = "95505c38b4572b2d910cecb0281560f54b440a19336cbbcb27bf6ce6adc6f5a8"
286
286
 
287
287
  [[package]]
288
288
  name = "hypern"
289
- version = "0.1.0"
289
+ version = "0.1.1"
290
290
  dependencies = [
291
291
  "chrono",
292
292
  "chrono-tz",
@@ -1,6 +1,6 @@
1
1
  [package]
2
2
  name = "hypern"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  edition = "2021"
5
5
 
6
6
  # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: hypern
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
6
  Classifier: Programming Language :: Python :: Implementation :: PyPy
@@ -20,6 +20,8 @@ Requires-Dist: mongoengine ==0.29.1
20
20
  Requires-Dist: argon2-cffi ==23.1.0
21
21
  Requires-Dist: bcrypt ==4.2.0
22
22
  License-File: LICENSE
23
+ Summary: A Fast Async Python backend with a Rust runtime.
24
+ Author-email: Martin Dang <vannghiem848@gmail.com>
23
25
  Requires-Python: >=3.10
24
26
  Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
25
27
 
@@ -5,13 +5,15 @@ build-backend = "maturin"
5
5
 
6
6
  [project]
7
7
  name = "hypern"
8
+ version = "0.1.1"
9
+ description = "A Fast Async Python backend with a Rust runtime."
10
+ authors = [{ name = "Martin Dang", email = "vannghiem848@gmail.com" }]
8
11
  requires-python = ">=3.10"
9
12
  classifiers = [
10
13
  "Programming Language :: Rust",
11
14
  "Programming Language :: Python :: Implementation :: CPython",
12
15
  "Programming Language :: Python :: Implementation :: PyPy",
13
16
  ]
14
- dynamic = ["version"]
15
17
  dependencies=[
16
18
  "robyn==0.58.0",
17
19
  "sqlalchemy[asyncio] == 2.0.31",
@@ -35,7 +37,7 @@ module-name = "hypern"
35
37
 
36
38
  [tool.poetry]
37
39
  name = "hypern"
38
- version = "0.1.0"
40
+ version = "0.1.1"
39
41
  description = "A Fast Async Python backend with a Rust runtime."
40
42
  authors = ["Martin Dang <vannghiem848@gmail.com>"]
41
43
 
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes