Patches vulnerability that is due to starlette version < 0.40.0 by bumping the fastAPI version to 0.115.3 FastAPI 0.115.3 release notes: https://github.com/fastapi/fastapi/releases/tag/0.115.3
17 lines
548 B
TOML
17 lines
548 B
TOML
[tool.poetry]
|
|
name = "arcade_example_fastapi"
|
|
version = "0.1.0"
|
|
description = "FastAPI example app with Arcade"
|
|
authors = ["Arcade AI <dev@arcade-ai.com>"]
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.10"
|
|
fastapi = "^0.115.3"
|
|
arcade-ai = {path = "../../arcade", develop = true}
|
|
arcade_math = {path = "../../toolkits/math", develop = true}
|
|
arcade_google = {path = "../../toolkits/google", develop = true}
|
|
arcade_slack = {path = "../../toolkits/slack", develop = true}
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|