mirror of
https://github.com/rust-kotlin/ashell.git
synced 2026-09-22 16:00:59 +00:00
Bump the project version to v0.4.2 and include the updated README release notes in both Chinese and English.
56 lines
1.9 KiB
TOML
56 lines
1.9 KiB
TOML
[package]
|
|
name = "ashell"
|
|
version = "0.4.2"
|
|
edition = "2024"
|
|
authors = ["ashell contributors"]
|
|
description = "A GPUI Component based SSH and local terminal client"
|
|
license = "GPL-3.0-or-later"
|
|
rust-version = "1.85.0"
|
|
|
|
[dependencies]
|
|
anyhow = "1"
|
|
alacritty_terminal = { git = "https://github.com/zed-industries/alacritty", rev = "fcf32feacb367b75ec84dd40f041e4fd411d3cc1" }
|
|
async-trait = "0.1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
directories = "5"
|
|
flate2 = "1"
|
|
gpui = { git = "https://github.com/zed-industries/zed" }
|
|
gpui_platform = { git = "https://github.com/zed-industries/zed", features = ["font-kit", "runtime_shaders", "wayland", "x11"] }
|
|
gpui-component = { git = "https://github.com/longbridge/gpui-component", rev = "ca85b5588f5feea021f1ee86cb13703dc6f30ec4" }
|
|
gpui-component-assets = { git = "https://github.com/longbridge/gpui-component", rev = "ca85b5588f5feea021f1ee86cb13703dc6f30ec4" }
|
|
menu = { git = "https://github.com/zed-industries/zed" }
|
|
portable-pty = "0.8"
|
|
rfd = "0.15"
|
|
russh = "0.49"
|
|
russh-keys = "0.49"
|
|
russh-sftp = "2"
|
|
rust-i18n = "3"
|
|
sys-locale = "0.3"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
ssh-key = "0.6"
|
|
sysinfo = "0.33"
|
|
tar = "0.4"
|
|
thiserror = "1"
|
|
tokio = { version = "1", features = ["rt-multi-thread", "macros", "sync", "io-util", "net", "time", "fs"] }
|
|
tracing = "0.1"
|
|
tracing-subscriber = { version = "0.3", features = ["env-filter", "local-time", "time"] }
|
|
uuid = { version = "1", features = ["v4", "serde"] }
|
|
walkdir = "2"
|
|
zip = { version = "2", default-features = false, features = ["deflate"] }
|
|
image = { version = "0.25.9", default-features = false, features = ["png"] }
|
|
futures = "0.3.32"
|
|
notify = "6.1.1"
|
|
open = "5.1"
|
|
time = { version = "0.3.45", features = ["formatting", "local-offset"] }
|
|
tracing-appender = "0.2.5"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
strip = true
|
|
|
|
[build-dependencies]
|
|
winres = "0.1.12"
|