-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathCargo.toml
37 lines (31 loc) · 815 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
36
37
[package]
name = "rust-lapper"
version = "1.1.0"
authors = ["Seth Stadick <[email protected]>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/sstadick/rust-lapper"
description = "A fast and easy interval overlap library"
documentation = "https://docs.rs/rust-lapper"
readme = "README.md"
categories = ["algorithms", "science"]
keywords = ["tree", "interval", "bioinformatics", "ranges", "genomic"]
[[example]]
name = "serde"
required-features = ["with_serde"]
[[example]]
name = "ex1"
[features]
default = []
with_serde = ["serde/derive"]
[dependencies]
num-traits = "0.2.12"
serde = { version = "1.0.127", features = ["derive"], optional = true }
[dev-dependencies]
criterion = "0.3"
rand = "0.7"
cpu-time = "0.1.0"
bincode = "1.3.3"
[[bench]]
name = "lapper_benchmark"
harness = false