Skip to content

Commit

Permalink
Prepare 0.16.1 release of juniper crate
Browse files Browse the repository at this point in the history
  • Loading branch information
tyranron committed Apr 4, 2024
1 parent c674548 commit 9c4ea32
Show file tree
Hide file tree
Showing 24 changed files with 53 additions and 52 deletions.
2 changes: 1 addition & 1 deletion book/src/advanced/implicit_and_explicit_null.md
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ impl Mutation {



[`Nullable`]: https://docs.rs/juniper/0.16.0/juniper/enum.Nullable.html
[`Nullable`]: https://docs.rs/juniper/0.16.1/juniper/enum.Nullable.html
[GraphQL]: https://graphql.org
[Juniper]: https://docs.rs/juniper
[Rust]: https://www.rust-lang.org
Expand Down
12 changes: 6 additions & 6 deletions book/src/advanced/lookahead.md
Original file line number Diff line number Diff line change
Expand Up @@ -213,9 +213,9 @@ See more available look-ahead features in the API docs of the [`LookAheadSelecti



[`DefaultScalarValue`]: https://docs.rs/juniper/0.16.0/juniper/enum.DefaultScalarValue.html
[`Executor`]: https://docs.rs/juniper/0.16.0/juniper/executor/struct.Executor.html
[`ScalarValue`]: https://docs.rs/juniper/0.16.0/juniper/trait.ScalarValue.html
[`DefaultScalarValue`]: https://docs.rs/juniper/0.16.1/juniper/enum.DefaultScalarValue.html
[`Executor`]: https://docs.rs/juniper/0.16.1/juniper/executor/struct.Executor.html
[`ScalarValue`]: https://docs.rs/juniper/0.16.1/juniper/trait.ScalarValue.html
[GraphQL]: https://graphql.org
[Juniper]: https://docs.rs/juniper
[Rust]: https://www.rust-lang.org
Expand All @@ -224,6 +224,6 @@ See more available look-ahead features in the API docs of the [`LookAheadSelecti
[1]: https://spec.graphql.org/October2021#sec-Execution
[2]: https://spec.graphql.org/October2021#sec-Language.Operations\
[3]: https://spec.graphql.org/October2021#sec-Language.Fields
[20]: https://docs.rs/juniper/0.16.0/juniper/executor/struct.Executor.html#method.look_ahead
[21]: https://docs.rs/juniper/0.16.0/juniper/executor/struct.LookAheadSelection.html
[22]: https://docs.rs/juniper/0.16.0/juniper/executor/struct.LookAheadChildren.html
[20]: https://docs.rs/juniper/0.16.1/juniper/executor/struct.Executor.html#method.look_ahead
[21]: https://docs.rs/juniper/0.16.1/juniper/executor/struct.LookAheadSelection.html
[22]: https://docs.rs/juniper/0.16.1/juniper/executor/struct.LookAheadChildren.html
4 changes: 2 additions & 2 deletions book/src/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ This page will give you a short introduction to the concepts in [Juniper].

```toml
[dependencies]
juniper = "0.16.0"
juniper = "0.16.1"
```


Expand Down Expand Up @@ -229,4 +229,4 @@ fn main() {
[schema-first]: https://www.apollographql.com/blog/backend/architecture/schema-first-vs-code-only-graphql#schema-first

[1]: https://spec.graphql.org/October2021#sec-Root-Operation-Types
[2]: https://docs.rs/juniper/0.16.0/juniper/macro.graphql_object.html
[2]: https://docs.rs/juniper/0.16.1/juniper/macro.graphql_object.html
10 changes: 5 additions & 5 deletions book/src/schema/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,11 +159,11 @@ fn main() {



[`EmptyMutation`]: https://docs.rs/juniper/0.16.0/juniper/struct.EmptyMutation.html
[`EmptySubscription`]: https://docs.rs/juniper/0.16.0/juniper/struct.EmptySubscription.html
[`EmptyMutation`]: https://docs.rs/juniper/0.16.1/juniper/struct.EmptyMutation.html
[`EmptySubscription`]: https://docs.rs/juniper/0.16.1/juniper/struct.EmptySubscription.html
[`juniper`]: https://docs.rs/juniper
[`juniper-from-schema`]: https://docs.rs/juniper-from-schema
[`RootNode`]: https://docs.rs/juniper/0.16.0/juniper/struct.RootNode.html
[`RootNode`]: https://docs.rs/juniper/0.16.1/juniper/struct.RootNode.html
[code-first]: https://www.apollographql.com/blog/backend/architecture/schema-first-vs-code-only-graphql#code-only
[schema-first]: https://www.apollographql.com/blog/backend/architecture/schema-first-vs-code-only-graphql#schema-first
[GraphQL]: https://graphql.org
Expand All @@ -179,7 +179,7 @@ fn main() {
[4]: https://spec.graphql.org/October2021#sec-Objects
[5]: https://spec.graphql.org/October2021#sec-Root-Operation-Types.Default-Root-Operation-Type-Names
[6]: https://graphql.org/learn/schema#type-language
[20]: https://docs.rs/juniper/0.16.0/juniper/struct.RootNode.html#method.as_sdl
[20]: https://docs.rs/juniper/0.16.1/juniper/struct.RootNode.html#method.as_sdl
[21]: https://docs.rs/crate/juniper/latest/source/src/introspection/query.graphql
[22]: https://docs.rs/juniper/0.16.0/juniper/fn.introspect.html
[22]: https://docs.rs/juniper/0.16.1/juniper/fn.introspect.html
[30]: https://npmjs.com/package/graphql-json-to-sdl
2 changes: 1 addition & 1 deletion book/src/schema/introspection.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@ fn main() {
[3]: https://spec.graphql.org/October2021#sel-GAFRJDABABI5C
[4]: https://spec.graphql.org/October2021#sel-GAFRJFABABMvpN
[5]: https://spec.graphql.org/October2021#sec-Execution
[9]: https://docs.rs/juniper/0.16.0/juniper/struct.RootNode.html#method.disable_introspection
[9]: https://docs.rs/juniper/0.16.1/juniper/struct.RootNode.html#method.disable_introspection
[10]: https://www.apollographql.com/blog/why-you-should-disable-graphql-introspection-in-production
[11]: https://spec.graphql.org/October2021#sec-Validation
6 changes: 3 additions & 3 deletions book/src/schema/subscriptions.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,10 @@ For information about serving [GraphQL subscriptions][9] over [WebSocket], see t
[`Coordinator`]: https://docs.rs/juniper_subscriptions/0.17.0/juniper_subscriptions/struct.Coordinator.html
[`Connection`]: https://docs.rs/juniper_subscriptions/0.17.0/juniper_subscriptions/struct.Connection.html
[`Future`]: https://doc.rust-lang.org/stable/std/future/trait.Future.html
[`GraphQLError`]: https://docs.rs/juniper/0.16.0/juniper/enum.GraphQLError.html
[`GraphQLError`]: https://docs.rs/juniper/0.16.1/juniper/enum.GraphQLError.html
[`Stream`]: https://docs.rs/futures/latest/futures/stream/trait.Stream.html
[`SubscriptionCoordinator`]: https://docs.rs/juniper/0.16.0/juniper/trait.SubscriptionCoordinator.html
[`SubscriptionConnection`]: https://docs.rs/juniper/0.16.0/juniper/trait.SubscriptionConnection.html
[`SubscriptionCoordinator`]: https://docs.rs/juniper/0.16.1/juniper/trait.SubscriptionCoordinator.html
[`SubscriptionConnection`]: https://docs.rs/juniper/0.16.1/juniper/trait.SubscriptionConnection.html
[GraphQL]: https://graphql.org
[Juniper]: https://docs.rs/juniper
[Rust]: https://www.rust-lang.org
Expand Down
2 changes: 1 addition & 1 deletion book/src/types/enums.md
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ enum Episode<T> {

[0]: https://spec.graphql.org/October2021#sec-Enums
[1]: https://spec.graphql.org/October2021#sec-Scalars
[2]: https://docs.rs/juniper/0.16.0/juniper/derive.GraphQLEnum.html
[2]: https://docs.rs/juniper/0.16.1/juniper/derive.GraphQLEnum.html
[3]: https://doc.rust-lang.org/reference/items/enumerations.html
[4]: https://spec.graphql.org/October2021#sec-Descriptions
[5]: https://spec.graphql.org/October2021#sec--deprecated
Expand Down
2 changes: 1 addition & 1 deletion book/src/types/input_objects.md
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ struct Point2D {
[spec]: https://spec.graphql.org/October2021

[0]: https://spec.graphql.org/October2021#sec-Input-Objects
[2]: https://docs.rs/juniper/0.16.0/juniper/derive.GraphQLInputObject.html
[2]: https://docs.rs/juniper/0.16.1/juniper/derive.GraphQLInputObject.html
[4]: https://spec.graphql.org/October2021#sec-Language.Fields
[5]: https://spec.graphql.org/October2021#sec-Language.Arguments
[6]: https://doc.rust-lang.org/reference/comments.html#doc-comments
Expand Down
4 changes: 2 additions & 2 deletions book/src/types/interfaces.md
Original file line number Diff line number Diff line change
Expand Up @@ -397,8 +397,8 @@ trait Person {
[Rust]: https://www.rust-lang.org

[0]: https://spec.graphql.org/October2021#sec-Interfaces
[2]: https://docs.rs/juniper/0.16.0/juniper/derive.GraphQLInterface.html
[3]: https://docs.rs/juniper/0.16.0/juniper/attr.graphql_interface.html
[2]: https://docs.rs/juniper/0.16.1/juniper/derive.GraphQLInterface.html
[3]: https://docs.rs/juniper/0.16.1/juniper/attr.graphql_interface.html
[4]: https://spec.graphql.org/October2021#sec-Language.Fields
[5]: https://spec.graphql.org/October2021#sec-Language.Arguments
[6]: https://spec.graphql.org/October2021#sec-Non-Null
Expand Down
4 changes: 2 additions & 2 deletions book/src/types/objects/complex_fields.md
Original file line number Diff line number Diff line change
Expand Up @@ -217,8 +217,8 @@ impl Person {

[0]: https://spec.graphql.org/October2021#sec-Objects
[1]: https://spec.graphql.org/October2021#sec-Execution
[2]: https://docs.rs/juniper/0.16.0/juniper/derive.GraphQLObject.html
[3]: https://docs.rs/juniper/0.16.0/juniper/attr.graphql_object.html
[2]: https://docs.rs/juniper/0.16.1/juniper/derive.GraphQLObject.html
[3]: https://docs.rs/juniper/0.16.1/juniper/attr.graphql_object.html
[4]: https://spec.graphql.org/October2021#sec-Language.Fields
[5]: https://spec.graphql.org/October2021#sec-Language.Arguments
[6]: https://doc.rust-lang.org/reference/items/implementations.html#inherent-implementations
Expand Down
6 changes: 3 additions & 3 deletions book/src/types/objects/error/field.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,6 @@ And the specified structured error information will be included into the [error'
[13]: https://doc.rust-lang.org/stable/std/macro.panic.html
[14]: https://doc.rust-lang.org/book/ch09-02-recoverable-errors-with-result.html#a-shortcut-for-propagating-errors-the--operator
[15]: https://doc.rust-lang.org/stable/std/fmt/trait.Display.html
[21]: https://docs.rs/juniper/0.16.0/juniper/executor/type.FieldResult.html
[22]: https://docs.rs/juniper/0.16.0/juniper/executor/struct.FieldError.html
[23]: https://docs.rs/juniper/0.16.0/juniper/executor/trait.IntoFieldError.html
[21]: https://docs.rs/juniper/0.16.1/juniper/executor/type.FieldResult.html
[22]: https://docs.rs/juniper/0.16.1/juniper/executor/struct.FieldError.html
[23]: https://docs.rs/juniper/0.16.1/juniper/executor/trait.IntoFieldError.html
6 changes: 3 additions & 3 deletions book/src/types/objects/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ Because `Person` is a valid [GraphQL] type, we can have a `Vec<Person>` in a [st



[`Nullable`]: https://docs.rs/juniper/0.16.0/juniper/enum.Nullable.html
[`Nullable`]: https://docs.rs/juniper/0.16.1/juniper/enum.Nullable.html
[GraphQL]: https://graphql.org
[Juniper]: https://docs.rs/juniper
[Rust]: https://www.rust-lang.org
Expand All @@ -213,8 +213,8 @@ Because `Person` is a valid [GraphQL] type, we can have a `Vec<Person>` in a [st

[0]: https://spec.graphql.org/October2021#sec-Objects
[1]: https://spec.graphql.org/October2021#sec-Execution
[2]: https://docs.rs/juniper/0.16.0/juniper/derive.GraphQLObject.html
[3]: https://docs.rs/juniper/0.16.0/juniper/attr.graphql_object.html
[2]: https://docs.rs/juniper/0.16.1/juniper/derive.GraphQLObject.html
[3]: https://docs.rs/juniper/0.16.1/juniper/attr.graphql_object.html
[4]: https://spec.graphql.org/October2021#sec-Non-Null
[5]: https://spec.graphql.org/October2021#sec-Introspection
[6]: https://doc.rust-lang.org/reference/comments.html#doc-comments
Expand Down
6 changes: 3 additions & 3 deletions book/src/types/scalars.md
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ mod date_scalar {
[`ID`]: https://spec.graphql.org/October2021#sec-ID
[`LocalTime`]: https://graphql-scalars.dev/docs/scalars/local-time
[`rust_decimal`]: https://docs.rs/rust_decimal
[`ScalarValue`]: https://docs.rs/juniper/0.16.0/juniper/trait.ScalarValue.html
[`ScalarValue`]: https://docs.rs/juniper/0.16.1/juniper/trait.ScalarValue.html
[`serde`]: https://docs.rs/serde
[`time`]: https://docs.rs/time
[`time::Date`]: https://docs.rs/time/latest/time/struct.Date.html
Expand Down Expand Up @@ -453,5 +453,5 @@ mod date_scalar {
[5]: https://spec.graphql.org/October2021/#sec-Scalars.Built-in-Scalars
[6]: https://serde.rs/container-attrs.html#transparent
[7]: https://spec.graphql.org/October2021#sec-Value-Resolution
[8]: https://docs.rs/juniper/0.16.0/juniper/derive.GraphQLScalar.html
[9]: https://docs.rs/juniper/0.16.0/juniper/attr.graphql_scalar.html
[8]: https://docs.rs/juniper/0.16.1/juniper/derive.GraphQLScalar.html
[9]: https://docs.rs/juniper/0.16.1/juniper/attr.graphql_scalar.html
2 changes: 1 addition & 1 deletion book/src/types/unions.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ enum Character<S> {

[0]: https://spec.graphql.org/October2021#sec-Unions
[1]: https://graphql.org/learn/schema
[2]: https://docs.rs/juniper/0.16.0/juniper/derive.GraphQLUnion.html
[2]: https://docs.rs/juniper/0.16.1/juniper/derive.GraphQLUnion.html
[6]: https://doc.rust-lang.org/reference/comments.html#doc-comments
[7]: https://spec.graphql.org/October2021#sec-Descriptions
[10]: https://spec.graphql.org/October2021#sec-Objects
Expand Down
7 changes: 4 additions & 3 deletions juniper/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@ All user visible changes to `juniper` crate will be documented in this file. Thi



## master
## [0.16.1] · 2024-04-04
[0.16.1]: /../../tree/juniper-v0.16.1/juniper

[Diff](/../../compare/juniper-v0.16.0...master)
[Diff](/../../compare/juniper-v0.16.0...juniper-v0.16.1) | [Milestone](/../../milestone/6)

### Changed

Expand All @@ -22,7 +23,7 @@ All user visible changes to `juniper` crate will be documented in this file. Thi
## [0.16.0] · 2024-03-20
[0.16.0]: /../../tree/juniper-v0.16.0/juniper

[Diff](/../../compare/juniper-v0.15.12...juniper-v0.16.0)
[Diff](/../../compare/juniper-v0.15.12...juniper-v0.16.0) | [Milestone](/../../milestone/4)

### BC Breaks

Expand Down
2 changes: 1 addition & 1 deletion juniper/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "juniper"
version = "0.16.0"
version = "0.16.1"
edition = "2021"
rust-version = "1.73"
description = "GraphQL server library."
Expand Down
4 changes: 2 additions & 2 deletions juniper/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Juniper (GraphQL server library for Rust)
[![Rust 1.73+](https://img.shields.io/badge/rustc-1.73+-lightgray.svg "Rust 1.73+")](https://blog.rust-lang.org/2023/10/05/Rust-1.73.0.html)

- [Juniper Book] ([current][Juniper Book] | [edge][Juniper Book edge])
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper-v0.16.0/juniper/CHANGELOG.md)
- [Changelog](https://github.com/graphql-rust/juniper/blob/juniper-v0.16.1/juniper/CHANGELOG.md)


[GraphQL] is a data query language developed by [Facebook] and intended to serve mobile and web application frontends.
Expand Down Expand Up @@ -74,7 +74,7 @@ As an exception to other [GraphQL] libraries for other languages, [Juniper] buil

## License

This project is licensed under [BSD 2-Clause License](https://github.com/graphql-rust/juniper/blob/juniper-v0.16.0/juniper/LICENSE).
This project is licensed under [BSD 2-Clause License](https://github.com/graphql-rust/juniper/blob/juniper-v0.16.1/juniper/LICENSE).



Expand Down
4 changes: 2 additions & 2 deletions juniper_actix/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ actix-web = "4.4"
actix-ws = { version = "0.2", optional = true }
anyhow = "1.0.47"
futures = "0.3.22"
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
juniper = { version = "0.16", path = "../juniper", default-features = false }
juniper_graphql_ws = { version = "0.4.0", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
serde = { version = "1.0.122", features = ["derive"] }
serde_json = "1.0.18"
Expand All @@ -43,7 +43,7 @@ actix-test = "0.1"
async-stream = "0.3"
bytes = "1.0"
env_logger = "0.11"
juniper = { version = "0.16.0", path = "../juniper", features = ["expose-test-schema"] }
juniper = { version = "0.16", path = "../juniper", features = ["expose-test-schema"] }
log = "0.4"
rand = "0.8"
tokio = "1.0"
Expand Down
4 changes: 2 additions & 2 deletions juniper_axum/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ subscriptions = ["axum/ws", "juniper_graphql_ws/graphql-ws", "dep:futures"]
[dependencies]
axum = "0.7"
futures = { version = "0.3.22", optional = true }
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
juniper = { version = "0.16", path = "../juniper", default-features = false }
juniper_graphql_ws = { version = "0.4.0", path = "../juniper_graphql_ws", features = ["graphql-transport-ws"] }
serde = { version = "1.0.122", features = ["derive"] }
serde_json = "1.0.18"
Expand All @@ -40,7 +40,7 @@ bytes = "1.2"
anyhow = "1.0"
axum = { version = "0.7", features = ["http1", "macros", "tokio"] }
futures = "0.3.22"
juniper = { version = "0.16.0", path = "../juniper", features = ["expose-test-schema"] }
juniper = { version = "0.16", path = "../juniper", features = ["expose-test-schema"] }
tokio = { version = "1.20", features = ["macros", "net", "rt-multi-thread", "time"] }
tokio-stream = "0.1"
tokio-tungstenite = "0.21"
Expand Down
2 changes: 1 addition & 1 deletion juniper_graphql_ws/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ graphql-transport-ws = []
graphql-ws = []

[dependencies]
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
juniper = { version = "0.16", path = "../juniper", default-features = false }
juniper_subscriptions = { version = "0.17.0", path = "../juniper_subscriptions" }
serde = { version = "1.0.122", features = ["derive"], default-features = false }
tokio = { version = "1.0", features = ["macros", "rt", "time"], default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions juniper_hyper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ exclude = ["/examples/", "/release.toml"]
futures = "0.3.22"
http-body-util = "0.1"
hyper = { version = "1.0", features = ["server"] }
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
juniper = { version = "0.16", path = "../juniper", default-features = false }
serde_json = "1.0.18"
tokio = "1.0"
url = "2.0"

[dev-dependencies]
hyper = { version = "1.0", features = ["http1"] }
hyper-util = { version = "0.1", features = ["tokio"] }
juniper = { version = "0.16.0", path = "../juniper", features = ["expose-test-schema"] }
juniper = { version = "0.16", path = "../juniper", features = ["expose-test-schema"] }
log = "0.4"
pretty_env_logger = "0.5"
reqwest = { version = "0.12", features = ["blocking", "rustls-tls"], default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions juniper_rocket/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ exclude = ["/examples/", "/tests/", "/release.toml"]

[dependencies]
futures = "0.3.22"
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
juniper = { version = "0.16", path = "../juniper", default-features = false }
rocket = { version = "0.5", default-features = false }
serde_json = "1.0.18"

Expand All @@ -32,4 +32,4 @@ pear = "0.2.4"
tempfile = "3.3"

[dev-dependencies]
juniper = { version = "0.16.0", path = "../juniper", features = ["expose-test-schema"] }
juniper = { version = "0.16", path = "../juniper", features = ["expose-test-schema"] }
2 changes: 1 addition & 1 deletion juniper_subscriptions/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ exclude = ["/release.toml"]

[dependencies]
futures = "0.3.22"
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
juniper = { version = "0.16", path = "../juniper", default-features = false }

[dev-dependencies]
serde_json = "1.0.18"
Expand Down
4 changes: 2 additions & 2 deletions juniper_warp/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ subscriptions = [

[dependencies]
futures = { version = "0.3.22", optional = true }
juniper = { version = "0.16.0", path = "../juniper", default-features = false }
juniper = { version = "0.16", path = "../juniper", default-features = false }
juniper_graphql_ws = { version = "0.4.0", path = "../juniper_graphql_ws", features = ["graphql-transport-ws", "graphql-ws"], optional = true }
log = { version = "0.4", optional = true }
serde = { version = "1.0.122", features = ["derive"] }
Expand All @@ -48,7 +48,7 @@ headers = "0.3.8"
async-stream = "0.3"
env_logger = "0.11"
futures = "0.3.22"
juniper = { version = "0.16.0", path = "../juniper", features = ["expose-test-schema"] }
juniper = { version = "0.16", path = "../juniper", features = ["expose-test-schema"] }
log = "0.4"
percent-encoding = "2.1"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
Expand Down

0 comments on commit 9c4ea32

Please sign in to comment.