|
21 | 21 | )))]
|
22 | 22 | // Not needed for 2018 edition and conflicts with `rust_2018_idioms`
|
23 | 23 | #![doc(test(no_crate_inject))]
|
24 |
| -#![doc(html_root_url = "https://docs.rs/serde_with/3.8.1/")] |
| 24 | +#![doc(html_root_url = "https://docs.rs/serde_with/3.8.2/")] |
25 | 25 | #![cfg_attr(docsrs, feature(doc_cfg))]
|
26 | 26 | #![no_std]
|
27 | 27 |
|
|
266 | 266 | //! # }
|
267 | 267 | //! ```
|
268 | 268 | //!
|
269 |
| -//! [`DisplayFromStr`]: https://docs.rs/serde_with/3.8.1/serde_with/struct.DisplayFromStr.html |
270 |
| -//! [`with_prefix!`]: https://docs.rs/serde_with/3.8.1/serde_with/macro.with_prefix.html |
271 |
| -//! [feature flags]: https://docs.rs/serde_with/3.8.1/serde_with/guide/feature_flags/index.html |
272 |
| -//! [skip_serializing_none]: https://docs.rs/serde_with/3.8.1/serde_with/attr.skip_serializing_none.html |
273 |
| -//! [StringWithSeparator]: https://docs.rs/serde_with/3.8.1/serde_with/struct.StringWithSeparator.html |
274 |
| -//! [user guide]: https://docs.rs/serde_with/3.8.1/serde_with/guide/index.html |
| 269 | +//! [`DisplayFromStr`]: https://docs.rs/serde_with/3.8.2/serde_with/struct.DisplayFromStr.html |
| 270 | +//! [`with_prefix!`]: https://docs.rs/serde_with/3.8.2/serde_with/macro.with_prefix.html |
| 271 | +//! [feature flags]: https://docs.rs/serde_with/3.8.2/serde_with/guide/feature_flags/index.html |
| 272 | +//! [skip_serializing_none]: https://docs.rs/serde_with/3.8.2/serde_with/attr.skip_serializing_none.html |
| 273 | +//! [StringWithSeparator]: https://docs.rs/serde_with/3.8.2/serde_with/struct.StringWithSeparator.html |
| 274 | +//! [user guide]: https://docs.rs/serde_with/3.8.2/serde_with/guide/index.html |
275 | 275 | //! [with-annotation]: https://serde.rs/field-attrs.html#with
|
276 |
| -//! [as-annotation]: https://docs.rs/serde_with/3.8.1/serde_with/guide/serde_as/index.html |
| 276 | +//! [as-annotation]: https://docs.rs/serde_with/3.8.2/serde_with/guide/serde_as/index.html |
277 | 277 |
|
278 | 278 | #[cfg(feature = "alloc")]
|
279 | 279 | extern crate alloc;
|
@@ -487,7 +487,7 @@ pub use serde_with_macros::*;
|
487 | 487 | /// # }
|
488 | 488 | /// ```
|
489 | 489 | ///
|
490 |
| -/// [serde_as]: https://docs.rs/serde_with/3.8.1/serde_with/attr.serde_as.html |
| 490 | +/// [serde_as]: https://docs.rs/serde_with/3.8.2/serde_with/attr.serde_as.html |
491 | 491 | pub struct As<T: ?Sized>(PhantomData<T>);
|
492 | 492 |
|
493 | 493 | /// Adapter to convert from `serde_as` to the serde traits.
|
@@ -962,7 +962,7 @@ pub struct BytesOrString;
|
962 | 962 | /// ```
|
963 | 963 | ///
|
964 | 964 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
965 |
| -/// [feature flag]: https://docs.rs/serde_with/3.8.1/serde_with/guide/feature_flags/index.html |
| 965 | +/// [feature flag]: https://docs.rs/serde_with/3.8.2/serde_with/guide/feature_flags/index.html |
966 | 966 | pub struct DurationSeconds<
|
967 | 967 | FORMAT: formats::Format = u64,
|
968 | 968 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1094,7 +1094,7 @@ pub struct DurationSeconds<
|
1094 | 1094 | /// ```
|
1095 | 1095 | ///
|
1096 | 1096 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
1097 |
| -/// [feature flag]: https://docs.rs/serde_with/3.8.1/serde_with/guide/feature_flags/index.html |
| 1097 | +/// [feature flag]: https://docs.rs/serde_with/3.8.2/serde_with/guide/feature_flags/index.html |
1098 | 1098 | pub struct DurationSecondsWithFrac<
|
1099 | 1099 | FORMAT: formats::Format = f64,
|
1100 | 1100 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1296,7 +1296,7 @@ pub struct DurationNanoSecondsWithFrac<
|
1296 | 1296 | /// [`SystemTime`]: std::time::SystemTime
|
1297 | 1297 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1298 | 1298 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1299 |
| -/// [feature flag]: https://docs.rs/serde_with/3.8.1/serde_with/guide/feature_flags/index.html |
| 1299 | +/// [feature flag]: https://docs.rs/serde_with/3.8.2/serde_with/guide/feature_flags/index.html |
1300 | 1300 | pub struct TimestampSeconds<
|
1301 | 1301 | FORMAT: formats::Format = i64,
|
1302 | 1302 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1438,7 +1438,7 @@ pub struct TimestampSeconds<
|
1438 | 1438 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1439 | 1439 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1440 | 1440 | /// [NaiveDateTime]: ::chrono_0_4::NaiveDateTime
|
1441 |
| -/// [feature flag]: https://docs.rs/serde_with/3.8.1/serde_with/guide/feature_flags/index.html |
| 1441 | +/// [feature flag]: https://docs.rs/serde_with/3.8.2/serde_with/guide/feature_flags/index.html |
1442 | 1442 | pub struct TimestampSecondsWithFrac<
|
1443 | 1443 | FORMAT: formats::Format = f64,
|
1444 | 1444 | STRICTNESS: formats::Strictness = formats::Strict,
|
|
0 commit comments