-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
35 lines (30 loc) · 866 Bytes
/
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
[package]
name = "incremental-topo"
version = "0.2.1"
authors = ["Declan Kelly <[email protected]>"]
description = "Data structure to maintain an incremental topological ordering over a collection of values"
repository = "https://github.com/declanvk/incremental-topo/"
documentation = "https://docs.rs/incremental-topo/"
readme = "README.md"
edition = "2021"
keywords = ["data-structures", "dag", "graph", "incremental", "topological"]
categories = ["algorithms", "data-structures"]
license = "MIT/Apache-2.0"
rust-version = "1.64" # MSRV
[dependencies]
fnv = "1.0.7"
generational-arena = "0.2.8"
log = "0.4.17"
[dev-dependencies]
pretty_env_logger = "0.5.0"
criterion = "0.5.1"
rand = "0.8.5"
criterion-perf-events = "0.4.0"
perfcnt = "0.8.0"
[[bench]]
name = "basic_operations"
harness = false
[profile.bench]
debug = true
[profile.release]
debug = true