mirror of
https://github.com/Noratrieb/cluelessh.git
synced 2026-01-14 08:25:05 +01:00
30 lines
1.1 KiB
TOML
30 lines
1.1 KiB
TOML
[package]
|
|
name = "cluelesshd"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
cluelessh-format = { path = "../../lib/cluelessh-format" }
|
|
cluelessh-protocol = { path = "../../lib/cluelessh-protocol" }
|
|
cluelessh-tokio = { path = "../../lib/cluelessh-tokio" }
|
|
cluelessh-transport = { path = "../../lib/cluelessh-transport" }
|
|
tokio = { version = "1.39.2", features = ["full"] }
|
|
tracing.workspace = true
|
|
eyre.workspace = true
|
|
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "json"] }
|
|
rustix = { version = "0.38.35", features = ["pty", "termios", "procfs", "process", "stdio", "net", "fs", "thread", "pipe"] }
|
|
users = "0.11.0"
|
|
futures = "0.3.30"
|
|
thiserror = "1.0.63"
|
|
cluelessh-keys = { version = "0.1.0", path = "../../lib/cluelessh-keys" }
|
|
serde = { version = "1.0.209", features = ["derive"] }
|
|
toml = "0.8.19"
|
|
clap = { version = "4.5.16", features = ["derive"] }
|
|
postcard = { version = "1.0.10", features = ["alloc"] }
|
|
libc = "0.2.158"
|
|
seccompiler = "0.4.0"
|
|
secrecy = { version = "0.8.0", features = ["serde"] }
|
|
zeroize = "1.8.1"
|
|
|
|
[lints]
|
|
workspace = true
|