|
23 | 23 | #![doc(test(attr(warn(rust_2018_idioms))))] |
24 | 24 | // Not needed for 2018 edition and conflicts with `rust_2018_idioms` |
25 | 25 | #![doc(test(no_crate_inject))] |
26 | | -#![doc(html_root_url = "https://docs.rs/serde_with/1.6.0")] |
| 26 | +#![doc(html_root_url = "https://docs.rs/serde_with/1.6.1")] |
27 | 27 | // Necessary to silence the warning about clippy::unknown_clippy_lints on nightly |
28 | 28 | #![allow(renamed_and_removed_lints)] |
29 | 29 | // Rust 1.45: introduction of `strip_prefix` used by clippy::manual_strip |
|
59 | 59 | //! |
60 | 60 | //! ```toml |
61 | 61 | //! [dependencies.serde_with] |
62 | | -//! version = "1.6.0" |
| 62 | +//! version = "1.6.1" |
63 | 63 | //! features = [ "..." ] |
64 | 64 | //! ``` |
65 | 65 | //! |
|
198 | 198 | //! # } |
199 | 199 | //! ``` |
200 | 200 | //! |
201 | | -//! [`DisplayFromStr`]: https://docs.rs/serde_with/1.6.0/serde_with/struct.DisplayFromStr.html |
202 | | -//! [`with_prefix!`]: https://docs.rs/serde_with/1.6.0/serde_with/macro.with_prefix.html |
203 | | -//! [display_fromstr]: https://docs.rs/serde_with/1.6.0/serde_with/rust/display_fromstr/index.html |
204 | | -//! [feature flags]: https://docs.rs/serde_with/1.6.0/serde_with/guide/feature_flags/index.html |
205 | | -//! [skip_serializing_none]: https://docs.rs/serde_with/1.6.0/serde_with/attr.skip_serializing_none.html |
206 | | -//! [StringWithSeparator]: https://docs.rs/serde_with/1.6.0/serde_with/rust/struct.StringWithSeparator.html |
207 | | -//! [user guide]: https://docs.rs/serde_with/1.6.0/serde_with/guide/index.html |
| 201 | +//! [`DisplayFromStr`]: https://docs.rs/serde_with/1.6.1/serde_with/struct.DisplayFromStr.html |
| 202 | +//! [`with_prefix!`]: https://docs.rs/serde_with/1.6.1/serde_with/macro.with_prefix.html |
| 203 | +//! [display_fromstr]: https://docs.rs/serde_with/1.6.1/serde_with/rust/display_fromstr/index.html |
| 204 | +//! [feature flags]: https://docs.rs/serde_with/1.6.1/serde_with/guide/feature_flags/index.html |
| 205 | +//! [skip_serializing_none]: https://docs.rs/serde_with/1.6.1/serde_with/attr.skip_serializing_none.html |
| 206 | +//! [StringWithSeparator]: https://docs.rs/serde_with/1.6.1/serde_with/rust/struct.StringWithSeparator.html |
| 207 | +//! [user guide]: https://docs.rs/serde_with/1.6.1/serde_with/guide/index.html |
208 | 208 | //! [with-annotation]: https://serde.rs/field-attrs.html#with |
209 | 209 |
|
210 | 210 | #[doc(hidden)] |
@@ -340,7 +340,7 @@ impl Separator for CommaSeparator { |
340 | 340 | /// # } |
341 | 341 | /// ``` |
342 | 342 | /// |
343 | | -/// [serde_as]: https://docs.rs/serde_with/1.6.0/serde_with/attr.serde_as.html |
| 343 | +/// [serde_as]: https://docs.rs/serde_with/1.6.1/serde_with/attr.serde_as.html |
344 | 344 | #[derive(Copy, Clone, Debug, Default)] |
345 | 345 | pub struct As<T: ?Sized>(PhantomData<T>); |
346 | 346 |
|
@@ -807,7 +807,7 @@ pub struct BytesOrString; |
807 | 807 | /// ``` |
808 | 808 | /// |
809 | 809 | /// [`chrono::Duration`]: chrono_crate::Duration |
810 | | -/// [feature flag]: https://docs.rs/serde_with/1.6.0/serde_with/guide/feature_flags/index.html |
| 810 | +/// [feature flag]: https://docs.rs/serde_with/1.6.1/serde_with/guide/feature_flags/index.html |
811 | 811 | #[derive(Copy, Clone, Debug, Default)] |
812 | 812 | pub struct DurationSeconds< |
813 | 813 | FORMAT: formats::Format = u64, |
@@ -933,7 +933,7 @@ pub struct DurationSeconds< |
933 | 933 | /// ``` |
934 | 934 | /// |
935 | 935 | /// [`chrono::Duration`]: chrono_crate::Duration |
936 | | -/// [feature flag]: https://docs.rs/serde_with/1.6.0/serde_with/guide/feature_flags/index.html |
| 936 | +/// [feature flag]: https://docs.rs/serde_with/1.6.1/serde_with/guide/feature_flags/index.html |
937 | 937 | #[derive(Copy, Clone, Debug, Default)] |
938 | 938 | pub struct DurationSecondsWithFrac< |
939 | 939 | FORMAT: formats::Format = f64, |
@@ -1130,7 +1130,7 @@ pub struct DurationNanoSecondsWithFrac< |
1130 | 1130 | /// |
1131 | 1131 | /// [`SystemTime`]: std::time::SystemTime |
1132 | 1132 | /// [DateTime]: chrono_crate::DateTime |
1133 | | -/// [feature flag]: https://docs.rs/serde_with/1.6.0/serde_with/guide/feature_flags/index.html |
| 1133 | +/// [feature flag]: https://docs.rs/serde_with/1.6.1/serde_with/guide/feature_flags/index.html |
1134 | 1134 | #[derive(Copy, Clone, Debug, Default)] |
1135 | 1135 | pub struct TimestampSeconds< |
1136 | 1136 | FORMAT: formats::Format = i64, |
@@ -1259,7 +1259,7 @@ pub struct TimestampSeconds< |
1259 | 1259 | /// |
1260 | 1260 | /// [`SystemTime`]: std::time::SystemTime |
1261 | 1261 | /// [DateTime]: chrono_crate::DateTime |
1262 | | -/// [feature flag]: https://docs.rs/serde_with/1.6.0/serde_with/guide/feature_flags/index.html |
| 1262 | +/// [feature flag]: https://docs.rs/serde_with/1.6.1/serde_with/guide/feature_flags/index.html |
1263 | 1263 | #[derive(Copy, Clone, Debug, Default)] |
1264 | 1264 | pub struct TimestampSecondsWithFrac< |
1265 | 1265 | FORMAT: formats::Format = f64, |
|
0 commit comments