Skip to content

Commit

Permalink
Merge pull request #631 from Mingun/serde-compatibility
Browse files Browse the repository at this point in the history
Temporary restrict maximum supported version of serde to 1.0.180
  • Loading branch information
Mingun authored Aug 15, 2023
2 parents f957002 + f8b8127 commit 1be35e1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ include = ["src/*", "LICENSE-MIT.md", "README.md"]
[dependencies]
document-features = { version = "0.2", optional = true }
encoding_rs = { version = "0.8", optional = true }
serde = { version = "1.0.100", optional = true }
# FIXME: remove upper bound when https://github.com/tafia/quick-xml/issues/630 is resolved
serde = { version = ">=1.0.100,<1.0.181", optional = true }
tokio = { version = "1.10", optional = true, default-features = false, features = ["io-util"] }
memchr = "2.1"
arbitrary = { version = "1.2.3", features = ["derive"], optional = true }
Expand Down

0 comments on commit 1be35e1

Please sign in to comment.