summaryrefslogtreecommitdiff
path: root/tests/Cargo.toml
AgeCommit message (Collapse)Author
2024-03-07Remove unmaintained benchmarks (#3569)Laurenz
2024-02-28Externalize assets (#3515)Laurenz
2024-01-09Test autocomplete (#2912)astrale-sharp
Co-authored-by: oliver <151407407+kwfn@users.noreply.github.com> Co-authored-by: Laurenz <laurmaedje@gmail.com>
2023-12-04Enable workspace lints for testsLaurenz
2023-11-27Make workspace inheriting consistentLaurenz
2023-11-24Merge `typst` and `typst-library`Laurenz
2023-11-08Extract `typst-pdf` crateLaurenz
2023-11-08Extract `typst-svg` crateLaurenz
2023-11-08Extract `typst-render` crateLaurenz
2023-11-08Switch to workspace dependenciesLaurenz
2023-10-25Bump dependenciesLaurenz
2023-10-09Bump ecowLaurenz
2023-09-13Update to usvg 0.35 (#2113)Laurenz Stampfl
2023-09-13Bump dependenciesLaurenz
2023-09-13Bump oxipngLaurenz
The released version of oxipng has a deadlock issue with rayon. So we switch to a git dependency for now.
2023-09-11Update tests for type system changesLaurenz
2023-08-29More type safety for spansLaurenz
2023-07-04Disable `binary` feature of `oxipng` (#1640)LingMan
The `oxipng` crate contains a binary target in addition to the library target. Said binary has additional dependencies which are not needed by users of the library. Since Cargo unfortunately doesn't currently offer a good way to express such binary-only dependencies, they are enabled by default via the `binary` feature. Avoid downloading and building these unnecessary crates by disabling the `binary` feature.
2023-07-02Move everything into `crates/` directoryLaurenz
2023-06-27Basic package managementLaurenz
2023-05-16Bump comemoLaurenz
2023-05-11Remove 'static bound on `World`Laurenz
Thanks to improvements in comemo, tracked types don't need to be 'static anymore. This means that the 'static bound on the `World` is now lifted and that the `Route` doesn't need to use unsafe code anymore to manage its lifetime.
2023-05-03Add rust minimum version in `Cargo.toml` (#902)HarmoGlace
2023-05-02Add ICC profiles to images in PDF and update `usvg`, `svg2pdf` (#822)Martin Haug
2023-04-26Version bumpv0.3.0Laurenz
2023-04-26Upgrade a bunch of deps and remove two unused ones (#968)Alex Saveau
2023-04-23Parallelize tests (#900)Alex Saveau
2023-04-21use clap for parsing tests. (#876)astrale-sharp
2023-04-20Add UPDATE_EXPECT envvar to update tests (#748)Alex Saveau
2023-04-17Bump comemoLaurenz
2023-04-13Reduce amount of hashingLaurenz
2023-04-11Version bumpv0.2.0Laurenz
2023-04-05Bump versionv0.1.0Laurenz
2023-03-27Bump dependenciesLaurenz
2023-02-06Set Typst versions to `0.0.0`Laurenz
2022-12-02Introduce virtual typesetterLaurenz
2022-11-03Separate test crateLaurenz
This removes the not-really-cyclic dependency that confuses rust-analyzer. See also: https://github.com/rust-lang/rust-analyzer/issues/2414