Skip to content

Commit

Permalink
update fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
mgrotheer committed Jul 20, 2024
1 parent 822d67f commit ef301be
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,20 @@ mod gf256;
mod shamir;
mod utils;

use std::fs::File;
use std::io::{self, Write};
use std::str::FromStr;
use std::{
fs::File,
io::{self, Write},
str::FromStr,
};

use clap::{command, Parser};
use color_eyre::owo_colors::OwoColorize;
use eyre::{ensure, Result};
use prettytable::{
format::{FormatBuilder, LinePosition, LineSeparator},
Cell, Row, Table,
Cell,
Row,
Table,
};

use crate::{
Expand Down

0 comments on commit ef301be

Please sign in to comment.