19 lines
411 B
TOML
19 lines
411 B
TOML
[package]
|
|
name = "lumbridge-pty"
|
|
description = "Portable local PTY process boundary for Lumbridge"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[dependencies]
|
|
portable-pty = "0.9.0"
|
|
thiserror = "2.0"
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix = { version = "0.28", features = ["process", "signal"] }
|
|
|
|
[lints]
|
|
workspace = true
|