Skip to content

Commit bafd44a

Browse files
feat(poem-grants)!: support poem 2.x.x (#72)
build(deps): bump the poem-dependencies group with 2 updates Updates the requirements on [poem](https://github.com/poem-web/poem) and [poem-openapi](https://github.com/poem-web/poem) to permit the latest version. Updates `poem` to 2.0.0 - [Release notes](https://github.com/poem-web/poem/releases) - [Commits](https://github.com/poem-web/poem/compare/poem-openapi@2.0.0-alpha.1...v2.0.0) Updates `poem-openapi` to 4.0.0 - [Release notes](https://github.com/poem-web/poem/releases) - [Commits](https://github.com/poem-web/poem/commits) --- updated-dependencies: - dependency-name: poem dependency-type: direct:production dependency-group: poem-dependencies - dependency-name: poem-openapi dependency-type: direct:production dependency-group: poem-dependencies ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 4681071 commit bafd44a

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

poem-grants/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,13 @@ default = ["macro-check"]
2020
macro-check = ["protect-endpoints-proc-macro"]
2121

2222
[dependencies]
23-
poem = "1"
23+
poem = "2"
2424
protect-endpoints-proc-macro = { workspace = true, features = ["poem"], optional = true }
2525
thiserror = "1"
2626

2727
[dev-dependencies]
28-
poem = {version = "1", features = ["test"]}
29-
poem-openapi = "3.0.6"
28+
poem = {version = "2", features = ["test"]}
29+
poem-openapi = "4.0.0"
3030
serde = {version = "1.0", features = ["derive"]}
3131
tokio = {version = "1.34.0", features = ["rt-multi-thread"]}
3232
jsonwebtoken = "9.1.0"

proc-macro/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ syn = { version = "2.0", features = ["full", "derive", "extra-traits"] }
2828
[dev-dependencies]
2929
rocket = { version = "0.5.0", features = ["json"] }
3030
actix-web = { version = "4.4.0" }
31-
poem = { version = "1.3.59" }
32-
poem-openapi = { version = "3.0.6" }
31+
poem = { version = "2.0.0" }
32+
poem-openapi = { version = "4.0.0" }
3333
serde = { version = "1.0", features = ["derive"] }
3434
actix-web-grants = { path = "../actix-web-grants" }
3535
rocket-grants = { path = "../rocket-grants" }

0 commit comments

Comments
 (0)