Add dependencies

This commit is contained in:
Brayd 2023-06-25 13:39:50 +02:00
parent ae22f80ef9
commit 63b7c95e5f
Signed by: brayd
GPG Key ID: C2B176B9DEB8BA48
3 changed files with 1116 additions and 3 deletions

1113
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -6,3 +6,6 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.15", features = ["full"] }
reqwest = { version = "0.11", features = ["json"] }
serde_json = "1.0.99"

View File

@ -1,3 +0,0 @@
fn main() {
println!("Hello, world!");
}