Skip to content

Commit 54023cc

Browse files
committed
poem 3.1.8
poem-openapi 5.1.9
1 parent db2a2ce commit 54023cc

File tree

197 files changed

+588
-575
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

197 files changed

+588
-575
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,14 @@ jobs:
2323
path: poem-openapi
2424
- name: poem-lambda
2525
path: poem-lambda
26+
- name: poem-grpc-build
27+
path: poem-grpc-build
2628
- name: poem-grpc
2729
path: poem-grpc
30+
- name: poem-mcpserver-macros
31+
path: poem-mcpserver-macros
32+
- name: poem-mcpserver
33+
path: poem-mcpserver
2834
services:
2935
redis:
3036
image: redis:5.0.7

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Install Stable Toolchain
2222
uses: dtolnay/rust-toolchain@stable
2323
with:
24-
toolchain: 1.83.0
24+
toolchain: 1.85.0
2525
components: rustfmt
2626
- name: Cache Rust
2727
uses: Swatinem/rust-cache@v2

.github/workflows/release.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ jobs:
3636
- name: poem-grpc
3737
registryName: poem-grpc
3838
path: poem-grpc
39+
- name: poem-mcpserver-macros
40+
registryName: poem-mcpserver-macros
41+
path: poem-mcpserver-macros
42+
- name: poem-mcpserver
43+
registryName: poem-mcpserver
44+
path: poem-mcpserver
3945
steps:
4046
- uses: dtolnay/rust-toolchain@stable
4147
with:

Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,19 +14,19 @@ members = [
1414

1515
[workspace.package]
1616
authors = ["sunli <[email protected]>"]
17-
edition = "2021"
17+
edition = "2024"
1818
license = "MIT OR Apache-2.0"
1919
documentation = "https://docs.rs/poem/"
2020
homepage = "https://github.com/poem-web/poem"
2121
repository = "https://github.com/poem-web/poem"
22-
rust-version = "1.83"
22+
rust-version = "1.85"
2323

2424
[workspace.dependencies]
25-
poem = { path = "poem", version = "3.1.7", default-features = false }
26-
poem-derive = { path = "poem-derive", version = "3.1.4" }
27-
poem-openapi-derive = { path = "poem-openapi-derive", version = "5.1.8" }
28-
poem-grpc-build = { path = "poem-grpc-build", version = "0.5.2" }
29-
poem-mcpserver-macros = { path = "poem-mcpserver-macros", version = "0.1.6" }
25+
poem = { path = "poem", version = "3.1.8", default-features = false }
26+
poem-derive = { path = "poem-derive", version = "3.1.8" }
27+
poem-openapi-derive = { path = "poem-openapi-derive", version = "5.1.9" }
28+
poem-grpc-build = { path = "poem-grpc-build", version = "0.5.4" }
29+
poem-mcpserver-macros = { path = "poem-mcpserver-macros", version = "0.1.7" }
3030

3131
proc-macro-crate = "3.0.0"
3232
proc-macro2 = "1.0.29"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
alt="Unsafe Rust forbidden" />
1111
</a>
1212
<a>
13-
<img src="https://img.shields.io/badge/rustc-1.83.0+-ab6000.svg"
14-
alt="rustc 1.83.0+" />
13+
<img src="https://img.shields.io/badge/rustc-1.85.0+-ab6000.svg"
14+
alt="rustc 1.85.0+" />
1515
</a>
1616
<a href="https://discord.gg/qWWNxwasb7">
1717
<img src="https://img.shields.io/discord/932986985604333638.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2" />

poem-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "poem-derive"
3-
version = "3.1.4"
3+
version = "3.1.8"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

poem-derive/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ mod utils;
1111

1212
use proc_macro::TokenStream;
1313
use quote::{format_ident, quote};
14-
use syn::{parse_macro_input, FnArg, GenericParam, ItemFn, Member, Result};
14+
use syn::{FnArg, GenericParam, ItemFn, Member, Result, parse_macro_input};
1515

1616
/// Wrap an asynchronous function as an `Endpoint`.
1717
///

poem-derive/src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
use proc_macro_crate::{FoundCrate, crate_name};
12
use proc_macro2::{Span, TokenStream};
2-
use proc_macro_crate::{crate_name, FoundCrate};
33
use quote::quote;
44
use syn::Ident;
55

poem-grpc-build/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "poem-grpc-build"
3-
version = "0.5.2"
3+
version = "0.5.4"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true

poem-grpc-build/src/utils.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1+
use proc_macro_crate::{FoundCrate, crate_name};
12
use proc_macro2::{Span, TokenStream};
2-
use proc_macro_crate::{crate_name, FoundCrate};
33
use quote::quote;
44
use syn::Ident;
55

0 commit comments

Comments
 (0)