# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "floccus" version = "0.4.0-alpha.8" authors = ["Jakub Lewandowski "] build = false exclude = [".github/*"] autobins = false autoexamples = false autotests = false autobenches = false description = "Formulae for air thermodynamic calculations" readme = "README.md" keywords = [ "oceanography", "thermodynamics", "meteorology", "weather", ] categories = [ "mathematics", "science", ] license = "Apache-2.0" repository = "https://github.com/ScaleWeather/floccus" [lib] name = "floccus" path = "src/lib.rs" doctest = false [[bench]] name = "equivalent_potential_temperature" path = "benches/equivalent_potential_temperature.rs" harness = false [[bench]] name = "mixing_ratio" path = "benches/mixing_ratio.rs" harness = false [[bench]] name = "potential_temperature" path = "benches/potential_temperature.rs" [[bench]] name = "relative_humidity" path = "benches/relative_humidity.rs" harness = false [[bench]] name = "saturation_mixing_ratio" path = "benches/saturation_mixing_ratio.rs" harness = false [[bench]] name = "saturation_vapour_pressure" path = "benches/saturation_vapour_pressure.rs" harness = false [[bench]] name = "specific_humidity" path = "benches/specific_humidity.rs" harness = false [[bench]] name = "utils" path = "benches/utils.rs" [[bench]] name = "vapour_pressure" path = "benches/vapour_pressure.rs" harness = false [[bench]] name = "vapour_pressure_deficit" path = "benches/vapour_pressure_deficit.rs" harness = false [[bench]] name = "virtual_temperature" path = "benches/virtual_temperature.rs" harness = false [[bench]] name = "wet_bulb_potential_temperature" path = "benches/wet_bulb_potential_temperature.rs" harness = false [[bench]] name = "wet_bulb_temperature" path = "benches/wet_bulb_temperature.rs" harness = false [dependencies.float-cmp] version = "0.9" [dependencies.floccus-proc] version = "0.3.0" [dependencies.log] version = "0.4" optional = true [dependencies.ndarray] version = "0.16" optional = true default-features = false [dependencies.rayon] version = "1.10" optional = true default-features = false [dependencies.thiserror] version = "1.0" [dependencies.uom] version = "0.36" features = [ "si", "std", "autoconvert", "f32", "f64", ] default-features = false [dev-dependencies.criterion] version = "0.5" [dev-dependencies.itertools] version = "0.13" [dev-dependencies.log] version = "0.4" [dev-dependencies.testing_logger] version = "0.1" [features] array = ["dep:ndarray"] debug = ["dep:log"] default = [] double_precision = [] parallel = [ "array", "ndarray/rayon", "dep:rayon", ]