Skip to content
Merged
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
2 changes: 1 addition & 1 deletion roadmap.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
- 移动端增加自定义键盘
- profile/forward 自定义icon
- iOS快捷键盘,随着软键盘升起
- 手机端增加gpu加速开关


![Stars](https://img.shields.io/github/stars/shihuili1218/rssh)
![Forks](https://img.shields.io/github/forks/shihuili1218/rssh)
Expand Down
192 changes: 188 additions & 4 deletions src-tauri/Cargo.lock

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

6 changes: 5 additions & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ crate-type = ["staticlib", "cdylib", "lib"]
tauri-build = { version = "2", features = [] }

[dependencies]
tauri = { version = "2", features = [] }
tauri = { version = "2", features = ["protocol-asset"] }
tauri-plugin-opener = "2"
tauri-plugin-dialog = "2"
tauri-plugin-fs = "2"
Expand Down Expand Up @@ -46,6 +46,10 @@ include_dir = { version = "0.7", optional = true }
# SFTP
russh-sftp = "2"

# Plugin packages are user-supplied zips (manifest.json + index.html + assets).
# Default features on: accept any standard compression a packager might emit.
zip = "2"

# HTTP + crypto
base64 = "0.22"
# 配置备份/同步走 Argon2id(KDF)+ ChaCha20-Poly1305(AEAD),
Expand Down
1 change: 1 addition & 0 deletions src-tauri/src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ pub mod external;
pub mod forward;
pub mod group;
pub mod lifecycle;
pub mod plugin;
pub mod profile;
#[cfg(desktop)]
pub mod pty;
Expand Down
Loading
Loading