diff options
author | 2024-03-04 16:22:24 +0000 | |
---|---|---|
committer | 2024-03-18 10:31:30 +0000 | |
commit | 1fe3f8ce6964f2a6216d1376c4ce8ee714c47f92 (patch) | |
tree | 2ae2b90fad79761fde54ded2d26c0d9415a8b9c0 /pyproject.toml | |
parent | Drop support for Pydantic 1.X (diff) |
Split fakeredis optional dep out from async-rediscache
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml index 25d8317e..7e661666 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -26,13 +26,16 @@ keywords = ["bot", "discord", "discord.py"] python = "3.10.* || 3.11.*" "discord.py" = "~=2.3.2" -async-rediscache = { version = "1.0.0rc2", extras = ["fakeredis"], optional = true } +async-rediscache = { version = "1.0.0rc2", optional = true } +fakeredis = { version = "~=2.0", extras = ["lua"], optional = true } pydantic = "~=2.6" statsd = "~=4.0" aiodns = "~=3.1" [tool.poetry.extras] async-rediscache = ["async-rediscache"] +fakeredis = ["fakeredis"] +all = ["async-rediscache", "fakeredis"] [tool.poetry.group.dev.dependencies] taskipy = "1.12.2" |