diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..e5428b2 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,23 @@ +[package] +name = "aft" +version = "0.1.0" +authors = ["Bryan Newbold <bnewbold@robocracy.org>"] +edition = "2018" + +[dependencies] +#serde_json = "1.0" +#bstr = "0.2" +#structopt = "0.3" +anyhow = "1.0" +colored = "1.9" +atty = "0.2" +tabwriter = { version = "1.2", features = ["ansi_formatting"] } + +[dev-dependencies] +assert_cmd = "1" + +[profile.release] +lto = true +codegen-units = 1 +opt-level = "z" +panic = "abort" |