Skip to content

Commit

Permalink
Set new minimum serde version
Browse files Browse the repository at this point in the history
1.0.184 does not ship with a precompiled binary anymore
  • Loading branch information
laurmaedje committed Aug 21, 2023
1 parent f600515 commit 522708b
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 24 deletions.
40 changes: 20 additions & 20 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion crates/typst-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ notify = "5"
once_cell = "1"
open = "4.0.2"
same-file = "1"
serde = ">= 1.0.126, <= 1.0.171"
serde = "1.0.184"
serde_json = "1"
serde_yaml = "0.9"
siphasher = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion crates/typst-docs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ heck = "0.4"
include_dir = "0.7"
once_cell = "1"
pulldown-cmark = "0.9"
serde = { version = ">= 1.0.126, <= 1.0.171", features = ["derive"] }
serde = { version = "1.0.184", features = ["derive"] }
serde_yaml = "0.8"
syntect = { version = "5", default-features = false, features = ["parsing", "html", "regex-fancy"] }
typed-arena = "2"
Expand Down
2 changes: 1 addition & 1 deletion crates/typst-syntax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ bench = false
comemo = "0.3"
ecow = { version = "0.1.1", features = ["serde"] }
once_cell = "1"
serde = { version = ">= 1.0.126, <= 1.0.171", features = ["derive"] }
serde = { version = "1.0.184", features = ["derive"] }
tracing = "0.1.37"
unicode-ident = "1.0"
unicode-math-class = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion crates/typst/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ regex = "1"
resvg = { version = "0.32", default-features = false, features = ["raster-images"] }
roxmltree = "0.18"
rustybuzz = "0.7"
serde = { version = ">= 1.0.126, <= 1.0.171", features = ["derive"] }
serde = { version = "1.0.184", features = ["derive"] }
siphasher = "0.3"
subsetter = "0.1.1"
svg2pdf = "0.6"
Expand Down

0 comments on commit 522708b

Please sign in to comment.