File: Cargo.toml

package info (click to toggle)
python-maturin 1.9.4-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,540 kB
  • sloc: python: 656; javascript: 93; sh: 55; makefile: 10
file content (32 lines) | stat: -rw-r--r-- 641 bytes parent folder | download
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"]