chrono/src/naive
Brandon W Maister 39ca2e622c Deprecated warnings in cargo output for rustc-serialize feature
Unfortunately due to rust-lang/rust#39935 placing the annotation on the `impl`s
of `Encodable`/`Decodable` for the various items have no effect whatsoever, so
we need to place it on some type that chrono actually uses internally. The only
*type* that I can find that only exists for rustc-serialize only is the
 `TsSeconds` struct.

So, marking TsSeconds deprecated causes Chrono's internal uses of `TsSeconds`
to emit deprecation warnings, both in our builds and for packages that specify
Chrono as a dependency with the `rustc-serialize` feature active. This means
that the current commit will cause a `warning: use of deprecated item:
RustcSerialize will be removed before chrono 1.0, use Serde instead` to appear
in `cargo build` output.

Unfortunately I don't think that it's possible for downstream crates to disable
the warning the warning in any way other than actually switching to Serde or
using an older chrono. That's the reason for all the `#[allow(deprecated)]`
through the code, it means that the warning appears almost exactly once,
instead of dozens of times.
2018-03-29 14:32:39 -04:00
..
date.rs Use no_std-compatible num dependencies 2018-02-23 00:07:16 -08:00
datetime.rs Deprecated warnings in cargo output for rustc-serialize feature 2018-03-29 14:32:39 -04:00
internals.rs Use no_std-compatible num dependencies 2018-02-23 00:07:16 -08:00
isoweek.rs Fix Clippy lints: cast_lossless 2017-10-08 18:12:20 -04:00
time.rs Fix Clippy lints: cast_lossless 2017-10-08 18:12:20 -04:00