Skip to content

Commit

Permalink
fix: serialize page
Browse files Browse the repository at this point in the history
  • Loading branch information
gadomski committed Dec 4, 2024
1 parent 425a4dc commit 03b8070
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/pgstac/src/page.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
use serde::Deserialize;
use serde::{Deserialize, Serialize};
use stac_api::{Context, Item};

/// A page of search results.
#[derive(Debug, Deserialize)]
#[derive(Debug, Deserialize, Serialize)]
pub struct Page {
/// These are the out features, usually STAC items, but maybe not legal STAC
/// items if fields are excluded.
Expand Down

0 comments on commit 03b8070

Please sign in to comment.