diff options
author | Joseph Frazer <joseph.frazer@ryansg.com> | 2020-03-04 15:31:20 -0500 |
---|---|---|
committer | Joseph Frazer <joseph.frazer@ryansg.com> | 2020-03-06 09:41:55 -0500 |
commit | e613bd8a8c931546fd10ef50338b5a5affa1b3c2 (patch) | |
tree | 0a81c9d7406830068fa4273762897c5c9353191a /tamer/Cargo.toml | |
parent | 777494a6026e6eabff9ca9f05f00aa92e2f58c3d (diff) | |
download | tame-e613bd8a8c931546fd10ef50338b5a5affa1b3c2.tar.gz tame-e613bd8a8c931546fd10ef50338b5a5affa1b3c2.tar.bz2 tame-e613bd8a8c931546fd10ef50338b5a5affa1b3c2.zip |
[DEV-7081] Add options to tameld
We want to add an option to set the output file to the linker so we do
not need to redirect output to awk any longer.
This also adds integration tests for tameld.
Diffstat (limited to 'tamer/Cargo.toml')
-rw-r--r-- | tamer/Cargo.toml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tamer/Cargo.toml b/tamer/Cargo.toml index 64519f9..7d27fd7 100644 --- a/tamer/Cargo.toml +++ b/tamer/Cargo.toml @@ -22,6 +22,10 @@ lto = true # in a release. lto = true +[dev-dependencies] +assert_cmd = "0.10" +predicates = "1" + [dependencies] bumpalo = ">= 2.6.0" # used by petgraph @@ -29,3 +33,6 @@ fixedbitset = ">= 0.1" fxhash = ">= 0.2.1" petgraph = ">= 0.4.13" quick-xml = ">= 0.17.0" +getopts = "0.2" +exitcode = "1.1.2" + |