-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
41 lines (35 loc) · 1.16 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
[package]
name = "intervals-general"
version = "0.1.1"
authors = ["Scott Moeller <electronjoe@gmail.com>"]
description = """
intervals-general is a crate enabling general representation of and
operations on intervals over generic types (e.g. supporting units of measure
or arbitrary built-in types, or any type with PartialOrd implementation).
"""
documentation = "https://github.com/electronjoe/intervals-general"
homepage = "https://github.com/electronjoe/intervals-general"
repository = "https://github.com/electronjoe/intervals-general"
readme = "README.md"
keywords = ["intervals", "interval", "math", "units", "measurement"]
categories = ["science", "data-structures"]
edition = "2021"
license = "MIT OR Apache-2.0"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
itertools = "0.13.0"
serde = { version = "1.0.214", features = ["derive"], optional = true }
[dev-dependencies]
criterion = "0.5"
quickcheck = "1.0"
quickcheck_macros = "1.0"
serde_json = "1.0"
[[bench]]
name = "static_alternative"
harness = false
[[bench]]
name = "interval_operations"
harness = false
[profile.bench]
lto = true # Critical for performance (87% reduction of e.g. intersect)