diff --git a/CHANGELOG.md b/CHANGELOG.md index 69cac89..04b086c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -29,6 +29,8 @@ Released on FIXME: date - SCP file transfer: prevent infinite loops while performing `stat` on symbolic links pointing to themselves (e.g. `mylink -> mylink`) - Fixed a bug causing termscp to crash if removing a bookmark - Fixed file format cursor position in the GUI +- Dependencies: + - Removed `unicode-width` - For developers: - Activity refactoring - Developed an internal library used to create components, components are then nested inside a View diff --git a/Cargo.lock b/Cargo.lock index 0cd4636..dcd96bd 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1406,7 +1406,6 @@ dependencies = [ "textwrap", "toml", "tui", - "unicode-width", "ureq", "users", "whoami", diff --git a/Cargo.toml b/Cargo.toml index 6800693..65006fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -37,7 +37,6 @@ tempfile = "3.1.0" textwrap = "0.13.1" toml = "0.5.8" tui = { version = "0.14.0", features = ["crossterm"], default-features = false } -unicode-width = "0.1.7" ureq = { version = "2.0.2", features = ["json"] } whoami = "1.1.0" diff --git a/src/ui/activities/auth_activity/mod.rs b/src/ui/activities/auth_activity/mod.rs index e2db746..633b895 100644 --- a/src/ui/activities/auth_activity/mod.rs +++ b/src/ui/activities/auth_activity/mod.rs @@ -31,7 +31,6 @@ mod view; // Dependencies extern crate crossterm; extern crate tui; -extern crate unicode_width; // locals use super::{Activity, Context}; diff --git a/src/ui/activities/filetransfer_activity/mod.rs b/src/ui/activities/filetransfer_activity/mod.rs index 75ba306..9b095c3 100644 --- a/src/ui/activities/filetransfer_activity/mod.rs +++ b/src/ui/activities/filetransfer_activity/mod.rs @@ -35,7 +35,6 @@ extern crate chrono; extern crate crossterm; extern crate textwrap; extern crate tui; -extern crate unicode_width; // locals use super::{Activity, Context};