scaffold: init project

This commit is contained in:
2026-09-14 20:32:10 -04:00
parent 1f8b468f99
commit 0ee045c71e
4 changed files with 2116 additions and 0 deletions
+5
View File
@@ -16,3 +16,8 @@ target/
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
# Added by cargo
/target
Generated
+2099
View File
File diff suppressed because it is too large Load Diff
+9
View File
@@ -0,0 +1,9 @@
[package]
name = "spectral"
version = "0.1.0"
edition = "2024"
[dependencies]
clap = "4.6.7"
reqwest = "0.13.5"
scraper = "0.27.0"
+3
View File
@@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}