Skip to content

Commit ea2c0d9

Browse files
committed
remove maturin as a dependency
1 parent 8b910ee commit ea2c0d9

File tree

5 files changed

+89
-66
lines changed

5 files changed

+89
-66
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ repos:
2525
hooks:
2626
- id: isort
2727
- repo: https://github.com/psf/black
28-
rev: 23.1.0
28+
rev: 23.3.0
2929
hooks:
3030
- id: black
3131
args: [--config=./pyproject.toml]

Cargo.lock

Lines changed: 43 additions & 43 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2022 Starlite-API
3+
Copyright (c) 2022, 2023 Starlite-API
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

poetry.lock

Lines changed: 17 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 27 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,19 @@
11
[tool.poetry]
22
name = "fast-query-parsers"
3-
version = "0.3.1"
3+
version = "0.4.0"
44
description = "Ultra-fast query string and url-encoded form-data parsers"
5-
authors = ["Na'aman Hirschfeld <nhirschfeld@gmail.com>"]
5+
authors = [
6+
"Na'aman Hirschfeld <nhirschfeld@gmail.com>",
7+
"Peter Schutt <peter.github@proton.me>",
8+
"Cody Fincher <cody.fincher@gmail.com>",
9+
"Janek Nouvertné <provinzkraut@posteo.de>",
10+
]
11+
maintainers = [
12+
"Na'aman Hirschfeld <nhirschfeld@gmail.com>",
13+
"Peter Schutt <peter.github@proton.me>",
14+
"Cody Fincher <cody.fincher@gmail.com>",
15+
"Janek Nouvertné <provinzkraut@posteo.de>",
16+
]
617
license = "MIT"
718
readme = "README.md"
819
packages = [{include = "src"}]
@@ -11,7 +22,7 @@ packages = [{include = "src"}]
1122
name = "fast-query-parsers"
1223
requires-python = ">=3.8"
1324
classifiers = [
14-
"Development Status :: 3 - Alpha",
25+
"Development Status :: 5 - Production/Stable",
1526
"Environment :: Web Environment",
1627
"License :: OSI Approved :: MIT License",
1728
"Natural Language :: English",
@@ -32,17 +43,28 @@ classifiers = [
3243
homepage = "https://github.com/starlite-api/fast-query-parsers"
3344
documentation = "https://github.com/starlite-api/fast-query-parsers/README.md"
3445
repository = "https://github.com/starlite-api/fast-query-parsers"
46+
keywords = [
47+
"query",
48+
"query string",
49+
"qs",
50+
"query parameters",
51+
"rust",
52+
"asgi",
53+
"starlite",
54+
"litestar",
55+
"parser",
56+
]
3557

3658
[tool.poetry.dependencies]
3759
python = ">=3.8"
3860

3961
[tool.poetry.group.dev.dependencies]
40-
maturin = ">=0.13,<0.14"
62+
maturin = "*"
4163
pytest = "*"
4264
pyperf = "*"
4365

4466
[build-system]
45-
requires = ["maturin>=0.13,<0.14"]
67+
requires = ["maturin>=0.14,<0.15"]
4668
build-backend = "maturin"
4769

4870
[tool.black]

0 commit comments

Comments
 (0)