cargo init

This commit is contained in:
bitfl0wer 2023-04-04 16:42:20 +02:00
parent 47604711d0
commit 93dc9f3197
3 changed files with 22 additions and 0 deletions

5
.gitignore vendored
View File

@ -8,3 +8,8 @@ Cargo.lock
# These are backup files generated by rustfmt # These are backup files generated by rustfmt
**/*.rs.bk **/*.rs.bk
# Added by cargo
/target

14
Cargo.toml Normal file
View File

@ -0,0 +1,14 @@
[package]
name = "chorus"
version = "0.1.0"
license = "AGPL-3"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = "1.27.0"
serde = "1.0.159"
serde_json = "1.0.95"
reqwest = "0.11.16"
url = "2.3.1"

3
src/main.rs Normal file
View File

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