-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
67 lines (54 loc) · 1.19 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[package]
name = "floccus"
version = "0.3.7"
authors = ["Jakub Lewandowski <[email protected]>"]
edition = "2021"
description = "Formulae for air thermodynamic calculations"
repository = "https://github.com/ScaleWeather/floccus"
readme = "README.md"
keywords = ["oceanography", "thermodynamics", "meteorology", "weather"]
categories = ["mathematics", "science"]
license = "Apache-2.0"
exclude = [
".github/*",
]
[dependencies]
thiserror = "^1.0.30"
float-cmp = "^0.9.0"
floccus-proc = {version = "0.2.5", optional = true}
log = "^0.4.14"
[dev-dependencies]
criterion = "0.4.0"
[features]
debug = ["floccus-proc"]
double_precision = []
[[bench]]
name = "virtual_temperature"
harness = false
[[bench]]
name = "vapour_pressure"
harness = false
[[bench]]
name = "vapour_pressure_deficit"
harness = false
[[bench]]
name = "mixing_ratio"
harness = false
[[bench]]
name = "wet_bulb_temperature"
harness = false
[[bench]]
name = "relative_humidity"
harness = false
[[bench]]
name = "specific_humidity"
harness = false
[[bench]]
name = "potential_temperature"
harness = false
[[bench]]
name = "equivalent_potential_temperature"
harness = false
[[bench]]
name = "wet_bulb_potential_temperature"
harness = false