Skip to content

Commit

Permalink
Pin serde to version without binary blobs
Browse files Browse the repository at this point in the history
  • Loading branch information
t4ccer committed Aug 19, 2023
1 parent 6206491 commit 713b3e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,8 @@ num = "0.4.0"
num-derive = "0.3.3"
num-traits = "0.2.15"
serde_repr = { version = "0.1.12", optional = true}
serde = { version = "1.0.164", optional = true}
# Later versions introduce binary blob: https://github.com/serde-rs/serde/issues/2538
serde = { version = "<=1.0.171", optional = true}
elsa = "1.8.1"

[features]
Expand Down
2 changes: 1 addition & 1 deletion cgt-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ clap = { version = "4.3.0", features = ["derive"] }
cgt = { path = "../.", features = ["serde"] }
rayon = "1.7.0"
chrono = { version = "0.4.26", default-features = false, features = ["clock"] }
serde = { version = "1.0.164", features = ["derive"] }
serde = { version = "<=1.0.171", features = ["derive"] }
serde_json = "1.0.97"
rand = "0.8.5"
itertools = "0.10.5"
Expand Down

0 comments on commit 713b3e0

Please sign in to comment.