-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (25 loc) · 901 Bytes
/
Cargo.toml
File metadata and controls
30 lines (25 loc) · 901 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
[package]
name = "shpool_pty"
version = "0.3.2"
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"]
[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