We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
dyn
cargo check is complaining,
cargo check
warning: trait objects without an explicit `dyn` are deprecated --> src/division.rs:542:21 | 542 | writeable: &mut Write, | ^^^^^ help: use `dyn`: `dyn Write` | = note: `#[warn(bare_trait_objects)]` on by default warning: trait objects without an explicit `dyn` are deprecated --> src/division.rs:756:36 | 756 | pub fn write_digit(writeable: &mut Write, digit: u8) -> Result<bool, DivisionError> | ^^^^^ help: use `dyn`: `dyn Write` warning: trait objects without an explicit `dyn` are deprecated --> src/error.rs:56:23 | 56 | ExternalError(Box<Error + Send + Sync>) | ^^^^^^^^^^^^^^^^^^^ help: use `dyn`: `dyn Error + Send + Sync` warning: trait objects without an explicit `dyn` are deprecated --> src/fraction/display.rs:192:45 | 192 | pub fn format_sign(sign: Sign, buffer: &mut fmt::Write, format: &Format) -> fmt::Result { | ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write` warning: trait objects without an explicit `dyn` are deprecated --> src/fraction/display.rs:225:18 | 225 | buffer: &mut fmt::Write, | ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write` warning: trait objects without an explicit `dyn` are deprecated --> src/fraction/display.rs:351:20 | 351 | V: FnOnce(&mut fmt::Write, &Format) -> Result<usize, fmt::Error>, | ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write` warning: trait objects without an explicit `dyn` are deprecated --> src/fraction/display.rs:343:18 | 343 | buffer: &mut fmt::Write, | ^^^^^^^^^^ help: use `dyn`: `dyn fmt::Write` Finished dev [unoptimized + debuginfo] target(s) in 0.13s
I am not sure if it will break anything, but its quite a simple fix.
The text was updated successfully, but these errors were encountered:
fixed by #21
Sorry, something went wrong.
No branches or pull requests
cargo check
is complaining,I am not sure if it will break anything, but its quite a simple fix.
The text was updated successfully, but these errors were encountered: