diff options
author | Jordan Gong <jordan.gong@protonmail.com> | 2020-09-08 20:47:03 +0800 |
---|---|---|
committer | Jordan Gong <jordan.gong@protonmail.com> | 2020-09-08 20:47:03 +0800 |
commit | 003e092786221abaef21e197a810f40b1cc9b57f (patch) | |
tree | 298ee86e2ac51a610c4c450ff482c068a2dc2878 /minigrep-improved/Cargo.toml | |
parent | 66e7b9956833678a7911abc362031774f31ed211 (diff) |
Improve minigrep with iterators
Diffstat (limited to 'minigrep-improved/Cargo.toml')
-rw-r--r-- | minigrep-improved/Cargo.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/minigrep-improved/Cargo.toml b/minigrep-improved/Cargo.toml new file mode 100644 index 0000000..3fc4cdf --- /dev/null +++ b/minigrep-improved/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "minigrep" +version = "0.1.0" +authors = ["Jordan Gong <jordan.gong@protonmail.com>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] |