Fix minimal-versions check for bson crate integration

This commit is contained in:
tyranron 2024-02-09 16:42:05 +02:00
parent b9fe911d1f
commit 2ce7dae298
No known key found for this signature in database
GPG key ID: 762E144FB230A4F0

View file

@ -34,7 +34,7 @@ default = [
anyhow = ["dep:anyhow"]
backtrace = ["anyhow?/backtrace"]
bigdecimal = ["dep:bigdecimal", "dep:num-bigint", "dep:ryu"]
bson = ["dep:bson"]
bson = ["dep:bson", "dep:tap"]
chrono = ["dep:chrono"]
chrono-clock = ["chrono", "chrono/clock"]
chrono-tz = ["dep:chrono-tz", "dep:regex"]
@ -74,6 +74,8 @@ uuid = { version = "1.3", default-features = false, optional = true }
num-bigint = { version = "0.4.2", optional = true }
# TODO: Try remove on upgrade of `chrono-tz` crate.
regex = { version = "1.6", features = ["std"], default-features = false, optional = true }
# TODO: Try remove on upgrade of `bson` crate.
tap = { version = "1.0.1", optional = true }
# TODO: Remove on upgrade to 0.4.1 version of `graphql-parser`.
void = { version = "1.0.2", optional = true }