Skip to content

Commit

Permalink
chore: avoid pre-compiled binaries from serde
Browse files Browse the repository at this point in the history
Pin `serde` to `1.0.171` to avoid pre-compiled binaries that are used
after for derive macros.
  • Loading branch information
dnaka91 committed Aug 19, 2023
1 parent 4685063 commit 6ea517d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ open = "5.0.0"
rayon = "1.7.0"
rustc-demangle = "0.1.23"
semver = { version = "1.0.18", features = ["serde"] }
serde = { version = "1.0.183", features = ["derive"] }
serde = { version = "=1.0.171", features = ["derive"] }
serde_json = "1.0.104"
serde_path_to_error = "0.1.14"
time = { version = "0.3.25", features = ["formatting", "local-offset", "macros"] }
Expand Down

0 comments on commit 6ea517d

Please sign in to comment.