mirror of
https://git.asonix.dog/asonix/pict-rs
synced 2024-11-10 06:25:00 +00:00
Fix sled cache capacity help text
This commit is contained in:
parent
a9b06b6f66
commit
9a8dc0e44f
1 changed files with 4 additions and 1 deletions
|
@ -75,7 +75,10 @@ pub(crate) struct Overrides {
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
max_image_area: Option<usize>,
|
max_image_area: Option<usize>,
|
||||||
|
|
||||||
#[structopt(long, help = "Specify the maximum area in pixels allowed in an image")]
|
#[structopt(
|
||||||
|
long,
|
||||||
|
help = "Specify the number of bytes sled is allowed to use for it's cache"
|
||||||
|
)]
|
||||||
#[serde(skip_serializing_if = "Option::is_none")]
|
#[serde(skip_serializing_if = "Option::is_none")]
|
||||||
sled_cache_capacity: Option<u64>,
|
sled_cache_capacity: Option<u64>,
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue