generated from habedi/template-rust-project
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
70 lines (59 loc) · 1.37 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[package]
name = "graphina"
version = "0.2.1"
description = "A graph data science library for Rust"
repository = "https://github.com/habedi/graphina"
license = "MIT OR Apache-2.0"
readme = "README.md"
keywords = ["graph-theory", "data-science", "graph-algorithms", "graph-analytics"]
authors = ["Hassan Abedi <[email protected]>"]
homepage = "https://github.com/habedi/graphina"
documentation = "https://docs.rs/graphina"
categories = ["data-structures", "algorithms"]
edition = "2021"
rust-version = "1.83"
resolver = "2"
include = [
"docs/**/*",
"src/**/*",
"Cargo.toml",
"README.md",
"LICENSE-MIT",
"LICENSE-APACHE"
]
[lib]
name = "graphina"
path = "src/lib.rs"
[features]
default = [] # No features enabled by default
binaries = []
[dependencies]
ctor = "0.3.6"
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
rand = "0.9.0"
sprs = "0.11.3"
ordered-float = "5.0.0"
rayon = "1.10.0"
nalgebra = "0.33.2"
petgraph = { version = "0.7.1", features = ["graphmap", "stable_graph", "matrix_graph", "serde-1", "rayon"] }
[dev-dependencies]
criterion = { version = "0.5", features = ["html_reports"] }
[[bench]]
name = "project_benchmarks"
harness = false
[profile.release]
strip = "symbols"
codegen-units = 1
lto = true
[profile.bench]
debug = true
[package.metadata.rustfmt]
max_width = 100
hard_tabs = false
tab_spaces = 4
[workspace]
members = [
".",
"pygraphina"
]