File tree Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Expand file tree Collapse file tree 3 files changed +17
-5
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,14 @@ jobs:
34
34
- uses : Swatinem/rust-cache@v2
35
35
with :
36
36
save-if : ${{ github.ref == 'refs/heads/main' }}
37
- - name : cargo doc
38
- env :
39
- RUSTDOCFLAGS : " -D rustdoc::all -A rustdoc::private-doc-tests"
40
- run : cargo doc --all-features --no-deps
37
+ - name : cargo doc -p axum-core
38
+ run : cargo doc --package axum-core --all-features --no-deps
39
+ - name : cargo doc -p axum
40
+ run : cargo doc --package axum --all-features --no-deps
41
+ - name : cargo doc -p axum-extra
42
+ run : cargo doc --package axum-extra --all-features --no-deps
43
+ env :
44
+ RUSTDOCFLAGS : " -D rustdoc::all -A rustdoc::private-doc-tests"
41
45
42
46
cargo-hack :
43
47
runs-on : ubuntu-24.04
Original file line number Diff line number Diff line change @@ -10,11 +10,13 @@ and this project adheres to [Semantic Versioning].
10
10
- ** breaking:** Remove unused ` async-stream ` feature, which was accidentally
11
11
introduced as an implicit feature through an optional dependency which was no
12
12
longer being used ([ #3145 ] )
13
- - ** change:** Make the ` status ` function of rejections a ` const ` function, such
13
+ - ** fixed:** Fix a broken link in the documentation of ` ErasedJson ` ([ #3186 ] )
14
+ - ** changed:** Make the ` status ` function of rejections a ` const ` function, such
14
15
as ` FormRejection ` , ` QueryRejection ` and ` MultipartRejection ` ([ #3168 ] )
15
16
16
17
[ #3145 ] : https://github.com/tokio-rs/axum/pull/3145
17
18
[ #3168 ] : https://github.com/tokio-rs/axum/pull/3168
19
+ [ #3186 ] : https://github.com/tokio-rs/axum/pull/3186
18
20
19
21
# 0.10.0
20
22
Original file line number Diff line number Diff line change @@ -41,6 +41,12 @@ tracing = ["axum-core/tracing", "axum/tracing"]
41
41
typed-header = [" dep:headers" ]
42
42
typed-routing = [" dep:axum-macros" , " dep:percent-encoding" , " dep:serde_html_form" , " dep:form_urlencoded" ]
43
43
44
+ # Enabled by docs.rs because it uses all-features
45
+ __private_docs = [
46
+ # Required for the ErasedJson docs to be able to link to axum::Json
47
+ " axum/json" ,
48
+ ]
49
+
44
50
[dependencies ]
45
51
axum = { path = " ../axum" , version = " 0.8.0" , default-features = false , features = [" original-uri" ] }
46
52
axum-core = { path = " ../axum-core" , version = " 0.5.0" }
You can’t perform that action at this time.
0 commit comments