Skip to content

Commit

Permalink
alpkit: Avoid relying on precompiled serde_derive binary
Browse files Browse the repository at this point in the history
  • Loading branch information
jirutka committed Aug 19, 2023
1 parent b2824cb commit cd549ea
Show file tree
Hide file tree
Showing 2 changed files with 6 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.

3 changes: 2 additions & 1 deletion alpkit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ bitmask-enum = "2.1"
field_names = "0.2"
flate2 = { version = "1.0", default-features = false }
process_control = { version = "4.0", optional = true }
serde = { version = "1.0", features = ["derive"] }
# Due to https://github.com/serde-rs/serde/issues/2538
serde = { version = "1.0, < 1.0.172", features = ["derive"] }
tar = { version = "0.4", default-features = false }
thiserror = "1.0"

Expand Down

0 comments on commit cd549ea

Please sign in to comment.