Skip to content

Commit

Permalink
deps: Update yazi and zeno to current
Browse files Browse the repository at this point in the history
  • Loading branch information
waywardmonkeys committed Sep 24, 2024
1 parent ffbd357 commit c23be6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ readme = "README.md"
[features]
default = ["scale", "render"]

scale = ["dep:yazi", "dep:zeno"]
scale = ["dep:yazi", "dep:zeno", "zeno/std"]
render = ["scale", "zeno/eval"]

[dependencies]
yazi = { version = "0.1.6", optional = true }
zeno = { version = "0.2.2", optional = true, default-features = false }
yazi = { version = "0.2.0", optional = true }
zeno = { version = "0.3.1", optional = true, default-features = false }
skrifa = { version = "0.20.0" }
4 changes: 2 additions & 2 deletions src/scale/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -234,9 +234,9 @@ use super::internal;
use super::{cache::FontCache, setting::Setting, FontRef, GlyphId, NormalizedCoord};
use core::borrow::Borrow;
use proxy::*;
use zeno::Placement;
#[cfg(feature = "render")]
use zeno::{Format, Mask, Origin, Scratch, Style, Transform, Vector};
use zeno::{Placement, Point};
use zeno::{Format, Mask, Origin, Point, Scratch, Style, Transform, Vector};

pub(crate) use bitmap::decode_png;

Expand Down

0 comments on commit c23be6b

Please sign in to comment.