|
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.13.0/")] |
| 24 | +#![doc(html_root_url = "https://docs.rs/serde_with/3.14.0/")] |
25 | 25 | #![cfg_attr(docsrs, feature(doc_cfg))]
|
26 | 26 | #![no_std]
|
27 | 27 |
|
|
253 | 253 | //! # }
|
254 | 254 | //! ```
|
255 | 255 | //!
|
256 |
| -//! [`DisplayFromStr`]: https://docs.rs/serde_with/3.13.0/serde_with/struct.DisplayFromStr.html |
257 |
| -//! [`with_prefix!`]: https://docs.rs/serde_with/3.13.0/serde_with/macro.with_prefix.html |
258 |
| -//! [`with_suffix!`]: https://docs.rs/serde_with/3.13.0/serde_with/macro.with_suffix.html |
259 |
| -//! [feature flags]: https://docs.rs/serde_with/3.13.0/serde_with/guide/feature_flags/index.html |
260 |
| -//! [skip_serializing_none]: https://docs.rs/serde_with/3.13.0/serde_with/attr.skip_serializing_none.html |
261 |
| -//! [StringWithSeparator]: https://docs.rs/serde_with/3.13.0/serde_with/struct.StringWithSeparator.html |
262 |
| -//! [user guide]: https://docs.rs/serde_with/3.13.0/serde_with/guide/index.html |
| 256 | +//! [`DisplayFromStr`]: https://docs.rs/serde_with/3.14.0/serde_with/struct.DisplayFromStr.html |
| 257 | +//! [`with_prefix!`]: https://docs.rs/serde_with/3.14.0/serde_with/macro.with_prefix.html |
| 258 | +//! [`with_suffix!`]: https://docs.rs/serde_with/3.14.0/serde_with/macro.with_suffix.html |
| 259 | +//! [feature flags]: https://docs.rs/serde_with/3.14.0/serde_with/guide/feature_flags/index.html |
| 260 | +//! [skip_serializing_none]: https://docs.rs/serde_with/3.14.0/serde_with/attr.skip_serializing_none.html |
| 261 | +//! [StringWithSeparator]: https://docs.rs/serde_with/3.14.0/serde_with/struct.StringWithSeparator.html |
| 262 | +//! [user guide]: https://docs.rs/serde_with/3.14.0/serde_with/guide/index.html |
263 | 263 | //! [with-annotation]: https://serde.rs/field-attrs.html#with
|
264 |
| -//! [as-annotation]: https://docs.rs/serde_with/3.13.0/serde_with/guide/serde_as/index.html |
| 264 | +//! [as-annotation]: https://docs.rs/serde_with/3.14.0/serde_with/guide/serde_as/index.html |
265 | 265 |
|
266 | 266 | #[cfg(feature = "alloc")]
|
267 | 267 | extern crate alloc;
|
@@ -494,7 +494,7 @@ pub use serde_with_macros::*;
|
494 | 494 | /// # }
|
495 | 495 | /// ```
|
496 | 496 | ///
|
497 |
| -/// [serde_as]: https://docs.rs/serde_with/3.13.0/serde_with/attr.serde_as.html |
| 497 | +/// [serde_as]: https://docs.rs/serde_with/3.14.0/serde_with/attr.serde_as.html |
498 | 498 | pub struct As<T: ?Sized>(PhantomData<T>);
|
499 | 499 |
|
500 | 500 | /// Adapter to convert from `serde_as` to the serde traits.
|
@@ -969,7 +969,7 @@ pub struct BytesOrString;
|
969 | 969 | /// ```
|
970 | 970 | ///
|
971 | 971 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
972 |
| -/// [feature flag]: https://docs.rs/serde_with/3.13.0/serde_with/guide/feature_flags/index.html |
| 972 | +/// [feature flag]: https://docs.rs/serde_with/3.14.0/serde_with/guide/feature_flags/index.html |
973 | 973 | pub struct DurationSeconds<
|
974 | 974 | FORMAT: formats::Format = u64,
|
975 | 975 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1101,7 +1101,7 @@ pub struct DurationSeconds<
|
1101 | 1101 | /// ```
|
1102 | 1102 | ///
|
1103 | 1103 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
1104 |
| -/// [feature flag]: https://docs.rs/serde_with/3.13.0/serde_with/guide/feature_flags/index.html |
| 1104 | +/// [feature flag]: https://docs.rs/serde_with/3.14.0/serde_with/guide/feature_flags/index.html |
1105 | 1105 | pub struct DurationSecondsWithFrac<
|
1106 | 1106 | FORMAT: formats::Format = f64,
|
1107 | 1107 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1303,7 +1303,7 @@ pub struct DurationNanoSecondsWithFrac<
|
1303 | 1303 | /// [`SystemTime`]: std::time::SystemTime
|
1304 | 1304 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1305 | 1305 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1306 |
| -/// [feature flag]: https://docs.rs/serde_with/3.13.0/serde_with/guide/feature_flags/index.html |
| 1306 | +/// [feature flag]: https://docs.rs/serde_with/3.14.0/serde_with/guide/feature_flags/index.html |
1307 | 1307 | pub struct TimestampSeconds<
|
1308 | 1308 | FORMAT: formats::Format = i64,
|
1309 | 1309 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1445,7 +1445,7 @@ pub struct TimestampSeconds<
|
1445 | 1445 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1446 | 1446 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1447 | 1447 | /// [NaiveDateTime]: ::chrono_0_4::NaiveDateTime
|
1448 |
| -/// [feature flag]: https://docs.rs/serde_with/3.13.0/serde_with/guide/feature_flags/index.html |
| 1448 | +/// [feature flag]: https://docs.rs/serde_with/3.14.0/serde_with/guide/feature_flags/index.html |
1449 | 1449 | pub struct TimestampSecondsWithFrac<
|
1450 | 1450 | FORMAT: formats::Format = f64,
|
1451 | 1451 | STRICTNESS: formats::Strictness = formats::Strict,
|
|
0 commit comments