Skip to content

Commit

Permalink
clean unused deps
Browse files Browse the repository at this point in the history
  • Loading branch information
soywod committed Sep 3, 2024
1 parent 13fe997 commit 8cf6a03
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 10 deletions.
7 changes: 2 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,7 @@ secret-lib = { version = "=0.4.6", optional = true, features = ["derive"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1.23", default-features = false, features = ["macros", "rt-multi-thread"] }
toml = "0.8"
tracing = "0.1"
tracing-error = "0.2"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }

# TODO: delete console as soon as we can replace them with a crossterm
# alternative
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@
- *Editing configuration via wizard*
- *Native backup and restore support*

*Neverest CLI is written in [Rust](https://www.rust-lang.org/), and relies on [cargo features](https://doc.rust-lang.org/cargo/reference/features.html) to enable or disable functionalities. Default features can be found in the `features` section of the [`Cargo.toml`](https://github.com/pimalaya/neverest/blob/master/Cargo.toml#L18).*

## Installation

Neverest CLI can be installed with a prebuilt binary:
Expand Down
3 changes: 1 addition & 2 deletions src/config/wizard.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@ use std::{fs, path::PathBuf};
use color_eyre::eyre::Result;
use pimalaya_tui::{config::TomlConfig, print, prompt};

use crate::account;

use super::Config;
use crate::account;

pub async fn configure(path: &PathBuf) -> Result<Config> {
print::section("Configuring your default account");
Expand Down

0 comments on commit 8cf6a03

Please sign in to comment.