Add a libfilecheck crate.

This library implements functionality similar to LLVM's FileCheck utility, but
in library form.
This commit is contained in:
Jakob Stoklund Olesen
2016-09-01 14:38:01 -07:00
parent d8712b2ce6
commit 71b742ec34
7 changed files with 1613 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
[package]
authors = ["The Cretonne Project Developers"]
name = "filecheck"
version = "0.0.0"
publish = false
[lib]
name = "filecheck"
path = "lib.rs"
[dependencies]
regex = "0.1.71"