units: Remove serde re-export

We re-export to help users keep their dependencies in sync but `serde`
is at `v1.0` so this is not really a problem.

Remove the public re-export of `serde` (and with current MSRV we don't
need the `extern crate` at all).
This commit is contained in:
Tobin C. Harding 2024-07-22 12:10:28 -05:00
parent c82c052407
commit e3d9376a9b
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 0 additions and 4 deletions

View File

@ -27,10 +27,6 @@ extern crate alloc;
#[cfg(feature = "std")]
extern crate std;
/// A generic serialization/deserialization framework.
#[cfg(feature = "serde")]
pub extern crate serde;
pub mod amount;
#[cfg(feature = "alloc")]
pub mod block;