-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (39 loc) · 912 Bytes
/
Cargo.toml
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
[package]
name = "pyf16"
version = "0.1.1"
edition = "2021"
authors = [
"WindLX <[email protected]>",
]
[lib]
name = "_core"
# "cdylib" is necessary to produce a shared library for Python to import from.
crate-type = [
"cdylib",
]
[dependencies]
# "extension-module" tells pyo3 we want to build an extension module (skips linking against libpython.so)
# "abi3-py39" tells pyo3 (and maturin) to build using the stable ABI with minimum Python version 3.9
pyo3 = { version = "0.23.3", features = [
"extension-module",
"abi3-py39",
] }
anyhow = "1.0.94"
libc = "0.2.167"
libloading = "0.8.6"
log = "0.4.22"
rayon = "1.10.0"
serde = { version = "1.0.215", features = [
"derive",
] }
thiserror = "2.0.5"
toml = "0.8.19"
uuid = { version = "1.11.0", features = [
"v4",
"fast-rng",
"macro-diagnostics",
] }
pyo3-log = "0.12.0"
[dev-dependencies]
csv = "1.3.1"
env_logger = "0.11.5"