This commit is contained in:
SkyfallWasTaken 2024-07-09 20:24:48 +01:00
commit 76fb78605d
4 changed files with 1552 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

1538
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

10
Cargo.toml Normal file
View file

@ -0,0 +1,10 @@
[package]
name = "dinopkg"
version = "0.1.0"
edition = "2021"
[dependencies]
clap = { version = "4.5.9", features = ["derive"] }
color-eyre = "0.6.3"
reqwest = "0.12.5"
tokio = { version = "1.38.0", features = ["macros", "rt-multi-thread"] }

3
src/main.rs Normal file
View file

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