-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (28 loc) · 784 Bytes
/
Cargo.toml
File metadata and controls
35 lines (28 loc) · 784 Bytes
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
[workspace]
members = ["crates/*"]
default-members = ["crates/rust-sugiyama"]
resolver = "3"
[workspace.package]
version = "0.5.4"
edition = "2024"
authors = ["Austin Orr <[email protected]>"]
license = "MIT"
readme = "README.md"
[workspace.dependencies]
rust-sugiyama = { path = "crates/rust-sugiyama" }
criterion = { version = "0.8", features = ["html_reports"] }
log = "0.4"
petgraph = { version = "0.8", default-features = false, features = [
"stable_graph",
] }
rand = { version = "0.9", default-features = false, features = ["std_rng"] }
svg = "0.18"
pyo3 = { version = "0.28", features = ["abi3-py311", "extension-module"] }
pyo3-log = "0.13"
[profile.release-lto]
inherits = "release"
debug = false
codegen-units = 1
lto = true
strip = true
panic = "abort"