Skip to content

Commit a433a27

Browse files
committed
Fix bigdecimal crate surviving minimal versions check
1 parent 17a02fa commit a433a27

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

juniper/Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ default = [
3131
"url",
3232
"uuid",
3333
]
34-
bigdecimal = ["dep:bigdecimal", "dep:ryu"]
34+
bigdecimal = ["dep:bigdecimal", "dep:num-bigint", "dep:ryu"]
3535
bson = ["dep:bson"]
3636
chrono = ["dep:chrono"]
3737
chrono-clock = ["chrono", "chrono/clock"]
@@ -69,6 +69,8 @@ url = { version = "2.0", optional = true }
6969
uuid = { version = "1.3", default-features = false, optional = true }
7070

7171
# Fixes for MSRV check.
72+
# TODO: Try remove on upgrade of `bigdecimal` crate.
73+
num-bigint = { version = "0.4.2", optional = true }
7274
# TODO: Try remove on upgrade of `chrono-tz` crate.
7375
regex = { version = "1.6", features = ["std"], default-features = false, optional = true }
7476
# TODO: Remove on upgrade to 0.4.1 version of `graphql-parser`.

0 commit comments

Comments
 (0)