-
Notifications
You must be signed in to change notification settings - Fork 11
/
Cargo.toml
38 lines (33 loc) · 1.01 KB
/
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
35
36
37
38
[package]
authors = ["Davy Duperron <[email protected]>"]
categories = ["data-structures", "mathematics", "science"]
description = "Hypergraph is data structure library to create a directed hypergraph in which an hyperedge can join any number of vertices."
edition = "2021"
exclude = [".github", "hypergraph.svg", "rustfmt.toml"]
keywords = ["data-structure", "graph", "hypergraph"]
license = "MIT"
name = "hypergraph"
readme = "README.md"
repository = "https://github.com/yamafaktory/hypergraph"
rust-version = "1.56"
version = "2.2.0"
[dependencies]
ahash = "0.8.11"
indexmap = { version = "2.6.0", features = ["rayon"] }
itertools = "0.13.0"
rayon = "1.7.0"
thiserror = "2.0.3"
[dev-dependencies]
criterion = "0.5.1"
[[bench]]
name = "performance"
harness = false
[lints.rust]
missing_debug_implementations = "warn"
missing_docs = "warn"
nonstandard_style = { level = "deny", priority= -1 }
rust_2021_compatibility = { level = "forbid", priority= -1 }
unreachable_pub = "warn"
unsafe_code = "deny"
[lints.clippy]
all = "deny"