-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
43 lines (36 loc) · 1.31 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
[package]
name = "graphlib"
version = "0.6.3"
authors = ["Octavian Oncescu <[email protected]>"]
edition = "2018"
repository = "https://github.com/purpleprotocol/graphlib"
keywords = ["graph", "data-structures", "mutable", "graph-algorithm", "no-std"]
categories = ["data-structures", "no-std"]
description = "Graphlib is a simple and powerful rust library for the graph data-structure."
license = "MIT"
readme = "README.md"
[badges]
travis-ci = { repository = "purpleprotocol/graphlib", branch = "master" }
[dependencies]
rand = { version = "0.7.3", default-features = false }
rand_core = { version = "0.5.1", default-features = false }
rand_isaac = { version = "0.2.0", default-features = false }
hex = { version = "0.4.0", default-features = false }
hashbrown = { version = "0.6.3", default-features = false, features = ["inline-more", "ahash"] }
dot = { version = "0.1.4", optional = true }
[dev-dependencies]
criterion = "0.3.0"
[[bench]]
name = "benchmark"
harness = false
[features]
default = []
# use `cargo bench --features sbench` only if you want benchmarks with 10 million
# iterations (may fail on some systems)
sbench = []
# nightly feature for `no_std`
# for build use `cargo +nightly build --features no_std`
no_std = ["hashbrown/nightly"]
[package.metadata.docs.rs]
features = ["dot"]
no-default-features = true