|
16 | 16 | )))]
|
17 | 17 | // Not needed for 2018 edition and conflicts with `rust_2018_idioms`
|
18 | 18 | #![doc(test(no_crate_inject))]
|
19 |
| -#![doc(html_root_url = "https://docs.rs/serde_with/3.8.0/")] |
| 19 | +#![doc(html_root_url = "https://docs.rs/serde_with/3.8.1/")] |
20 | 20 | #![cfg_attr(docsrs, feature(doc_cfg))]
|
21 | 21 | #![no_std]
|
22 | 22 |
|
|
261 | 261 | //! # }
|
262 | 262 | //! ```
|
263 | 263 | //!
|
264 |
| -//! [`DisplayFromStr`]: https://docs.rs/serde_with/3.8.0/serde_with/struct.DisplayFromStr.html |
265 |
| -//! [`with_prefix!`]: https://docs.rs/serde_with/3.8.0/serde_with/macro.with_prefix.html |
266 |
| -//! [feature flags]: https://docs.rs/serde_with/3.8.0/serde_with/guide/feature_flags/index.html |
267 |
| -//! [skip_serializing_none]: https://docs.rs/serde_with/3.8.0/serde_with/attr.skip_serializing_none.html |
268 |
| -//! [StringWithSeparator]: https://docs.rs/serde_with/3.8.0/serde_with/struct.StringWithSeparator.html |
269 |
| -//! [user guide]: https://docs.rs/serde_with/3.8.0/serde_with/guide/index.html |
| 264 | +//! [`DisplayFromStr`]: https://docs.rs/serde_with/3.8.1/serde_with/struct.DisplayFromStr.html |
| 265 | +//! [`with_prefix!`]: https://docs.rs/serde_with/3.8.1/serde_with/macro.with_prefix.html |
| 266 | +//! [feature flags]: https://docs.rs/serde_with/3.8.1/serde_with/guide/feature_flags/index.html |
| 267 | +//! [skip_serializing_none]: https://docs.rs/serde_with/3.8.1/serde_with/attr.skip_serializing_none.html |
| 268 | +//! [StringWithSeparator]: https://docs.rs/serde_with/3.8.1/serde_with/struct.StringWithSeparator.html |
| 269 | +//! [user guide]: https://docs.rs/serde_with/3.8.1/serde_with/guide/index.html |
270 | 270 | //! [with-annotation]: https://serde.rs/field-attrs.html#with
|
271 |
| -//! [as-annotation]: https://docs.rs/serde_with/3.8.0/serde_with/guide/serde_as/index.html |
| 271 | +//! [as-annotation]: https://docs.rs/serde_with/3.8.1/serde_with/guide/serde_as/index.html |
272 | 272 |
|
273 | 273 | #[cfg(feature = "alloc")]
|
274 | 274 | extern crate alloc;
|
@@ -482,7 +482,7 @@ pub use serde_with_macros::*;
|
482 | 482 | /// # }
|
483 | 483 | /// ```
|
484 | 484 | ///
|
485 |
| -/// [serde_as]: https://docs.rs/serde_with/3.8.0/serde_with/attr.serde_as.html |
| 485 | +/// [serde_as]: https://docs.rs/serde_with/3.8.1/serde_with/attr.serde_as.html |
486 | 486 | pub struct As<T: ?Sized>(PhantomData<T>);
|
487 | 487 |
|
488 | 488 | /// Adapter to convert from `serde_as` to the serde traits.
|
@@ -957,7 +957,7 @@ pub struct BytesOrString;
|
957 | 957 | /// ```
|
958 | 958 | ///
|
959 | 959 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
960 |
| -/// [feature flag]: https://docs.rs/serde_with/3.8.0/serde_with/guide/feature_flags/index.html |
| 960 | +/// [feature flag]: https://docs.rs/serde_with/3.8.1/serde_with/guide/feature_flags/index.html |
961 | 961 | pub struct DurationSeconds<
|
962 | 962 | FORMAT: formats::Format = u64,
|
963 | 963 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1089,7 +1089,7 @@ pub struct DurationSeconds<
|
1089 | 1089 | /// ```
|
1090 | 1090 | ///
|
1091 | 1091 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
1092 |
| -/// [feature flag]: https://docs.rs/serde_with/3.8.0/serde_with/guide/feature_flags/index.html |
| 1092 | +/// [feature flag]: https://docs.rs/serde_with/3.8.1/serde_with/guide/feature_flags/index.html |
1093 | 1093 | pub struct DurationSecondsWithFrac<
|
1094 | 1094 | FORMAT: formats::Format = f64,
|
1095 | 1095 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1291,7 +1291,7 @@ pub struct DurationNanoSecondsWithFrac<
|
1291 | 1291 | /// [`SystemTime`]: std::time::SystemTime
|
1292 | 1292 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1293 | 1293 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1294 |
| -/// [feature flag]: https://docs.rs/serde_with/3.8.0/serde_with/guide/feature_flags/index.html |
| 1294 | +/// [feature flag]: https://docs.rs/serde_with/3.8.1/serde_with/guide/feature_flags/index.html |
1295 | 1295 | pub struct TimestampSeconds<
|
1296 | 1296 | FORMAT: formats::Format = i64,
|
1297 | 1297 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1433,7 +1433,7 @@ pub struct TimestampSeconds<
|
1433 | 1433 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1434 | 1434 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1435 | 1435 | /// [NaiveDateTime]: ::chrono_0_4::NaiveDateTime
|
1436 |
| -/// [feature flag]: https://docs.rs/serde_with/3.8.0/serde_with/guide/feature_flags/index.html |
| 1436 | +/// [feature flag]: https://docs.rs/serde_with/3.8.1/serde_with/guide/feature_flags/index.html |
1437 | 1437 | pub struct TimestampSecondsWithFrac<
|
1438 | 1438 | FORMAT: formats::Format = f64,
|
1439 | 1439 | STRICTNESS: formats::Strictness = formats::Strict,
|
|
0 commit comments