mirror of
https://github.com/servo/servo.git
synced 2025-08-23 14:25:33 +01:00
uv: Fix warning by adding project
table to pyproject.toml (#38774)
`uv` logs a warning if the pyproject.toml does not contain a project table. There is not really much point in adding the table, but no downsides either, so lets just add the table to make `uv` happy. Testing: Manual run of `RUST_LOG=warn ./mach run` Fixes: #38761 Signed-off-by: Jonathan Schwender <schwenderjonathan@gmail.com>
This commit is contained in:
parent
60e6fe8cb5
commit
73e0f2f7e6
1 changed files with 5 additions and 0 deletions
|
@ -1,3 +1,8 @@
|
|||
[project]
|
||||
# `uv` logs warnings if this file doesn't contain a `project` table.
|
||||
name = "servo"
|
||||
version = "0.0.1"
|
||||
|
||||
[tool.ruff]
|
||||
line-length = 120
|
||||
extend-exclude = [
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue