-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
46 lines (37 loc) · 905 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
41
42
43
44
45
46
[package]
name = "jord"
version = "0.15.0"
edition = "2021"
rust-version = "1.65"
authors = ["Cedric Liegeois <[email protected]>"]
repository = "https://github.com/ofmooseandmen/jord-rs"
documentation = "https://docs.rs/jord"
keywords = ["geo", "geography", "geospatial", "n-vector"]
description = "Geographical Position Calculations (Ellipsoidal and Spherical models)"
license = "MIT"
readme = "README.md"
categories = ["science::geo"]
[features]
serde = ["dep:serde"]
[dependencies]
serde = { version = "1", optional = true, features = ["derive"] }
[dev-dependencies]
criterion = { version = "0.5.1", features = ["html_reports"] }
[[bench]]
name = "minor_arc"
harness = false
[[bench]]
name = "positions"
harness = false
[[bench]]
name = "rectangle"
harness = false
[[bench]]
name = "sphere"
harness = false
[[bench]]
name = "sloop"
harness = false
[[bench]]
name = "vec3"
harness = false