|
26 | 26 | #![doc(test(attr(warn(rust_2018_idioms))))]
|
27 | 27 | // Not needed for 2018 edition and conflicts with `rust_2018_idioms`
|
28 | 28 | #![doc(test(no_crate_inject))]
|
29 |
| -#![doc(html_root_url = "https://docs.rs/serde_with/3.1.0/")] |
| 29 | +#![doc(html_root_url = "https://docs.rs/serde_with/3.2.0/")] |
30 | 30 | #![cfg_attr(docsrs, feature(doc_cfg))]
|
31 | 31 | #![allow(
|
32 | 32 | // clippy is broken and shows wrong warnings
|
|
281 | 281 | //! # }
|
282 | 282 | //! ```
|
283 | 283 | //!
|
284 |
| -//! [`DisplayFromStr`]: https://docs.rs/serde_with/3.1.0/serde_with/struct.DisplayFromStr.html |
285 |
| -//! [`with_prefix!`]: https://docs.rs/serde_with/3.1.0/serde_with/macro.with_prefix.html |
286 |
| -//! [feature flags]: https://docs.rs/serde_with/3.1.0/serde_with/guide/feature_flags/index.html |
287 |
| -//! [skip_serializing_none]: https://docs.rs/serde_with/3.1.0/serde_with/attr.skip_serializing_none.html |
288 |
| -//! [StringWithSeparator]: https://docs.rs/serde_with/3.1.0/serde_with/struct.StringWithSeparator.html |
289 |
| -//! [user guide]: https://docs.rs/serde_with/3.1.0/serde_with/guide/index.html |
| 284 | +//! [`DisplayFromStr`]: https://docs.rs/serde_with/3.2.0/serde_with/struct.DisplayFromStr.html |
| 285 | +//! [`with_prefix!`]: https://docs.rs/serde_with/3.2.0/serde_with/macro.with_prefix.html |
| 286 | +//! [feature flags]: https://docs.rs/serde_with/3.2.0/serde_with/guide/feature_flags/index.html |
| 287 | +//! [skip_serializing_none]: https://docs.rs/serde_with/3.2.0/serde_with/attr.skip_serializing_none.html |
| 288 | +//! [StringWithSeparator]: https://docs.rs/serde_with/3.2.0/serde_with/struct.StringWithSeparator.html |
| 289 | +//! [user guide]: https://docs.rs/serde_with/3.2.0/serde_with/guide/index.html |
290 | 290 | //! [with-annotation]: https://serde.rs/field-attrs.html#with
|
291 |
| -//! [as-annotation]: https://docs.rs/serde_with/3.1.0/serde_with/guide/serde_as/index.html |
| 291 | +//! [as-annotation]: https://docs.rs/serde_with/3.2.0/serde_with/guide/serde_as/index.html |
292 | 292 |
|
293 | 293 | #[cfg(feature = "alloc")]
|
294 | 294 | extern crate alloc;
|
@@ -495,7 +495,7 @@ pub use serde_with_macros::*;
|
495 | 495 | /// # }
|
496 | 496 | /// ```
|
497 | 497 | ///
|
498 |
| -/// [serde_as]: https://docs.rs/serde_with/3.1.0/serde_with/attr.serde_as.html |
| 498 | +/// [serde_as]: https://docs.rs/serde_with/3.2.0/serde_with/attr.serde_as.html |
499 | 499 | pub struct As<T: ?Sized>(PhantomData<T>);
|
500 | 500 |
|
501 | 501 | /// Adapter to convert from `serde_as` to the serde traits.
|
@@ -927,7 +927,7 @@ pub struct BytesOrString;
|
927 | 927 | /// ```
|
928 | 928 | ///
|
929 | 929 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
930 |
| -/// [feature flag]: https://docs.rs/serde_with/3.1.0/serde_with/guide/feature_flags/index.html |
| 930 | +/// [feature flag]: https://docs.rs/serde_with/3.2.0/serde_with/guide/feature_flags/index.html |
931 | 931 | pub struct DurationSeconds<
|
932 | 932 | FORMAT: formats::Format = u64,
|
933 | 933 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1059,7 +1059,7 @@ pub struct DurationSeconds<
|
1059 | 1059 | /// ```
|
1060 | 1060 | ///
|
1061 | 1061 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
1062 |
| -/// [feature flag]: https://docs.rs/serde_with/3.1.0/serde_with/guide/feature_flags/index.html |
| 1062 | +/// [feature flag]: https://docs.rs/serde_with/3.2.0/serde_with/guide/feature_flags/index.html |
1063 | 1063 | pub struct DurationSecondsWithFrac<
|
1064 | 1064 | FORMAT: formats::Format = f64,
|
1065 | 1065 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1261,7 +1261,7 @@ pub struct DurationNanoSecondsWithFrac<
|
1261 | 1261 | /// [`SystemTime`]: std::time::SystemTime
|
1262 | 1262 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1263 | 1263 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1264 |
| -/// [feature flag]: https://docs.rs/serde_with/3.1.0/serde_with/guide/feature_flags/index.html |
| 1264 | +/// [feature flag]: https://docs.rs/serde_with/3.2.0/serde_with/guide/feature_flags/index.html |
1265 | 1265 | pub struct TimestampSeconds<
|
1266 | 1266 | FORMAT: formats::Format = i64,
|
1267 | 1267 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1403,7 +1403,7 @@ pub struct TimestampSeconds<
|
1403 | 1403 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1404 | 1404 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1405 | 1405 | /// [NaiveDateTime]: ::chrono_0_4::NaiveDateTime
|
1406 |
| -/// [feature flag]: https://docs.rs/serde_with/3.1.0/serde_with/guide/feature_flags/index.html |
| 1406 | +/// [feature flag]: https://docs.rs/serde_with/3.2.0/serde_with/guide/feature_flags/index.html |
1407 | 1407 | pub struct TimestampSecondsWithFrac<
|
1408 | 1408 | FORMAT: formats::Format = f64,
|
1409 | 1409 | STRICTNESS: formats::Strictness = formats::Strict,
|
|
0 commit comments