Skip to content

Commit

Permalink
Merge pull request #167 from light-curve/clippy1.79
Browse files Browse the repository at this point in the history
Clippy 0.1.79 lints
  • Loading branch information
hombit authored Jun 25, 2024
2 parents 8b2e9bf + 5790c36 commit 12f275c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added

- `Roms`: Robust median statistic feature, thanks @GaluTi for their first contribution! https://github.com/light-curve/light-curve-feature/issues/103 https://github.com/light-curve/light-curve-feature/pull/160
- Expose `nl_fit::CurveFitResult`

### Changed

Expand Down
1 change: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ mod nl_fit;
pub use nl_fit::evaluator::FitFeatureEvaluatorGettersTrait;
#[cfg(any(feature = "ceres-source", feature = "ceres-system"))]
pub use nl_fit::CeresCurveFit;
pub use nl_fit::CurveFitResult;
#[cfg(feature = "gsl")]
pub use nl_fit::LmsderCurveFit;
pub use nl_fit::{prior, LnPrior, LnPrior1D};
Expand Down
1 change: 1 addition & 0 deletions test-util/src/lc_data/rrlyr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ use light_curve_feature::Float;

pub struct RrLyr<T> {
pub id: usize,
#[allow(dead_code)]
pub subtype: String,
pub period: T,
pub light_curve: MultiColorLightCurve<T>,
Expand Down

0 comments on commit 12f275c

Please sign in to comment.