-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
27 lines (21 loc) · 930 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
[workspace]
members = [".", "metis-sys"]
[package]
name = "metis"
version = "0.2.2"
authors = ["Hubert Hirtz <[email protected]>", "Cedric Chevalier <[email protected]>"]
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/LIHPC-Computational-Geometry/metis-rs"
description = "Idiomatic wrapper for METIS, the serial graph partitioner and fill-reducing matrix orderer"
categories = ["api-bindings", "mathematics"]
keywords = ["graph", "mesh", "matrix", "partitioning", "ordering"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["metis-sys/default"]
# Build and statically link to METIS and GKLib.
vendored = ["metis-sys/vendored"]
# Use existing METIS install and links dynamically to it.
use-system = ["metis-sys/use-system"]
[dependencies]
metis-sys = { version = "0.3", path = "metis-sys", default-features = false }