diff options
| author | Tobias Schmitz <tobiasschmitz2001@gmail.com> | 2025-07-07 12:28:53 +0200 |
|---|---|---|
| committer | Tobias Schmitz <tobiasschmitz2001@gmail.com> | 2025-07-07 12:28:53 +0200 |
| commit | b0d3c2dca4871e716241e09734340f45b1b2cd7a (patch) | |
| tree | 028d8f7409d1d49975ab5a5b76f060987ee7b22f /Cargo.lock | |
| parent | 58c6729df40c303e429986e312472c1999c3dfbd (diff) | |
test: table header id generation
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 28 |
1 files changed, 26 insertions, 2 deletions
@@ -593,6 +593,12 @@ dependencies = [ ] [[package]] +name = "diff" +version = "0.1.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "56254986775e3233ffa9c4d7d3faaf6d36a2c09d30b20687e9f88bc8bafc16c8" + +[[package]] name = "dirs" version = "6.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -1367,7 +1373,7 @@ dependencies = [ [[package]] name = "krilla" version = "0.4.0" -source = "git+https://github.com/saecki/krilla?branch=tag-attributes#2556c404d19746f9385b4a4e26e910d9e625c1db" +source = "git+https://github.com/saecki/krilla?branch=tag-attributes#736d8b7e2c9c43d3fcf8b6bf31fb1a179605cab9" dependencies = [ "base64", "bumpalo", @@ -1396,7 +1402,7 @@ dependencies = [ [[package]] name = "krilla-svg" version = "0.1.0" -source = "git+https://github.com/saecki/krilla?branch=tag-attributes#2556c404d19746f9385b4a4e26e910d9e625c1db" +source = "git+https://github.com/saecki/krilla?branch=tag-attributes#736d8b7e2c9c43d3fcf8b6bf31fb1a179605cab9" dependencies = [ "flate2", "fontdb", @@ -1983,6 +1989,16 @@ dependencies = [ ] [[package]] +name = "pretty_assertions" +version = "1.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3ae130e2f271fbc2ac3a40fb1d07180839cdbbe443c7a27e1e3c13c5cac0116d" +dependencies = [ + "diff", + "yansi", +] + +[[package]] name = "proc-macro2" version = "1.0.93" source = "registry+https://github.com/rust-lang/crates.io-index" @@ -3131,6 +3147,7 @@ dependencies = [ name = "typst-pdf" version = "0.13.1" dependencies = [ + "az", "bytemuck", "comemo", "ecow", @@ -3138,6 +3155,7 @@ dependencies = [ "infer", "krilla", "krilla-svg", + "pretty_assertions", "serde", "smallvec", "typst-assets", @@ -3803,6 +3821,12 @@ dependencies = [ ] [[package]] +name = "yansi" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cfe53a6657fd280eaa890a3bc59152892ffa3e30101319d168b781ed6529b049" + +[[package]] name = "yoke" version = "0.7.5" source = "registry+https://github.com/rust-lang/crates.io-index" |
