-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (33 loc) · 897 Bytes
/
Cargo.toml
File metadata and controls
39 lines (33 loc) · 897 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
36
37
38
[package]
name = "assembly-theory"
version = "0.6.1"
edition = "2021"
description = "Open, reproducible calculation of assembly indices"
documentation = "https://docs.rs/assembly-theory"
readme = "README-crate.md"
repository = "https://github.com/DaymudeLab/assembly-theory"
license = "MIT OR Apache-2.0"
[dependencies]
anyhow = "1.0.95"
bit-set = "0.8.0"
clap = { version = "4.5.23", features = ["derive"] }
csv = "1.3.1"
petgraph = "0.6.5"
pyo3 = { version = "0.24.1", features = ["abi3-py310", "extension-module"]}
rayon = "1.10.0"
dashmap = "6.1.0"
nauty-Traces-sys = "0.10.0"
bitvec = "1.0.1"
tokio = { version = "1.48.0", features = ["rt", "rt-multi-thread", "sync", "time"] }
[dev-dependencies]
criterion = "0.3"
[features]
default = ["python"]
python = []
[lib]
name = "assembly_theory"
path = "src/lib.rs"
crate-type = ["rlib","cdylib"]
[[bench]]
name = "benchmark"
harness = false