Skip to content

Commit

Permalink
bring back serde without precompiled binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
Byron committed Aug 21, 2023
1 parent 518f9b1 commit 8fd7949
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 20 deletions.
32 changes: 16 additions & 16 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,8 @@ tracing = { version = "0.1.37", optional = true }
owo-colors = "3.5.0"
tabled = { version = "0.10.0", default-features = false }

# Avoid pre-compiled binaries, see https://github.com/serde-rs/serde/issues/2538
serde_derive = "=1.0.171"
# Avoid pre-compiled binaries, see https://github.com/serde-rs/serde/issues/2538 and https://github.com/serde-rs/serde/pull/2590
serde_derive = ">=1.0.185"

once_cell = "1.18.0"
document-features = { version = "0.2.0", optional = true }
Expand Down
5 changes: 3 additions & 2 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,9 @@ confidence-threshold = 0.8
# Lint level for when multiple versions of the same crate are detected
multiple-versions = "allow"
deny = [
# See https://github.com/serde-rs/serde/issues/2538
{ name = "serde_derive", version = ">1.0.171" },
# Start range due to https://github.com/serde-rs/serde/issues/2538
# end range due to https://github.com/serde-rs/serde/pull/2590
{ name = "serde_derive", version = ">1.0.171, <1.0.185" },
]


Expand Down

0 comments on commit 8fd7949

Please sign in to comment.