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
|
[package]
name = "workspace-inheritance"
version.workspace = true
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "workspace_inheritance"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.25.0", features = ["extension-module"] }
generic_lib.workspace = true
[dependencies.libc]
workspace = true
optional = true
features = ["extra_traits"]
[build-dependencies]
cfg-if.workspace = true
[dev-dependencies]
cfg-if.workspace = true
[dependencies.cfg-if]
workspace = true
optional = true
[dependencies.rand]
workspace = true
features = ["small_rng"]
|