Skip to content

Commit

Permalink
Typst 0.13 final
Browse files Browse the repository at this point in the history
  • Loading branch information
IgKh committed Feb 19, 2025
1 parent 08422c6 commit 81d022b
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 39 deletions.
67 changes: 35 additions & 32 deletions typstdriver/rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions typstdriver/rust/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ crate-type = ["staticlib"]
cxx = "1.0"

comemo = "0.4.0"
typst = "0.13.0-rc1"
typst-pdf = "0.13.0-rc1"
typst-render = "0.13.0-rc1"
typst-ide = "0.13.0-rc1"
typst-kit = { version = "0.13.0-rc1", default-features = false, features=["embed-fonts"] }
typst = "0.13.0"
typst-pdf = "0.13.0"
typst-render = "0.13.0"
typst-ide = "0.13.0"
typst-kit = { version = "0.13.0", default-features = false, features=["embed-fonts"] }

anyhow = "1"
serde_json = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions typstdriver/rust/src/world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ impl<'a> KatvanWorld<'a> {
}
}

impl<'a> typst::World for KatvanWorld<'a> {
impl typst::World for KatvanWorld<'_> {
fn library(&self) -> &LazyHash<Library> {
&self.library
}
Expand Down Expand Up @@ -186,7 +186,7 @@ impl<'a> typst::World for KatvanWorld<'a> {
}
}

impl<'a> typst_ide::IdeWorld for KatvanWorld<'a> {
impl typst_ide::IdeWorld for KatvanWorld<'_> {
fn upcast(&self) -> &dyn typst::World {
self
}
Expand Down

0 comments on commit 81d022b

Please # to comment.