summaryrefslogtreecommitdiff
path: root/crates/typst-docs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2023-08-19 20:06:01 +0200
committerLaurenz <laurmaedje@gmail.com>2023-08-19 20:06:01 +0200
commit3ab179ebd3157107bd650e3abc4e644fc183f79b (patch)
tree05a670026eba37cb0f034aa9eff9455b041ccc93 /crates/typst-docs
parent5fb5854ed80c48660b51ee163b3ff77f7e44ab94 (diff)
Restrict serde version
Diffstat (limited to 'crates/typst-docs')
-rw-r--r--crates/typst-docs/Cargo.toml2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/typst-docs/Cargo.toml b/crates/typst-docs/Cargo.toml
index 47088815..ab28e0ca 100644
--- a/crates/typst-docs/Cargo.toml
+++ b/crates/typst-docs/Cargo.toml
@@ -18,7 +18,7 @@ heck = "0.4"
include_dir = "0.7"
once_cell = "1"
pulldown-cmark = "0.9"
-serde = { version = "1", features = ["derive"] }
+serde = { version = ">= 1.0.126, <= 1.0.171", features = ["derive"] }
serde_yaml = "0.8"
syntect = { version = "5", default-features = false, features = ["parsing", "html", "regex-fancy"] }
typed-arena = "2"