[[bench]]
harness = false
name = "baseline_benchmark"
path = "benches/baseline_benchmark.rs"
[[bench]]
harness = false
name = "buhlmann_benchmark"
path = "benches/buhlmann_benchmark.rs"
[dependencies.libm]
optional = true
version = "0.2.15"
[dependencies.serde]
features = ["derive"]
optional = true
version = "1.0"
[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.5.1"
[[example]]
name = "ceiling_example"
path = "examples/ceiling_example.rs"
[[example]]
name = "config_example"
path = "examples/config_example.rs"
[[example]]
name = "deco_example"
path = "examples/deco_example.rs"
[[example]]
name = "depth_time_example"
path = "examples/depth_time_example.rs"
[[example]]
name = "ndl_example"
path = "examples/ndl_example.rs"
[features]
default = []
no-std = ["dep:libm"]
serde = ["dep:serde"]
[lib]
name = "dive_deco"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["algorithms", "simulation", "science", "no-std"]
description = "A dive decompression models library (Buhlmann ZH-L 16C)"
edition = "2021"
keywords = ["scuba", "diving", "decompression", "Buhlmann", "ZHL-16C"]
license = "MIT"
name = "dive-deco"
readme = "README.md"
repository = "https://github.com/KG32/dive-deco.git"
version = "6.0.6"
[[test]]
name = "buhlmann_tests"
path = "tests/buhlmann_tests.rs"
[[test]]
name = "deco_model_tests"
path = "tests/deco_model_tests.rs"
[[test]]
name = "deco_tests"
path = "tests/deco_tests.rs"
[[test]]
name = "fixtures"
path = "tests/fixtures.rs"
[[test]]
name = "gradient_factors_tests"
path = "tests/gradient_factors_tests.rs"
[[test]]
name = "helium_tests"
path = "tests/helium_tests.rs"
[[test]]
name = "travel_tests"
path = "tests/travel_tests.rs"