| 1 | [package] |
| 2 | name = "pyo3-stub-gen" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | description.workspace = true |
| 6 | repository.workspace = true |
| 7 | keywords.workspace = true |
| 8 | license.workspace = true |
| 9 | readme.workspace = true |
| 10 | |
| 11 | [dependencies] |
| 12 | anyhow.workspace = true |
| 13 | chrono.workspace = true |
| 14 | inventory.workspace = true |
| 15 | itertools.workspace = true |
| 16 | log.workspace = true |
| 17 | maplit.workspace = true |
| 18 | num-complex.workspace = true |
| 19 | numpy = { workspace = true, optional = true } |
| 20 | pyo3.workspace = true |
| 21 | serde.workspace = true |
| 22 | toml.workspace = true |
| 23 | |
| 24 | [dependencies.pyo3-stub-gen-derive] |
| 25 | version = "0.7.0" |
| 26 | path = "../pyo3-stub-gen-derive" |
| 27 | |
| 28 | [dev-dependencies] |
| 29 | test-case.workspace = true |
| 30 | |
| 31 | [features] |
| 32 | default = ["numpy" ] |
| 33 | numpy = ["dep:numpy" ] |
| 34 | |