Skip to content

Commit

Permalink
chore: impl Clone for container (#666)
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski authored Mar 3, 2025
1 parent 9bfbafd commit c982a70
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions crates/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Added

- geoarrow record batch converters (moved from **stac-duckdb**) ([#652](https://github.com/stac-utils/stac-rs/pull/652))
- `Clone` for `Container` ([#666](https://github.com/stac-utils/stac-rs/pull/666))

## [0.12.0] - 2025-01-31

Expand Down
2 changes: 1 addition & 1 deletion crates/core/src/node.rs
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pub struct Node {
}

/// A STAC container, i.e. a [Catalog] or a [Collection].
#[derive(Debug)]
#[derive(Debug, Clone)]
pub enum Container {
/// A [Collection].
Collection(Box<Collection>), // To avoid large enum variant
Expand Down

0 comments on commit c982a70

Please sign in to comment.