Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
Eugeny committed Jan 14, 2025
1 parent bac6830 commit 4695149
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 41 deletions.
34 changes: 0 additions & 34 deletions russh-keys/Cargo.toml

This file was deleted.

17 changes: 14 additions & 3 deletions russh/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,6 @@ generic-array = "0.14"
getrandom = { version = "0.2.15", features = ["js"] }
hex-literal = "0.4"
hmac.workspace = true
home.workspace = true
inout = { version = "0.1", features = ["std"] }
log.workspace = true
md5 = "0.7"
Expand Down Expand Up @@ -76,14 +75,27 @@ ssh-encoding.workspace = true
ssh-key.workspace = true
subtle = "2.4"
thiserror.workspace = true
tokio = { workspace = true, features = ["io-util", "sync", "time", "net"] }
tokio = { workspace = true, features = ["io-util", "sync", "time"] }
typenum = "1.17"
yasna = { version = "0.5.0", features = [
"bit-vec",
"num-bigint",
], optional = true }
zeroize = "1.7"

[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tokio = { workspace = true, features = [
"io-util",
"rt-multi-thread",
"time",
"net",
] }
tokio-stream.workspace = true
home.workspace = true

[target.'cfg(windows)'.dependencies]
pageant = { version = "0.0.2", path = "../pageant" }

[dev-dependencies]
anyhow = "1.0.4"
env_logger.workspace = true
Expand All @@ -103,7 +115,6 @@ tokio-fd = "0.3"
termion = "2"
ratatui = "0.29.0"
tempfile = "3.14.0"
tokio-stream.workspace = true

[target.'cfg(not(target_arch = "wasm32"))'.dev-dependencies]
russh-sftp = "2.0.5"
Expand Down
5 changes: 1 addition & 4 deletions russh/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,7 @@
//! # Design principles
//!
//! The main goal of this library is conciseness, and reduced size and
//! readability of the library's code. Moreover, this library is split
//! between Russh, which implements the main logic of SSH clients
//! and servers, and Russh-keys, which implements calls to
//! cryptographic primitives.
//! readability of the library's code.
//!
//! One non-goal is to implement all possible cryptographic algorithms
//! published since the initial release of SSH. Technical debt is
Expand Down

0 comments on commit 4695149

Please sign in to comment.