diff options
author | Alberto Sartori <alberto.sartori@huawei.com> | 2024-07-31 18:01:41 +0200 |
---|---|---|
committer | Alberto Sartori <alberto.sartori@huawei.com> | 2024-07-31 18:12:32 +0200 |
commit | c248c33ac05a44c97c1cee413f13d65bf9c0327d (patch) | |
tree | a941c423ccf0edbaa6fd99390d02a469aab54edf /doc/number-guessing/Cargo.toml | |
parent | 71962cee77f28f16611be17a518ffc9e6bbe7860 (diff) | |
download | rules-rust-c248c33ac05a44c97c1cee413f13d65bf9c0327d.tar.gz |
rules-rust: add tutorials to transition and import Cargo-based projects
Diffstat (limited to 'doc/number-guessing/Cargo.toml')
-rw-r--r-- | doc/number-guessing/Cargo.toml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/number-guessing/Cargo.toml b/doc/number-guessing/Cargo.toml new file mode 100644 index 0000000..7eda67a --- /dev/null +++ b/doc/number-guessing/Cargo.toml @@ -0,0 +1,9 @@ +[package] +name = "guessing_game" +version = "0.1.0" +edition = "2021" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +rand = "0.8.5" |