forked from glide-rs/aeroscore-rs
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
40 lines (34 loc) · 854 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
38
39
40
[package]
edition = "2018"
name = "aeroscore"
version = "0.0.0"
authors = ["Tobias Bieniek <tobias.bieniek@gmail.com>"]
description = "Algorithms for Glider Pilots"
license = "MIT"
repository = "https://github.com/Turbo87/aeroscore-rs.git"
homepage = "https://github.com/Turbo87/aeroscore-rs.git"
documentation = "https://docs.rs/aeroscore/"
readme = "README.md"
[badges]
travis-ci = { repository = "Turbo87/aeroscore-rs", branch = "master" }
[features]
default = ["rayon"]
[dependencies]
cfg-if = "0.1"
failure = "^0.1.1"
flat_projection = "0.3.0"
log = "0.4.8"
ord_subset = "^3.1.0"
rayon = { version = "^1.0", optional = true }
[dev-dependencies]
assert_approx_eq = "^1.0.0"
criterion = "^0.3.0"
igc = "0.2.2"
env_logger = "0.7.1"
serde_json = "^1.0.0"
[[bench]]
name = "olc_classic"
harness = false
[[bench]]
name = "haversine"
harness = false