time: drop TryFrom/TryInto imports

they're in the prelude by now

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2024-06-19 14:54:51 +02:00
parent a4be52d4a6
commit 1c5f27014c
2 changed files with 0 additions and 6 deletions

View File

@ -1,6 +1,3 @@
#[cfg(not(target_arch = "wasm32"))]
use std::convert::TryInto;
use anyhow::Error;
use nom::{
bytes::complete::tag,

View File

@ -1,8 +1,5 @@
use std::cmp::{Ordering, PartialOrd};
#[cfg(not(target_arch = "wasm32"))]
use std::convert::{TryFrom, TryInto};
use anyhow::Error;
use nom::{
bytes::complete::tag, character::complete::space0, error::context, multi::separated_list1,