Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
720 changes: 408 additions & 312 deletions poetry.lock

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -52,18 +52,18 @@ tzdata = { version = ">=2024.1", markers = "sys_platform == 'win32'" }

[tool.poetry.group.dev.dependencies]
pytest = "^9.0.2" # Framework for testing
pytest-cov = "^7.0.0" # Code coverage for tests
pytest-cov = "^7.1.0" # Code coverage for tests
pytest-benchmark = "^5.2.0" # Performance benchmarking
coverage = "^7.13.1" # Coverage measurement
coverage = "^7.13.5" # Coverage measurement
urllib3 = "^2.6.3" # HTTP client (transitive, pinned for security)
black = "^25.12.0" # Code formatter
black = "^26.3.1" # Code formatter
flake8 = "^7.1.0" # Linter for code quality
mypy = "^1.19.1" # Static type checker
isort = "^7.0.0" # Import sorter
tox = "^4.34.1" # Testing multiple environments
mypy = "^1.20.0" # Static type checker
isort = "^8.0.1" # Import sorter
tox = "^4.52.0" # Testing multiple environments
pre-commit = "^4.5.1" # Pre-commit hooks for linting and formatting
pylint = "^4.0.4" # Static code analyzer
bandit = { extras = ["toml"], version = "^1.7.5" } # Security linter
bandit = { extras = ["toml"], version = "^1.9.4" } # Security linter

# =============================================================================
# Documentation Dependencies
Expand Down
1 change: 0 additions & 1 deletion src/rite/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,6 @@
>>> cache = LRUCache(100)
"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/buffer/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/buffer/bounded_buffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/buffer/circular_buffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/buffer/ring_buffer.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/buffer/sliding_window.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/cache/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/cache/lfu_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/cache/lru_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/cache/ttl_cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/dict/dict_remove_none.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/pattern/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/pattern/object_pool.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/pattern/observer.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/pattern/singleton.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ def __init__(self, value):

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/queue/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/queue/circular_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/queue/deque_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/queue/priority_queue.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/tree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/tree/binary_tree_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/tree/nested_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/tree/tree_node.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/collections/tree/trie.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/conversion/is_protected_type.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/conversion/to_bool.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/conversion/to_bytes.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/conversion/to_number.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/conversion/to_percentage.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/cipher/cipher_atbash.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/cipher/cipher_autokey.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/cipher/cipher_baconian.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/cipher/cipher_caesar.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/cipher/cipher_four_square.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/cipher/cipher_playfair.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/cipher/cipher_rail_fence.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/cipher/cipher_rot13.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/cipher/cipher_scytale.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/cipher/cipher_transposition.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/cipher/cipher_vigenere.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/cipher/cipher_xor.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/uuid/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/uuid/uuid_from_name.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
1 change: 0 additions & 1 deletion src/rite/crypto/uuid/uuid_get_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@

"""


# =============================================================================
# Imports
# =============================================================================
Expand Down
Loading