Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
147 changes: 53 additions & 94 deletions Cargo.lock

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

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ tokio = { version = "1.52.1", features = ["full"] }
# - Development: uses local path (crates/bssh-russh)
# - Publishing: uses crates.io version (path ignored)
russh = { package = "bssh-russh", version = "0.60.1", path = "crates/bssh-russh" }
# Use our internal russh-sftp fork with a serde_bytes perf fix
russh-sftp = { package = "bssh-russh-sftp", version = "2.1.1", path = "crates/bssh-russh-sftp" }
# Local fork of russh-sftp tracking upstream 2.3.0; only delta is the proposed
# `read_to_writer_pipelined` helper (AspectUnk/russh-sftp#91). When that PR
# merges and lands in a russh-sftp release, drop this fork.
russh-sftp = { package = "bssh-russh-sftp", version = "2.3.0", path = "crates/bssh-russh-sftp" }
clap = { version = "4.6.1", features = ["derive", "env"] }
anyhow = "1.0.102"
thiserror = "2.0.18"
Expand Down
30 changes: 18 additions & 12 deletions crates/bssh-russh-sftp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
name = "bssh-russh-sftp"
version = "2.1.1"
version = "2.3.0"
authors = ["Jeongkyu Shin <inureyes@gmail.com>"]
description = "Temporary fork of russh-sftp with a serde_bytes performance fix for SFTP Write/Data packets"
description = "Temporary fork of russh-sftp tracking upstream 2.3.0; only delta is the proposed `read_to_writer_pipelined` helper (AspectUnk/russh-sftp#91)"
documentation = "https://docs.rs/bssh-russh-sftp"
edition = "2021"
homepage = "https://github.com/lablup/bssh"
Expand All @@ -19,17 +19,23 @@ tokio = { version = "1", default-features = false, features = [
"time",
"macros",
] }
tokio-util = "0.7"
serde = { version = "1.0", features = ["derive"] }
serde_bytes = "0.11"
bitflags = { version = "2.9", features = ["serde"] }
async-trait = { version = "0.1", optional = true }
tokio-util = { version = "0.7.18", default-features = false, features = ["rt"] }
serde = { version = "1.0.228", features = ["derive"] }
serde_bytes = "0.11.19"
bitflags = { version = "2.11.1", features = ["serde"] }
async-trait = { version = "0.1.89", optional = true }

thiserror = "2.0"
chrono = "0.4"
bytes = "1.10"
log = "0.4"
flurry = "0.5"
thiserror = "2.0.18"
chrono = "0.4.44"
bytes = "1.11.1"
log = "0.4.29"
dashmap = "6.1.0"

futures = { version = "0.3", default-features = false, features = ["std", "async-await"] }

[target.'cfg(target_arch = "wasm32")'.dependencies]
wasm-bindgen-futures = "0.4.71"
gloo-timers = { version = "0.4.0", features = ["futures"] }

[features]
async-trait = ["dep:async-trait"]
Loading