-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
38 lines (33 loc) · 891 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
[package]
name = "pyo3_bindgen_engine"
authors.workspace = true
categories.workspace = true
description = "Engine for automatic generation of Rust bindings to Python modules"
edition.workspace = true
keywords.workspace = true
license.workspace = true
readme.workspace = true
repository.workspace = true
rust-version.workspace = true
version.workspace = true
[dependencies]
itertools = { workspace = true }
proc-macro2 = { workspace = true }
pyo3 = { workspace = true }
quote = { workspace = true }
rustc-hash = { workspace = true }
syn = { workspace = true }
thiserror = { workspace = true }
typed-builder = { workspace = true }
[dev-dependencies]
criterion = { workspace = true }
indoc = { workspace = true }
prettyplease = { workspace = true }
[build-dependencies]
pyo3-build-config = { workspace = true }
[features]
default = []
numpy = []
[[bench]]
name = "bindgen"
harness = false