mirror of
https://github.com/veeso/termscp.git
synced 2026-06-08 14:18:41 +02:00
Added lazy_static and regex
This commit is contained in:
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -580,6 +580,8 @@ dependencies = [
|
|||||||
"crossterm",
|
"crossterm",
|
||||||
"ftp",
|
"ftp",
|
||||||
"getopts",
|
"getopts",
|
||||||
|
"lazy_static",
|
||||||
|
"regex",
|
||||||
"rpassword",
|
"rpassword",
|
||||||
"ssh2",
|
"ssh2",
|
||||||
"tempfile",
|
"tempfile",
|
||||||
|
|||||||
@@ -26,6 +26,8 @@ unicode-width = "0.1.7"
|
|||||||
chrono = "0.4.19"
|
chrono = "0.4.19"
|
||||||
bytesize = "1.0.1"
|
bytesize = "1.0.1"
|
||||||
textwrap = "0.12.1"
|
textwrap = "0.12.1"
|
||||||
|
regex = "1.4.2"
|
||||||
|
lazy_static = "1.4.0"
|
||||||
|
|
||||||
[target.'cfg(any(unix, macos, linux))'.dependencies]
|
[target.'cfg(any(unix, macos, linux))'.dependencies]
|
||||||
users = "0.11.0"
|
users = "0.11.0"
|
||||||
|
|||||||
@@ -19,6 +19,8 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
#[macro_use] extern crate lazy_static;
|
||||||
|
|
||||||
pub mod activity_manager;
|
pub mod activity_manager;
|
||||||
pub mod filetransfer;
|
pub mod filetransfer;
|
||||||
pub mod fs;
|
pub mod fs;
|
||||||
|
|||||||
@@ -24,6 +24,7 @@ const TERMSCP_AUTHORS: &'static str = env!("CARGO_PKG_AUTHORS");
|
|||||||
|
|
||||||
// Crates
|
// Crates
|
||||||
extern crate getopts;
|
extern crate getopts;
|
||||||
|
#[macro_use] extern crate lazy_static;
|
||||||
extern crate rpassword;
|
extern crate rpassword;
|
||||||
|
|
||||||
// External libs
|
// External libs
|
||||||
|
|||||||
Reference in New Issue
Block a user