Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit100134a

Browse files
committed
v7.0.15
1 parent56f14fa commit100134a

File tree

10 files changed

+14
-14
lines changed

10 files changed

+14
-14
lines changed

‎Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ license = "MIT OR Apache-2.0"
1111
name ="async-graphql"
1212
readme ="README.md"
1313
repository ="https://github.com/async-graphql/async-graphql"
14-
version ="7.0.14"
14+
version ="7.0.15"
1515

1616
[features]
1717
apollo_persisted_queries = ["lru","sha2"]
@@ -147,10 +147,10 @@ members = [
147147
]
148148

149149
[workspace.dependencies]
150-
async-graphql = {path =".",version ="7.0.14",default-features =false }
151-
async-graphql-derive = {path ="derive",version ="7.0.14" }
152-
async-graphql-parser = {path ="parser",version ="7.0.14" }
153-
async-graphql-value = {path ="value",version ="7.0.14" }
150+
async-graphql = {path =".",version ="7.0.15",default-features =false }
151+
async-graphql-derive = {path ="derive",version ="7.0.15" }
152+
async-graphql-parser = {path ="parser",version ="7.0.15" }
153+
async-graphql-value = {path ="value",version ="7.0.15" }
154154

155155
serde = {version ="1.0.197",features = ["derive"] }
156156
serde_json ="1.0.115"

‎derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-derive"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.14"
12+
version ="7.0.15"
1313

1414
[lib]
1515
proc-macro =true

‎integrations/actix-web/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-actix-web"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.14"
12+
version ="7.0.15"
1313

1414
[dependencies]
1515
async-graphql.workspace =true

‎integrations/axum/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql", "axum"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-axum"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.14"
12+
version ="7.0.15"
1313

1414
[dependencies]
1515
async-graphql.workspace =true

‎integrations/poem/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql", "poem"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-poem"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.14"
12+
version ="7.0.15"
1313

1414
[dependencies]
1515
async-graphql.workspace =true

‎integrations/rocket/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql", "rocket"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-rocket"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.14"
12+
version ="7.0.15"
1313

1414
[dependencies]
1515
async-graphql.workspace =true

‎integrations/tide/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-tide"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.14"
12+
version ="7.0.15"
1313

1414
[features]
1515
default = ["websocket"]

‎integrations/warp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-warp"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.14"
12+
version ="7.0.15"
1313

1414
[dependencies]
1515
async-graphql.workspace =true

‎parser/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ keywords = ["futures", "async", "graphql"]
99
license ="MIT OR Apache-2.0"
1010
name ="async-graphql-parser"
1111
repository ="https://github.com/async-graphql/async-graphql"
12-
version ="7.0.14"
12+
version ="7.0.15"
1313

1414
[dependencies]
1515
async-graphql-value.workspace =true

‎value/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name ="async-graphql-value"
3-
version ="7.0.14"
3+
version ="7.0.15"
44
authors = ["sunli <scott_s829@163.com>","Koxiaet"]
55
edition ="2021"
66
description ="GraphQL value for async-graphql"

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp