Skip to content

Commit 2c6a034

Browse files
committed
add crate metadata
1 parent 1a6ada9 commit 2c6a034

File tree

3 files changed

+46
-0
lines changed

3 files changed

+46
-0
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Changelog
2+
3+
## [Unreleased]
4+
5+
### Added
6+
7+
* Initial release

Cargo.toml

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ version = "0.1.0"
44
authors = ["Jesse Luehrs <[email protected]>"]
55
edition = "2018"
66

7+
description = "spawn commands attached to a pty"
8+
repository = "https://git.tozt.net/pty-process"
9+
readme = "README.md"
10+
keywords = ["pty", "spawn", "execute", "process"]
11+
categories = ["asynchronous", "command-line-interface"]
12+
license = "MIT"
13+
714
[dependencies]
815
libc = "0.2"
916
nix = "0.20"

LICENSE

+32
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
This software is Copyright (c) 2021 by Jesse Luehrs.
2+
3+
This is free software, licensed under:
4+
5+
The MIT (X11) License
6+
7+
The MIT License
8+
9+
Permission is hereby granted, free of charge, to any person
10+
obtaining a copy of this software and associated
11+
documentation files (the "Software"), to deal in the Software
12+
without restriction, including without limitation the rights to
13+
use, copy, modify, merge, publish, distribute, sublicense,
14+
and/or sell copies of the Software, and to permit persons to
15+
whom the Software is furnished to do so, subject to the
16+
following conditions:
17+
18+
The above copyright notice and this permission notice shall
19+
be included in all copies or substantial portions of the
20+
Software.
21+
22+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT
23+
WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
24+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25+
MERCHANTABILITY, FITNESS FOR A PARTICULAR
26+
PURPOSE AND NONINFRINGEMENT. IN NO EVENT
27+
SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
30+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31+
CONNECTION WITH THE SOFTWARE OR THE USE OR
32+
OTHER DEALINGS IN THE SOFTWARE.

0 commit comments

Comments
 (0)