-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
executable file
·48 lines (37 loc) · 981 Bytes
/
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 = "pypipegraph2"
version = "3.4.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "pypipegraph2"
crate-type = ["cdylib", "rlib"]
[[bin]]
name = "ppg2_profiling"
path = "src/main.rs"
[[bin]]
name = "ppg2_iterations_without_fail"
path = "src/main_iterations_without_fail.rs"
[[bin]]
name = "ppg2_iterations_with_fail"
path = "src/main_iterations_with_fail.rs"
[dependencies]
pyo3 = { version = "0.21", features = ["extension-module", "abi3", "abi3-py38"] }
petgraph = "0.6.2"
env_logger = "0.9.3"
log = "0.4.14"
# ctrlc = {version="3.2.1", features = ["termination"] }
colored = "2.0.0"
thiserror = "1.0.37"
itertools = "0.10.5"
backtrace = "0.3.67"
num_cpus = "1.15.0"
[package.metadata.maturin]
python-source = "python"
# [dev-dependencies]
# criterion = {version = "0.3", features = ["html_reports"]}
[[bench]]
name = "bench1"
harness = false
[profile.release]
debug = true