diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-01-30 10:37:16 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-01-30 10:37:16 +0400 |
| commit | 15c12faf4374656490cc93a4b34b0717496b8b6a (patch) | |
| tree | 3805715f2aa2bc2df26e63da9e54a6104a8c833f /Cargo.toml | |
Initial commit
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..ed7b0bf --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,12 @@ +[package] +name = "hackernews-scraper" +version = "0.1.0" +authors = ["Andrew Guschin <saintruler@gmail.com>"] +edition = "2018" + +# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html + +[dependencies] +select = "0.5.0" +reqwest = { version = "0.11", features = ["blocking"] } +tokio = { version = "1", features = ["full"] } |