Fix minimal version of fnv
dependency crate
This commit is contained in:
parent
5d53001994
commit
5dec22ad7b
3 changed files with 6 additions and 2 deletions
|
@ -1,3 +1,7 @@
|
|||
# [[0.15.12] 2024-01-??](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.12)
|
||||
|
||||
- Fix minimal version of `fnv` dependency crate.
|
||||
|
||||
# [[0.15.11] 2023-01-31](https://github.com/graphql-rust/juniper/releases/tag/juniper-v0.15.11)
|
||||
|
||||
- Fix string mangling on dynamic schema by upgrading `smartstring` to `1.0` version. ([#1142](https://github.com/graphql-rust/juniper/issues/1142), [#1143](https://github.com/graphql-rust/juniper/issues/1143))
|
||||
|
|
|
@ -39,7 +39,7 @@ async-trait = "0.1.39"
|
|||
bson = { version = "1.0", optional = true }
|
||||
chrono = { version = "0.4", default-features = false, optional = true }
|
||||
chrono-tz = { version = "0.5", default-features = false, optional = true }
|
||||
fnv = "1.0.3"
|
||||
fnv = "1.0.5"
|
||||
futures = { version = "0.3.1", features = ["alloc"], default-features = false }
|
||||
futures-enum = { version = "0.1.12", default-features = false }
|
||||
graphql-parser = { version = "0.3", optional = true }
|
||||
|
|
|
@ -90,7 +90,7 @@ Juniper has not reached 1.0 yet, thus some API instability should be expected.
|
|||
[bson]: https://crates.io/crates/bson
|
||||
|
||||
*/
|
||||
#![doc(html_root_url = "https://docs.rs/juniper/0.15.11")]
|
||||
#![doc(html_root_url = "https://docs.rs/juniper/0.15.12")]
|
||||
#![warn(missing_docs)]
|
||||
|
||||
// Required for using `juniper_codegen` macros inside this crate to resolve absolute `::juniper`
|
||||
|
|
Loading…
Reference in a new issue