-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
21 lines (19 loc) · 721 Bytes
/
Cargo.toml
File metadata and controls
21 lines (19 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[package]
author = "Tiago Antunes <tiago.melo.antunes@gmail.com>"
categories = ["concurrency", "algorithms", "data-structures"]
description = "A crate that provides utility functions for manipulating graphs in a CSR format, used as the baseline for constructing powerful graph algorithms."
edition = "2021"
keywords = ["graph", "csr", "algorithms", "performance", "parallel"]
license = "MIT"
name = "graph_csr"
readme = "README.md"
repository = "https://github.com/TiagoMAntunes/graph_csr"
version = "1.0.2"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
atomic = "0.5"
byteorder = "1.4"
easy_mmap = "0.3"
num-traits = "0.2"
rand = "0.8.5"
rayon = "1.5"