forked from JP-Ellis/rust-skiplist
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (21 loc) · 773 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
[package]
name = "skiplist"
version = "0.4.0"
authors = ["JP-Ellis <[email protected]>"]
description = "Skiplist implementation in rust, providing fast insertion and removal. A normal skiplist is implemented, as well as an ordered skiplist and a skipmap."
keywords = ["collection", "skiplist", "sorted"]
documentation = "https://docs.rs/skiplist"
homepage = "https://www.jpellis.me/projects/rust-skiplist/"
repository = "https://www.github.com/JP-Ellis/rust-skiplist/"
readme = "README.md"
license = "MIT"
edition = "2018"
[badges]
codecov = { repository = "JP-Ellis/rust-skiplist", branch = "master", service = "github" }
[dependencies]
rand = {version = "0.8", features = ["small_rng"] }
[dev-dependencies]
criterion = "0.3"
[[bench]]
name = "main"
harness = false