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