aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2019-10-24 06:50:12 -0400
committerJesse Luehrs <doy@tozt.net>2019-10-24 06:50:12 -0400
commitfb2c2e8b553650e0dd8c443231555007d1835e2a (patch)
treedff51a294dcbe93e4266637b94c030aa53cb3909
parentb99ab4f86b473f86b236d0b89d09eb476113a1f0 (diff)
downloadtokio-pty-process-stream-fb2c2e8b553650e0dd8c443231555007d1835e2a.tar.gz
tokio-pty-process-stream-fb2c2e8b553650e0dd8c443231555007d1835e2a.zip
project skeleton
-rw-r--r--.gitignore3
-rw-r--r--Cargo.toml9
-rw-r--r--src/lib.rs7
3 files changed, 19 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..6936990
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,3 @@
+/target
+**/*.rs.bk
+Cargo.lock
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..e359b56
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,9 @@
+[package]
+name = "tokio-pty-process-stream"
+version = "0.1.0"
+authors = ["Jesse Luehrs <doy@tozt.net>"]
+edition = "2018"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
diff --git a/src/lib.rs b/src/lib.rs
new file mode 100644
index 0000000..31e1bb2
--- /dev/null
+++ b/src/lib.rs
@@ -0,0 +1,7 @@
+#[cfg(test)]
+mod tests {
+ #[test]
+ fn it_works() {
+ assert_eq!(2 + 2, 4);
+ }
+}