-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (26 loc) · 717 Bytes
/
Cargo.toml
File metadata and controls
36 lines (26 loc) · 717 Bytes
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
[package]
name = "kitoken-python"
description = "Python bindings for Kitoken"
version = "0.10.1"
edition = "2024"
resolver = "2"
publish = false
workspace = "../.."
[lib]
name = "kitoken"
path = "src/lib.rs"
crate-type = ["cdylib"]
[dependencies]
kitoken = { path = "../..", default-features = false, features = ["all"] }
log = { version = "0.4.29" }
pyo3 = { version = "0.28.2", features = [
"abi3",
"abi3-py310",
"serde",
"extension-module",
"generate-import-lib",
] }
pyo3-log = "0.13.3"
serde-pyobject = "0.8.0"
[target.'cfg(any(target_arch = "x86", target_arch = "x86_64", target_arch = "aarch64"))'.dependencies]
mimalloc = { version = "0.1.44", features = ["local_dynamic_tls"] }