41 lines
960 B
TOML
41 lines
960 B
TOML
[package]
|
|
name = "shellm"
|
|
version = "1.1.0"
|
|
edition = "2021"
|
|
rust-version = "1.80"
|
|
authors = ["Jeremy Anderson"]
|
|
description = "Graphical user interface for managing SSH- and SCP-connections (Rust/iced port of secpanel)"
|
|
license = "GPL-2.0-or-later"
|
|
homepage = "https://dcos.net"
|
|
repository = "https://dcos.net"
|
|
|
|
[[bin]]
|
|
name = "shellm"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
iced = { version = "0.13", default-features = false, features = ["tokio", "image", "svg", "advanced", "multi-window", "tiny-skia"] }
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
toml = "0.8"
|
|
directories = "5"
|
|
dirs = "5"
|
|
open = "5"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
once_cell = "1"
|
|
log = "0.4"
|
|
env_logger = "0.11"
|
|
anyhow = "1"
|
|
thiserror = "1"
|
|
indexmap = { version = "2", features = ["serde"] }
|
|
regex = "1"
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
strip = "debuginfo"
|
|
|
|
[profile.dev]
|
|
opt-level = 1
|