termscp/src/lib.rs

78 lines
2.3 KiB
Rust
Raw Permalink Normal View History

2021-05-01 18:00:18 +02:00
#![doc(html_playground_url = "https://play.rust-lang.org")]
#![doc(
html_favicon_url = "https://raw.githubusercontent.com/veeso/termscp/main/assets/images/termscp-128.png"
)]
#![doc(
html_logo_url = "https://raw.githubusercontent.com/veeso/termscp/main/assets/images/termscp-512.png"
)]
2021-03-26 22:25:10 +01:00
/**
* MIT License
*
* termscp - Copyright (c) 2021 Christian Visintin
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
2020-11-08 11:02:43 +01:00
#[macro_use]
extern crate bitflags;
2021-06-26 12:32:11 +02:00
extern crate bytesize;
extern crate chrono;
extern crate content_inspector;
extern crate crossterm;
extern crate dirs;
extern crate edit;
extern crate hostname;
#[cfg(feature = "with-keyring")]
extern crate keyring;
2020-12-16 15:47:02 +01:00
#[macro_use]
extern crate lazy_static;
#[macro_use]
2021-05-16 10:36:16 +02:00
extern crate log;
#[macro_use]
2020-12-16 15:47:02 +01:00
extern crate magic_crypt;
2021-09-26 18:14:13 +02:00
extern crate notify_rust;
2021-06-26 12:32:11 +02:00
extern crate open;
#[cfg(target_os = "windows")]
extern crate path_slash;
extern crate rand;
extern crate regex;
2021-08-26 11:24:13 +02:00
extern crate s3;
2021-09-10 22:22:15 +02:00
extern crate self_update;
2021-06-26 12:32:11 +02:00
extern crate ssh2;
extern crate suppaftp;
2021-06-26 12:32:11 +02:00
extern crate tempfile;
extern crate textwrap;
extern crate tui_realm_stdlib;
2021-06-26 12:32:11 +02:00
extern crate tuirealm;
#[cfg(target_family = "unix")]
extern crate users;
extern crate whoami;
extern crate wildmatch;
2020-12-01 17:10:13 +01:00
pub mod activity_manager;
2020-12-24 11:12:02 +01:00
pub mod config;
2020-11-08 11:02:43 +01:00
pub mod filetransfer;
pub mod fs;
pub mod host;
pub mod support;
2020-12-15 20:48:43 +01:00
pub mod system;
2020-11-21 11:42:24 +01:00
pub mod ui;
2020-11-22 14:44:30 +01:00
pub mod utils;