-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (27 loc) · 940 Bytes
/
Cargo.toml
File metadata and controls
32 lines (27 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
[package]
name = "shpool_pty"
version = "0.4.0"
authors = ["Hika Hibariya <hibariya@gmail.com>", "Ethan Pailes <ethan@pailes.org>"]
repository = "https://github.com/shell-pool/shpool_pty"
homepage = "https://github.com/shell-pool/shpool_pty"
license = "MIT"
description = "Fork with new pseudo-terminal (PTY)"
keywords = ["pty", "tty", "pseudo", "terminal", "fork"]
edition = "2024"
rust-version = "1.85"
[features]
default = []
lints = ["clippy", "nightly"]
nightly = [] # for building with nightly and unstable features
unstable = [] # for building with unstable features on stable Rust
debug = [] # for building with debug messages
travis = ["lints", "nightly"] # for building with travis-cargo
[dependencies.log]
version = "0.4"
[dependencies.errno]
version = "0.2"
[dependencies.libc]
version = ">= 0.2.18"
[dependencies.clippy]
version = "0.0"
optional = true