|
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.6.0/")] |
| 29 | +#![doc(html_root_url = "https://docs.rs/serde_with/3.6.1/")] |
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.6.0/serde_with/struct.DisplayFromStr.html |
285 |
| -//! [`with_prefix!`]: https://docs.rs/serde_with/3.6.0/serde_with/macro.with_prefix.html |
286 |
| -//! [feature flags]: https://docs.rs/serde_with/3.6.0/serde_with/guide/feature_flags/index.html |
287 |
| -//! [skip_serializing_none]: https://docs.rs/serde_with/3.6.0/serde_with/attr.skip_serializing_none.html |
288 |
| -//! [StringWithSeparator]: https://docs.rs/serde_with/3.6.0/serde_with/struct.StringWithSeparator.html |
289 |
| -//! [user guide]: https://docs.rs/serde_with/3.6.0/serde_with/guide/index.html |
| 284 | +//! [`DisplayFromStr`]: https://docs.rs/serde_with/3.6.1/serde_with/struct.DisplayFromStr.html |
| 285 | +//! [`with_prefix!`]: https://docs.rs/serde_with/3.6.1/serde_with/macro.with_prefix.html |
| 286 | +//! [feature flags]: https://docs.rs/serde_with/3.6.1/serde_with/guide/feature_flags/index.html |
| 287 | +//! [skip_serializing_none]: https://docs.rs/serde_with/3.6.1/serde_with/attr.skip_serializing_none.html |
| 288 | +//! [StringWithSeparator]: https://docs.rs/serde_with/3.6.1/serde_with/struct.StringWithSeparator.html |
| 289 | +//! [user guide]: https://docs.rs/serde_with/3.6.1/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.6.0/serde_with/guide/serde_as/index.html |
| 291 | +//! [as-annotation]: https://docs.rs/serde_with/3.6.1/serde_with/guide/serde_as/index.html |
292 | 292 |
|
293 | 293 | #[cfg(feature = "alloc")]
|
294 | 294 | extern crate alloc;
|
@@ -500,7 +500,7 @@ pub use serde_with_macros::*;
|
500 | 500 | /// # }
|
501 | 501 | /// ```
|
502 | 502 | ///
|
503 |
| -/// [serde_as]: https://docs.rs/serde_with/3.6.0/serde_with/attr.serde_as.html |
| 503 | +/// [serde_as]: https://docs.rs/serde_with/3.6.1/serde_with/attr.serde_as.html |
504 | 504 | pub struct As<T: ?Sized>(PhantomData<T>);
|
505 | 505 |
|
506 | 506 | /// Adapter to convert from `serde_as` to the serde traits.
|
@@ -975,7 +975,7 @@ pub struct BytesOrString;
|
975 | 975 | /// ```
|
976 | 976 | ///
|
977 | 977 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
978 |
| -/// [feature flag]: https://docs.rs/serde_with/3.6.0/serde_with/guide/feature_flags/index.html |
| 978 | +/// [feature flag]: https://docs.rs/serde_with/3.6.1/serde_with/guide/feature_flags/index.html |
979 | 979 | pub struct DurationSeconds<
|
980 | 980 | FORMAT: formats::Format = u64,
|
981 | 981 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1107,7 +1107,7 @@ pub struct DurationSeconds<
|
1107 | 1107 | /// ```
|
1108 | 1108 | ///
|
1109 | 1109 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
1110 |
| -/// [feature flag]: https://docs.rs/serde_with/3.6.0/serde_with/guide/feature_flags/index.html |
| 1110 | +/// [feature flag]: https://docs.rs/serde_with/3.6.1/serde_with/guide/feature_flags/index.html |
1111 | 1111 | pub struct DurationSecondsWithFrac<
|
1112 | 1112 | FORMAT: formats::Format = f64,
|
1113 | 1113 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1309,7 +1309,7 @@ pub struct DurationNanoSecondsWithFrac<
|
1309 | 1309 | /// [`SystemTime`]: std::time::SystemTime
|
1310 | 1310 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1311 | 1311 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1312 |
| -/// [feature flag]: https://docs.rs/serde_with/3.6.0/serde_with/guide/feature_flags/index.html |
| 1312 | +/// [feature flag]: https://docs.rs/serde_with/3.6.1/serde_with/guide/feature_flags/index.html |
1313 | 1313 | pub struct TimestampSeconds<
|
1314 | 1314 | FORMAT: formats::Format = i64,
|
1315 | 1315 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1451,7 +1451,7 @@ pub struct TimestampSeconds<
|
1451 | 1451 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1452 | 1452 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1453 | 1453 | /// [NaiveDateTime]: ::chrono_0_4::NaiveDateTime
|
1454 |
| -/// [feature flag]: https://docs.rs/serde_with/3.6.0/serde_with/guide/feature_flags/index.html |
| 1454 | +/// [feature flag]: https://docs.rs/serde_with/3.6.1/serde_with/guide/feature_flags/index.html |
1455 | 1455 | pub struct TimestampSecondsWithFrac<
|
1456 | 1456 | FORMAT: formats::Format = f64,
|
1457 | 1457 | STRICTNESS: formats::Strictness = formats::Strict,
|
|
0 commit comments