]> git.proxmox.com Git - pve-xtermjs.git/blame - termproxy/Cargo.toml
termproxy: avoid expensive proxmox-sys crate, copy over PTY module
[pve-xtermjs.git] / termproxy / Cargo.toml
CommitLineData
3e4311fe 1[package]
145da0bf 2name = "proxmox-termproxy"
b73169a3 3description = "Execute a terminal command and proxy I/O via network"
145da0bf 4version = "1.0.0"
dcf54bea 5authors = [
b73169a3 6 "Proxmox Support Team <support@proxmox.com>",
dcf54bea
TL
7 "for xterm.js parts: The xterm.js authors <https://github.com/xtermjs/xterm.js>",
8]
145da0bf 9edition = "2021"
3e4311fe
DC
10license = "AGPL-3"
11
12exclude = [ "build", "debian" ]
13
7d873971
TL
14[profile.release]
15lto = true
16
3e4311fe 17[dependencies]
cfa75e79 18anyhow = "1"
a69ef0b6 19libc = "0.2.107"
e5681aa2 20mio = { version = "0.8", features = [ "net", "os-ext" ] }
a69ef0b6 21nix = "0.26.1"
24d707d0 22pico-args = "0.4"
cc1dbda3 23proxmox-io = "1"
27f74629 24proxmox-lang = "1.1"
15f29f11 25ureq = { version = "2.4", default-features = false, features = [ "gzip" ] }