Skip to content

Commit 0027c02

Browse files
committed
chore: use version+path for bssh-russh dependency
- Local development uses path (crates/bssh-russh) - Publishing uses crates.io version
1 parent 5199d95 commit 0027c02

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

Cargo.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ edition = "2021"
1919
[dependencies]
2020
tokio = { version = "1.48.0", features = ["full"] }
2121
# Use our internal russh fork with session loop fixes
22-
russh = { package = "bssh-russh", path = "crates/bssh-russh" }
22+
# - Development: uses local path (crates/bssh-russh)
23+
# - Publishing: uses crates.io version (path ignored)
24+
russh = { package = "bssh-russh", version = "0.56", path = "crates/bssh-russh" }
2325
russh-sftp = "2.1.1"
2426
clap = { version = "4.5.53", features = ["derive", "env"] }
2527
anyhow = "1.0.100"

0 commit comments

Comments
 (0)