[package]
edition = "2021"
name = "xgraph"
version = "2.1.0"
authors = ["<xvi-xv-xii-ix-xxii-ix-xiv <xvi.xv.xii.ix.xxii.ix.xiv@gmail.com>"]
build = false
exclude = [
"/target",
"/.git",
"/*.iml",
"/*.lock",
"/*.csv",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A comprehensive Rust library providing efficient graph algorithms for solving real-world problems in social network analysis, transportation optimization, recommendation systems, and more"
homepage = "https://github.com/xvi-xv-xii-ix-xxii-ix-xiv/xgraph"
documentation = "https://docs.rs/xgraph"
readme = "README.md"
keywords = [
"heterogeneous",
"multigraph",
"graph",
"dijkstra",
"network",
]
categories = [
"data-structures",
"algorithms",
"science",
]
license = "MIT"
repository = "https://github.com/xvi-xv-xii-ix-xxii-ix-xiv/xgraph"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[package.metadata.release]
pre-release-commit-message = "chore(release): v{{version}}"
tag-message = "v{{version}}"
sign-tag = true
sign-commit = true
[badges.github-actions]
repository = "xvi-xv-xii-ix-xxii-ix-xiv/xgraph"
workflow = "CI"
[badges.maintenance]
status = "actively-developed"
[features]
default = [
"graph",
"hgraph",
]
graph = []
hgraph = []
[lib]
name = "xgraph"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "h_basic_usage"
path = "examples/h_basic_usage.rs"
[[bench]]
name = "xgraph_benchmarks_1"
path = "benches/benchmark_adjacency_matrix.rs"
harness = false
[[bench]]
name = "xgraph_benchmarks_2"
path = "benches/benchmark_dijkstra.rs"
harness = false
[[bench]]
name = "xgraph_benchmarks_3"
path = "benches/benchmark_graph.rs"
harness = false
[[bench]]
name = "xgraph_benchmarks_4"
path = "benches/benchmark_large_graph.rs"
harness = false
[dependencies.float-cmp]
version = "0.10"
[dependencies.rand]
version = "0.9"
[dependencies.slab]
version = "0.4.9"
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.float-cmp]
version = "0.10"
[dev-dependencies.rand]
version = "0.9"
[profile.release]
opt-level = 3
lto = true
codegen-units = 1
debug = 0
strip = true