0
0
Fork 0

initialize project

This commit is contained in:
Adrian Wannenmacher 2023-06-27 15:54:04 +02:00
parent c7501737b1
commit 833e41fb43
Signed by: tfld
GPG Key ID: 19D986ECB1E492D5
3 changed files with 22 additions and 0 deletions

5
.gitignore vendored
View File

@ -12,3 +12,8 @@ Cargo.lock
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb
# Added by cargo
/target

14
Cargo.toml Normal file
View File

@ -0,0 +1,14 @@
[package]
name = "listload"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.71"
clap = { version = "4.3.8", features = ["derive", "env"] }
downloader = { version = "0.2.7", default-features = false, features = ["rustls-tls"] }
serde = { version = "1.0.164", features = ["derive"] }
serde_json = "1.0.99"
toml = "0.7.5"

3
src/main.rs Normal file
View File

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