Skip to content

Commit

Permalink
Fix; Move cli trait under cli feature
Browse files Browse the repository at this point in the history
  • Loading branch information
rstanciu committed Jul 21, 2023
1 parent 742bcdd commit 15fd499
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion martin-mbtiles/src/tile_copier.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,8 @@ use crate::errors::MbtResult;
use crate::mbtiles::MbtType;
use crate::{MbtError, Mbtiles};

#[derive(ValueEnum, PartialEq, Eq, Default, Debug, Clone)]
#[derive(PartialEq, Eq, Default, Debug, Clone)]
#[cfg_attr(feature = "cli", derive(ValueEnum))]
enum CopyDuplicateMode {
#[default]
Override,
Expand Down

0 comments on commit 15fd499

Please sign in to comment.