mirror of
https://github.com/rust-kotlin/ashell.git
synced 2026-09-21 16:00:57 +00:00
92 lines
2.9 KiB
TOML
92 lines
2.9 KiB
TOML
[package]
|
|
name = "ashell"
|
|
version = "0.4.12"
|
|
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"
|
|
tokio-socks = "0.5"
|
|
alacritty_terminal = { git = "https://github.com/zed-industries/alacritty", rev = "fcf32feacb367b75ec84dd40f041e4fd411d3cc1" }
|
|
async-trait = "0.1"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
csv = "1"
|
|
directories = "5"
|
|
encoding_rs = "0.8"
|
|
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"
|
|
tempfile = "3"
|
|
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"
|
|
argon2 = "0.5"
|
|
base64 = "0.22"
|
|
chacha20poly1305 = "0.10"
|
|
hmac = "0.12"
|
|
hex = "0.4"
|
|
serialport = "4"
|
|
rand = "0.8"
|
|
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls"] }
|
|
sha2 = "0.10"
|
|
|
|
[dev-dependencies]
|
|
libc = "0.2"
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
winreg = "0.52"
|
|
|
|
[package.metadata.deb]
|
|
maintainer = "ashell contributors"
|
|
license-file = ["LICENSE"]
|
|
extended-description = "A GPUI Component based SSH and local terminal client"
|
|
section = "terminal"
|
|
priority = "optional"
|
|
assets = [
|
|
["target/release/ashell", "usr/bin/", "755"],
|
|
["assets/ashell.desktop", "usr/share/applications/", "644"],
|
|
["assets/icons/ashell.png", "usr/share/icons/hicolor/256x256/apps/", "644"],
|
|
]
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
strip = true
|
|
|
|
[build-dependencies]
|
|
winres = "0.1.12"
|
|
|
|
# Remove these overrides after GPUI moves off block 0.1 and stacksafe 0.1.
|
|
[patch.crates-io]
|
|
block = { git = "https://github.com/Dicklesworthstone/rust-block", rev = "b39ae859d1ee8e8cb5eef6a516471f1578d26b96" }
|
|
stacksafe-macro = { path = "patches/stacksafe-macro" }
|