Skip to content

Commit

Permalink
Fix minimal-versions check for bson crate integration
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Feb 9, 2024
1 parent b9fe911 commit 2ce7dae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion juniper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down Expand Up @@ -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 }

Expand Down

0 comments on commit 2ce7dae

Please sign in to comment.