-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
34 lines (30 loc) · 1021 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 = "arboretum-td"
version = "0.1.0"
authors = ["Johannes Meintrup <johannes.meintrup@mni.thm.de>"]
edition = "2018"
license = "MIT"
description = "A library and CLI for obtaining exact and heuristc tree decompositions for arbitrary graphs"
homepage = "https://github.com/jmeintrup/arboretum"
repository = "https://github.com/jmeintrup/arboretum"
readme = "README.md"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num = "0.4.0"
rand = "0.8.3"
fxhash = "0.2.1"
bitvec = "0.19.1"
log = { version = "0.4.14", optional = true }
structopt = { version = "0.3.21", optional = true }
jemallocator = { version = "0.3.2", optional = true }
env_logger = { version = "0.8.3", optional = true }
ctrlc = { version = "3.1.9", optional = true, features = ["termination"] }
[features]
handle-ctrlc=["ctrlc"]
pace-logging=["log", "env_logger"]
cli = ["structopt"]
[[bin]]
name = "arboretum-cli"
path = "src/main.rs"
required-features = ["cli"]
test = false