-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 827 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
[package]
name = "memoesu"
version = "0.2.7"
edition = "2021"
keywords = ["enumeration", "subgraph", "graph", "isomorphism", "ESU"]
license = "MIT"
repository = "https://github.com/noamteyssier/memoesu"
description = "fast subgraph enumeration on graphs using a memoized parallel ESU algorithm"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.69"
graph6-rs = "0.1.5"
hashbrown = "0.13.2"
petgraph = "0.6.3"
petgraph-gen = "0.1.3"
rand = "0.8.5"
rand_chacha = "0.3.1"
rayon = "1.6.1"
nauty-Traces-sys = "0.3.0"
bitvec = "1.0.1"
clap = { version = "4.1.8", features = ["derive"] }
flurry = "0.4.0"
ndarray = "0.15.6"
ahash = "0.8.3"
fixedbitset = "0.4.2"
[profile.release-with-debug]
inherits = "release"
debug = true
[profile.release]
lto = true