|
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.12.0/")] |
| 24 | +#![doc(html_root_url = "https://docs.rs/serde_with/3.13.0/")] |
25 | 25 | #![cfg_attr(docsrs, feature(doc_cfg))]
|
26 | 26 | #![no_std]
|
27 | 27 |
|
|
257 | 257 | //! # }
|
258 | 258 | //! ```
|
259 | 259 | //!
|
260 |
| -//! [`DisplayFromStr`]: https://docs.rs/serde_with/3.12.0/serde_with/struct.DisplayFromStr.html |
261 |
| -//! [`with_prefix!`]: https://docs.rs/serde_with/3.12.0/serde_with/macro.with_prefix.html |
262 |
| -//! [`with_suffix!`]: https://docs.rs/serde_with/3.12.0/serde_with/macro.with_suffix.html |
263 |
| -//! [feature flags]: https://docs.rs/serde_with/3.12.0/serde_with/guide/feature_flags/index.html |
264 |
| -//! [skip_serializing_none]: https://docs.rs/serde_with/3.12.0/serde_with/attr.skip_serializing_none.html |
265 |
| -//! [StringWithSeparator]: https://docs.rs/serde_with/3.12.0/serde_with/struct.StringWithSeparator.html |
266 |
| -//! [user guide]: https://docs.rs/serde_with/3.12.0/serde_with/guide/index.html |
| 260 | +//! [`DisplayFromStr`]: https://docs.rs/serde_with/3.13.0/serde_with/struct.DisplayFromStr.html |
| 261 | +//! [`with_prefix!`]: https://docs.rs/serde_with/3.13.0/serde_with/macro.with_prefix.html |
| 262 | +//! [`with_suffix!`]: https://docs.rs/serde_with/3.13.0/serde_with/macro.with_suffix.html |
| 263 | +//! [feature flags]: https://docs.rs/serde_with/3.13.0/serde_with/guide/feature_flags/index.html |
| 264 | +//! [skip_serializing_none]: https://docs.rs/serde_with/3.13.0/serde_with/attr.skip_serializing_none.html |
| 265 | +//! [StringWithSeparator]: https://docs.rs/serde_with/3.13.0/serde_with/struct.StringWithSeparator.html |
| 266 | +//! [user guide]: https://docs.rs/serde_with/3.13.0/serde_with/guide/index.html |
267 | 267 | //! [with-annotation]: https://serde.rs/field-attrs.html#with
|
268 |
| -//! [as-annotation]: https://docs.rs/serde_with/3.12.0/serde_with/guide/serde_as/index.html |
| 268 | +//! [as-annotation]: https://docs.rs/serde_with/3.13.0/serde_with/guide/serde_as/index.html |
269 | 269 |
|
270 | 270 | #[cfg(feature = "alloc")]
|
271 | 271 | 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.12.0/serde_with/attr.serde_as.html |
| 498 | +/// [serde_as]: https://docs.rs/serde_with/3.13.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.
|
@@ -970,7 +970,7 @@ pub struct BytesOrString;
|
970 | 970 | /// ```
|
971 | 971 | ///
|
972 | 972 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
973 |
| -/// [feature flag]: https://docs.rs/serde_with/3.12.0/serde_with/guide/feature_flags/index.html |
| 973 | +/// [feature flag]: https://docs.rs/serde_with/3.13.0/serde_with/guide/feature_flags/index.html |
974 | 974 | pub struct DurationSeconds<
|
975 | 975 | FORMAT: formats::Format = u64,
|
976 | 976 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1102,7 +1102,7 @@ pub struct DurationSeconds<
|
1102 | 1102 | /// ```
|
1103 | 1103 | ///
|
1104 | 1104 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
1105 |
| -/// [feature flag]: https://docs.rs/serde_with/3.12.0/serde_with/guide/feature_flags/index.html |
| 1105 | +/// [feature flag]: https://docs.rs/serde_with/3.13.0/serde_with/guide/feature_flags/index.html |
1106 | 1106 | pub struct DurationSecondsWithFrac<
|
1107 | 1107 | FORMAT: formats::Format = f64,
|
1108 | 1108 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1304,7 +1304,7 @@ pub struct DurationNanoSecondsWithFrac<
|
1304 | 1304 | /// [`SystemTime`]: std::time::SystemTime
|
1305 | 1305 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1306 | 1306 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1307 |
| -/// [feature flag]: https://docs.rs/serde_with/3.12.0/serde_with/guide/feature_flags/index.html |
| 1307 | +/// [feature flag]: https://docs.rs/serde_with/3.13.0/serde_with/guide/feature_flags/index.html |
1308 | 1308 | pub struct TimestampSeconds<
|
1309 | 1309 | FORMAT: formats::Format = i64,
|
1310 | 1310 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1446,7 +1446,7 @@ pub struct TimestampSeconds<
|
1446 | 1446 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1447 | 1447 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1448 | 1448 | /// [NaiveDateTime]: ::chrono_0_4::NaiveDateTime
|
1449 |
| -/// [feature flag]: https://docs.rs/serde_with/3.12.0/serde_with/guide/feature_flags/index.html |
| 1449 | +/// [feature flag]: https://docs.rs/serde_with/3.13.0/serde_with/guide/feature_flags/index.html |
1450 | 1450 | pub struct TimestampSecondsWithFrac<
|
1451 | 1451 | FORMAT: formats::Format = f64,
|
1452 | 1452 | STRICTNESS: formats::Strictness = formats::Strict,
|
|
0 commit comments