-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
19 lines (17 loc) · 624 Bytes
/
Copy pathCargo.toml
File metadata and controls
19 lines (17 loc) · 624 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[package]
name = "pqf-python"
version = "0.1.0"
edition = "2021"
license = "MIT"
description = "Python bindings for the PQF (PostQuantum.FileFormat) Rust reader."
repository = "https://github.com/systemslibrarian/PostQuantum.FileFormat"
publish = false
[lib]
name = "pqf"
crate-type = ["cdylib"]
path = "src/lib.rs"
[dependencies]
# gil-refs re-enables the deprecated &PyDict / &PyBytes GIL-ref API this
# binding is written against (PyDict::new, PyBytes::new, &'py PyDict returns).
pyo3 = { version = "0.22", features = ["extension-module", "abi3-py38", "gil-refs"] }
pqf-reader = { path = "../../impl/rust/pqf-reader" }