Skip to content

Commit

Permalink
Don't use precompiled serde_derive
Browse files Browse the repository at this point in the history
See serde-rs/serde#2538

Testing locally, it makes no difference to build speed and I dont want
to be downloading random binarys from crates.io.
  • Loading branch information
aDotInTheVoid committed Aug 19, 2023
1 parent 9324c5a commit 59526f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ members = [
chrono = { version = "0.4.26", features = ["serde"] }
regex = "1.9.3"
reqwest = { version = "0.11.18", features = ["json"] }
serde = { version = "1.0.181", features = ["derive"] }
serde = { version = "=1.0.171", features = ["derive"] }
serde_json = "1.0.104"
tokio = { version = "1.29.1", features = ["rt", "macros"] }
winnow = "0.5.10"
Expand Down
2 changes: 1 addition & 1 deletion lexgen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,6 @@ heck = "0.4.1"
prettyplease = "0.2.12"
proc-macro2 = { version = "1.0.66", default-features = false }
quote = { version = "1.0.32", default-features = false }
serde = { version = "1.0.174", features = ["derive"] }
serde = { version = "=1.0.171", features = ["derive"] }
serde_json = "1.0.103"
syn = "2.0.28"

0 comments on commit 59526f4

Please sign in to comment.