-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (36 loc) · 1.23 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
42
43
[package]
name = "world_magnetic_model"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
description = "Rust implementation of the NOAA World Magnetic Model."
repository = "https://github.com/budzejko/world_magnetic_model"
keywords = ["geomagnetic", "wmm", "declination"]
categories = ["science::geo", "aerospace", "embedded", "no-std"]
documentation = "https://docs.rs/world_magnetic_model/latest/"
exclude = [".git*", "benches/", "build.rs", "ncei.noaa.gov/", "templates/"]
[dependencies]
uom = {version="0.36.0", default-features = false, features = ["si", "f32"] }
time = {version="0.3.37", default-features = false}
thiserror = {version="2.0.11", default-features = false}
serde = { version = "1.0.217", optional = true, features = ["derive"] }
libm = "0.2.11"
[dev-dependencies]
time = {version="0.3.37", default-features = false, features = ["local-offset", "parsing"] }
rstest = "0.24.0"
assert_float_eq = "1.1.4"
criterion = "0.5.1"
[build-dependencies]
rinja = "0.3.5"
[[bench]]
name = "wmm"
harness = false
[[example]]
name = "demo_today"
path = "examples/demo_today.rs"
[[example]]
name = "demo_wmm2020_wmm2025"
path = "examples/demo_wmm2020_wmm2025.rs"
[[example]]
name = "demo_newtype"
path = "examples/demo_newtype.rs"