|
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.10.0/")] |
| 24 | +#![doc(html_root_url = "https://docs.rs/serde_with/3.11.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.10.0/serde_with/struct.DisplayFromStr.html |
261 |
| -//! [`with_prefix!`]: https://docs.rs/serde_with/3.10.0/serde_with/macro.with_prefix.html |
262 |
| -//! [feature flags]: https://docs.rs/serde_with/3.10.0/serde_with/guide/feature_flags/index.html |
263 |
| -//! [skip_serializing_none]: https://docs.rs/serde_with/3.10.0/serde_with/attr.skip_serializing_none.html |
264 |
| -//! [StringWithSeparator]: https://docs.rs/serde_with/3.10.0/serde_with/struct.StringWithSeparator.html |
265 |
| -//! [user guide]: https://docs.rs/serde_with/3.10.0/serde_with/guide/index.html |
| 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 | +//! [feature flags]: https://docs.rs/serde_with/3.11.0/serde_with/guide/feature_flags/index.html |
| 263 | +//! [skip_serializing_none]: https://docs.rs/serde_with/3.11.0/serde_with/attr.skip_serializing_none.html |
| 264 | +//! [StringWithSeparator]: https://docs.rs/serde_with/3.11.0/serde_with/struct.StringWithSeparator.html |
| 265 | +//! [user guide]: https://docs.rs/serde_with/3.11.0/serde_with/guide/index.html |
266 | 266 | //! [with-annotation]: https://serde.rs/field-attrs.html#with
|
267 |
| -//! [as-annotation]: https://docs.rs/serde_with/3.10.0/serde_with/guide/serde_as/index.html |
| 267 | +//! [as-annotation]: https://docs.rs/serde_with/3.11.0/serde_with/guide/serde_as/index.html |
268 | 268 |
|
269 | 269 | #[cfg(feature = "alloc")]
|
270 | 270 | extern crate alloc;
|
@@ -480,7 +480,7 @@ pub use serde_with_macros::*;
|
480 | 480 | /// # }
|
481 | 481 | /// ```
|
482 | 482 | ///
|
483 |
| -/// [serde_as]: https://docs.rs/serde_with/3.10.0/serde_with/attr.serde_as.html |
| 483 | +/// [serde_as]: https://docs.rs/serde_with/3.11.0/serde_with/attr.serde_as.html |
484 | 484 | pub struct As<T: ?Sized>(PhantomData<T>);
|
485 | 485 |
|
486 | 486 | /// Adapter to convert from `serde_as` to the serde traits.
|
@@ -955,7 +955,7 @@ pub struct BytesOrString;
|
955 | 955 | /// ```
|
956 | 956 | ///
|
957 | 957 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
958 |
| -/// [feature flag]: https://docs.rs/serde_with/3.10.0/serde_with/guide/feature_flags/index.html |
| 958 | +/// [feature flag]: https://docs.rs/serde_with/3.11.0/serde_with/guide/feature_flags/index.html |
959 | 959 | pub struct DurationSeconds<
|
960 | 960 | FORMAT: formats::Format = u64,
|
961 | 961 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1087,7 +1087,7 @@ pub struct DurationSeconds<
|
1087 | 1087 | /// ```
|
1088 | 1088 | ///
|
1089 | 1089 | /// [`chrono::Duration`]: ::chrono_0_4::Duration
|
1090 |
| -/// [feature flag]: https://docs.rs/serde_with/3.10.0/serde_with/guide/feature_flags/index.html |
| 1090 | +/// [feature flag]: https://docs.rs/serde_with/3.11.0/serde_with/guide/feature_flags/index.html |
1091 | 1091 | pub struct DurationSecondsWithFrac<
|
1092 | 1092 | FORMAT: formats::Format = f64,
|
1093 | 1093 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1289,7 +1289,7 @@ pub struct DurationNanoSecondsWithFrac<
|
1289 | 1289 | /// [`SystemTime`]: std::time::SystemTime
|
1290 | 1290 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1291 | 1291 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1292 |
| -/// [feature flag]: https://docs.rs/serde_with/3.10.0/serde_with/guide/feature_flags/index.html |
| 1292 | +/// [feature flag]: https://docs.rs/serde_with/3.11.0/serde_with/guide/feature_flags/index.html |
1293 | 1293 | pub struct TimestampSeconds<
|
1294 | 1294 | FORMAT: formats::Format = i64,
|
1295 | 1295 | STRICTNESS: formats::Strictness = formats::Strict,
|
@@ -1431,7 +1431,7 @@ pub struct TimestampSeconds<
|
1431 | 1431 | /// [`chrono::DateTime<Local>`]: ::chrono_0_4::DateTime
|
1432 | 1432 | /// [`chrono::DateTime<Utc>`]: ::chrono_0_4::DateTime
|
1433 | 1433 | /// [NaiveDateTime]: ::chrono_0_4::NaiveDateTime
|
1434 |
| -/// [feature flag]: https://docs.rs/serde_with/3.10.0/serde_with/guide/feature_flags/index.html |
| 1434 | +/// [feature flag]: https://docs.rs/serde_with/3.11.0/serde_with/guide/feature_flags/index.html |
1435 | 1435 | pub struct TimestampSecondsWithFrac<
|
1436 | 1436 | FORMAT: formats::Format = f64,
|
1437 | 1437 | STRICTNESS: formats::Strictness = formats::Strict,
|
|
0 commit comments