[package]
edition = "2024"
name = "pvlib-rust"
version = "0.1.1"
build = false
exclude = [
"pvlib-python-ref/**",
"pvlib-python-ref/",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A Rust port of pvlib-python: solar energy modeling toolkit"
readme = "README.md"
keywords = [
"solar",
"photovoltaic",
"pvlib",
"energy",
"irradiance",
]
categories = [
"science",
"simulation",
]
license = "MIT"
repository = "https://github.com/p-vbordei/pvlib-rust"
[lib]
name = "pvlib"
path = "src/lib.rs"
[[test]]
name = "test_albedo"
path = "tests/test_albedo.rs"
[[test]]
name = "test_atmosphere"
path = "tests/test_atmosphere.rs"
[[test]]
name = "test_batch"
path = "tests/test_batch.rs"
[[test]]
name = "test_batch_equivalence"
path = "tests/test_batch_equivalence.rs"
[[test]]
name = "test_clearsky"
path = "tests/test_clearsky.rs"
[[test]]
name = "test_core"
path = "tests/test_core.rs"
[[test]]
name = "test_end_to_end"
path = "tests/test_end_to_end.rs"
[[test]]
name = "test_iam"
path = "tests/test_iam.rs"
[[test]]
name = "test_inverter_tracking"
path = "tests/test_inverter_tracking.rs"
[[test]]
name = "test_iotools_weather"
path = "tests/test_iotools_weather.rs"
[[test]]
name = "test_irradiance"
path = "tests/test_irradiance.rs"
[[test]]
name = "test_location"
path = "tests/test_location.rs"
[[test]]
name = "test_modelchain"
path = "tests/test_modelchain.rs"
[[test]]
name = "test_new_modules"
path = "tests/test_new_modules.rs"
[[test]]
name = "test_pvarray"
path = "tests/test_pvarray.rs"
[[test]]
name = "test_pvgis"
path = "tests/test_pvgis.rs"
[[test]]
name = "test_shading"
path = "tests/test_shading.rs"
[[test]]
name = "test_singlediode"
path = "tests/test_singlediode.rs"
[[test]]
name = "test_snow"
path = "tests/test_snow.rs"
[[test]]
name = "test_soiling"
path = "tests/test_soiling.rs"
[[test]]
name = "test_solarposition"
path = "tests/test_solarposition.rs"
[[test]]
name = "test_spectrum"
path = "tests/test_spectrum.rs"
[[test]]
name = "test_temperature"
path = "tests/test_temperature.rs"
[[test]]
name = "test_transformer"
path = "tests/test_transformer.rs"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.chrono-tz]
version = "0.10"
[dependencies.csv]
version = "1.4.0"
[dependencies.rayon]
version = "1.11.0"
[dependencies.reqwest]
version = "0.13.2"
features = ["blocking"]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.spa]
version = "0.5"
[dependencies.thiserror]
version = "2"
[dev-dependencies.approx]
version = "0.5"
[dev-dependencies.tempfile]
version = "3"