forked from KarypisLab/METIS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (37 loc) · 1005 Bytes
/
Copy pathCargo.toml
File metadata and controls
48 lines (37 loc) · 1005 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
39
40
41
42
43
44
45
46
47
48
[workspace]
resolver = "2"
members = ["macros", "metis_proptest", "objtograph"]
[package]
name = "metis"
version = "0.0.0"
edition = "2021"
autobins = false
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["normalized"]
# make behavior as close as possible to the original so that output can be
# diff'd with the full original in A/B tests. For now, I am not making errors
# the same. Goes together with patches for METIS and GKlib
normalized = []
dual_link = []
extra_tests = []
extra_debug_assertions = []
[lib]
name = "metis"
path = "src/lib.rs"
[[bin]]
name = "gpmetis"
test = false
[[test]]
name = "ab_bin"
required-features = ["normalized"]
[dependencies]
macros = {path = "./macros"}
libc = "0.2"
fastrand = "2.0.0"
[dev-dependencies]
[build-dependencies]
cc = "1.0"
[profile.dev]
opt-level = 1 # to be a little faster and silence FORTIFY_SOURCE warnings
build-override.opt-level = 3 # build scripts and proc-macros.