-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
83 lines (78 loc) · 2.26 KB
/
Copy pathpyproject.toml
File metadata and controls
83 lines (78 loc) · 2.26 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[build-system]
requires = ["maturin == 1.14.1"]
build-backend = "maturin"
[tool.maturin]
python-source = "py-src"
module-name = "uuid7_rs._core"
[project]
name = "uuid7-rs"
dynamic = ["version"]
requires-python = ">= 3.10"
description = "Fast UUID v7 generator written in Rust"
readme = { file = "README.md", content-type = "text/markdown" }
license = "Unlicense"
license-files = ["UNLICENSE"]
authors = [
{ name = "chirizxc", email = "chirizxc@proton.me" }
]
classifiers = [
"Typing :: Typed",
"Programming Language :: Rust",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python :: 3.15",
"Programming Language :: Python :: Implementation :: PyPy",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Software Development :: Libraries",
"Development Status :: 5 - Production/Stable",
]
dependencies = []
[project.urls]
Homepage = "https://github.com/lava-sh/uuid7-rs"
Repository = "https://github.com/lava-sh/uuid7-rs"
Issues = "https://github.com/lava-sh/uuid7-rs/issues"
[dependency-groups]
typos = ["typos == 1.47.2"]
zizmor = ["zizmor == 1.26.1"]
rumdl = ["rumdl == 0.2.20"]
maturin = ["maturin == 1.14.1"]
pytest = ["pytest == 9.1.1"]
wasm-test = [
{ include-group = "pytest" },
"pytest-pyodide == 0.59.2",
"pytest-httpserver == 1.1.5",
]
ci = [
"ty == 0.0.51",
"ruff == 0.15.18",
{ include-group = "maturin" },
{ include-group = "pytest" },
]
dev = [
{ include-group = "ci" },
{ include-group = "typos" },
{ include-group = "rumdl" },
{ include-group = "zizmor" },
]
bench = [
"uuid_utils == 0.16.2",
"uuid_v7 == 1.0.0",
"UUIDv7gen == 1.0.3",
"uuid6 == 2025.0.1",
"lastuuid == 0.5.0",
"fastuuid == 0.14.0",
"fastuuid7 == 0.2.0",
# # # # # # # # # #
"polars == 1.41.2",
"altair == 6.2.1",
"py-cpuinfo == 9.0.0",
"vl-convert-python == 1.9.0.post1",
]
[tool.uv.dependency-groups]
wasm-test = { requires-python = ">= 3.13" }