-
Notifications
You must be signed in to change notification settings - Fork 9
/
Cargo.toml
36 lines (29 loc) · 957 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
[package]
name = "geographiclib-rs"
version = "0.2.4"
license = "MIT"
edition = "2018"
rust-version = "1.70.0"
description = "A port of geographiclib in Rust."
repository = "https://github.com/georust/geographiclib-rs"
keywords = ["gis", "geo", "geography", "geospatial"]
documentation = "https://docs.rs/geographiclib-rs"
readme = "README.md"
[features]
# Run tests against Karney's GeodTest.dat test cases.
# You must run script/download-test-data.sh before using this feature
test_full = []
# Run tests against Karney's abridged GeodTest-short.dat test cases.
# You must run script/download-test-data.sh before using this feature
test_short = []
default = ["accurate"]
[dependencies]
accurate = { version = "0.3", optional = true, default-features = false }
libm = { version = "0.2.8", default-features = false }
[dev-dependencies]
approx = "0.5.1"
criterion = "0.4.0"
geographiclib = "0.1.0"
[[bench]]
name = "geodesic_benchmark"
harness = false