|
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.11.0/")] |
| 24 | +#![doc(html_root_url = "https://docs.rs/serde_with/3.12.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.11.0/serde_with/struct.DisplayFromStr.html |
261 |
| -//! [`with_prefix!`]: https://docs.rs/serde_with/3.11.0/serde_with/macro.with_prefix.html |
262 |
| -//! [`with_suffix!`]: https://docs.rs/serde_with/3.11.0/serde_with/macro.with_suffix.html |
263 |
| -//! [feature flags]: https://docs.rs/serde_with/3.11.0/serde_with/guide/feature_flags/index.html |
264 |
| -//! [skip_serializing_none]: https://docs.rs/serde_with/3.11.0/serde_with/attr.skip_serializing_none.html |
265 |
| -//! [StringWithSeparator]: https://docs.rs/serde_with/3.11.0/serde_with/struct.StringWithSeparator.html |
266 |
| -//! [user guide]: https://docs.rs/serde_with/3.11.0/serde_with/guide/index.html |
| 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 |
267 | 267 | //! [with-annotation]: https://serde.rs/field-attrs.html#with
|
268 |
| -//! [as-annotation]: https://docs.rs/serde_with/3.11.0/serde_with/guide/serde_as/index.html |
| 268 | +//! [as-annotation]: https://docs.rs/serde_with/3.12.0/serde_with/guide/serde_as/index.html |
269 | 269 |
|
270 | 270 | #[cfg(feature = "alloc")]
|
271 | 271 | extern crate alloc;
|
@@ -484,7 +484,7 @@ pub use serde_with_macros::*;
|
484 | 484 | /// # }
|
485 | 485 | /// ```
|
486 | 486 | ///
|
487 |
| -/// [serde_as]: https://docs.rs/serde_with/3.11.0/serde_with/attr.serde_as.html |
| 487 | +/// [serde_as]: https://docs.rs/serde_with/3.12.0/serde_with/attr.serde_as.html |
488 | 488 | pub struct As<T: ?Sized>(PhantomData<T>);
|
489 | 489 |
|
490 | 490 | /// Adapter to convert from `serde_as` to the serde traits.
|
@@ -959,7 +959,7 @@ pub struct BytesOrString;
|
959 | 959 | /// ```
|
960 | 960 | ///
|
961 | 961 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
962 |
| -/// [feature flag]: https://docs.rs/serde_with/3.11.0/serde_with/guide/feature_flags/index.html |
| 962 | +/// [feature flag]: https://docs.rs/serde_with/3.12.0/serde_with/guide/feature_flags/index.html |
963 | 963 | pub struct DurationSeconds<
|
964 | 964 | FORMAT: formats::Format = u64,
|
965 | 965 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1091,7 +1091,7 @@ pub struct DurationSeconds<
|
1091 | 1091 | /// ```
|
1092 | 1092 | ///
|
1093 | 1093 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
1094 |
| -/// [feature flag]: https://docs.rs/serde_with/3.11.0/serde_with/guide/feature_flags/index.html |
| 1094 | +/// [feature flag]: https://docs.rs/serde_with/3.12.0/serde_with/guide/feature_flags/index.html |
1095 | 1095 | pub struct DurationSecondsWithFrac<
|
1096 | 1096 | FORMAT: formats::Format = f64,
|
1097 | 1097 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1293,7 +1293,7 @@ pub struct DurationNanoSecondsWithFrac<
|
1293 | 1293 | /// [`SystemTime`]: std::time::SystemTime
|
1294 | 1294 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1295 | 1295 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1296 |
| -/// [feature flag]: https://docs.rs/serde_with/3.11.0/serde_with/guide/feature_flags/index.html |
| 1296 | +/// [feature flag]: https://docs.rs/serde_with/3.12.0/serde_with/guide/feature_flags/index.html |
1297 | 1297 | pub struct TimestampSeconds<
|
1298 | 1298 | FORMAT: formats::Format = i64,
|
1299 | 1299 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1435,7 +1435,7 @@ pub struct TimestampSeconds<
|
1435 | 1435 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1436 | 1436 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1437 | 1437 | /// [NaiveDateTime]: ::chrono_0_4::NaiveDateTime
|
1438 |
| -/// [feature flag]: https://docs.rs/serde_with/3.11.0/serde_with/guide/feature_flags/index.html |
| 1438 | +/// [feature flag]: https://docs.rs/serde_with/3.12.0/serde_with/guide/feature_flags/index.html |
1439 | 1439 | pub struct TimestampSecondsWithFrac<
|
1440 | 1440 | FORMAT: formats::Format = f64,
|
1441 | 1441 | STRICTNESS: formats::Strictness = formats::Strict,
|
|
0 commit comments