-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
53 lines (50 loc) · 1.48 KB
/
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
44
45
46
47
48
49
50
51
52
53
[workspace]
members = [
# Examples of usage
"examples",
# Public API
"pyo3_bindgen",
# CLI tool
"pyo3_bindgen_cli",
# The underlying engine
"pyo3_bindgen_engine",
# Procedural macros
"pyo3_bindgen_macros",
]
default-members = [
"pyo3_bindgen",
"pyo3_bindgen_cli",
"pyo3_bindgen_engine",
"pyo3_bindgen_macros",
]
resolver = "2"
[workspace.package]
authors = ["Andrej Orsula <[email protected]>"]
categories = ["development-tools::ffi"]
edition = "2021"
keywords = ["bindgen", "ffi", "pyo3", "python"]
license = "MIT OR Apache-2.0"
readme = "README.md"
repository = "https://github.com/AndrejOrsula/pyo3_bindgen"
rust-version = "1.74"
version = "0.5.0"
[workspace.dependencies]
pyo3_bindgen = { path = "pyo3_bindgen", version = "0.5.0" }
pyo3_bindgen_engine = { path = "pyo3_bindgen_engine", version = "0.5.0" }
pyo3_bindgen_macros = { path = "pyo3_bindgen_macros", version = "0.5.0" }
assert_cmd = { version = "2" }
clap = { version = "4.5", features = ["derive"] }
criterion = { version = "0.5" }
indoc = { version = "2" }
itertools = { version = "0.12" }
libc = { version = "0.2" }
predicates = { version = "3" }
prettyplease = { version = "0.2" }
proc-macro2 = { version = "1" }
pyo3 = { version = "0.21", default-features = false }
pyo3-build-config = { version = "0.22", features = ["resolve-config"] }
quote = { version = "1" }
rustc-hash = { version = "1" }
syn = { version = "2" }
thiserror = { version = "1" }
typed-builder = { version = "0.18" }