diff --git a/SECURITY.md b/SECURITY.md new file mode 100644 index 0000000..78fed98 --- /dev/null +++ b/SECURITY.md @@ -0,0 +1,3 @@ +# Security Policy + +This is not production software. Therefore, security issues are treated as normal bugs and can be reported via teh issue tracker. diff --git a/testing b/testing deleted file mode 100755 index 49de066..0000000 Binary files a/testing and /dev/null differ diff --git a/testing.rs b/testing.rs deleted file mode 100644 index 44ed705..0000000 --- a/testing.rs +++ /dev/null @@ -1,12 +0,0 @@ -use std::process::{Command, Stdio}; - -fn main() { - let mut cmd = Command::new("fish"); - cmd.stderr(Stdio::piped()); - cmd.stdout(Stdio::piped()); - cmd.stdin(Stdio::piped()); - - let mut child = cmd.spawn().unwrap(); - - child.wait().unwrap(); -} \ No newline at end of file