-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
48 lines (40 loc) · 1.15 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
[package]
name = "portgraph"
version = "0.13.1"
license = "Apache-2.0"
readme = "README.md"
documentation = "https://docs.rs/portgraph/"
repository = "https://github.com/CQCL/portgraph"
description = "Data structure library for directed graphs with first-level ports."
keywords = ["data-structure", "graph"]
categories = ["data-structures"]
edition = "2021"
rust-version = "1.75"
[lib]
bench = false
name = "portgraph"
path = "src/lib.rs"
[dependencies]
thiserror = "2.0.3"
pyo3 = { version = "0.23", optional = true, features = ["multiple-pymethods"] }
bitvec = "1.0.1"
serde = { version = "1.0.152", features = ["derive"], optional = true }
proptest = { version = "1.1.0", optional = true }
rand = { version = "0.8.5", optional = true }
petgraph = { version = "0.7.0", optional = true }
delegate = "0.13.0"
itertools = "0.14.0"
[features]
pyo3 = ["dep:pyo3"]
serde = ["dep:serde", "bitvec/serde"]
proptest = ["dep:proptest", "dep:rand"]
petgraph = ["dep:petgraph"]
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
rmp-serde = "1.1.1"
rstest = "0.24.0"
itertools = "0.14.0"
insta = "1.39.0"
[[bench]]
name = "bench_main"
harness = false