[package]
edition = "2021"
name = "graphrust-core"
version = "0.1.0"
authors = ["Your Name <you@example.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core graph data structures for graphrust library"
readme = false
keywords = [
"graph",
"algorithms",
"rust",
"ffi",
"performance",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yourusername/graphrust"
[lib]
name = "graphrust_core"
path = "src/lib.rs"
[[bench]]
name = "graph_construction"
path = "benches/graph_construction.rs"
harness = false
[dependencies.rayon]
version = "1.8"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"