add Cargo.lock (#225)

* add Cargo.lock

* more

* more
This commit is contained in:
Logan McNaughton 2025-02-05 17:31:17 +01:00 committed by GitHub
parent f4099cfcce
commit a8e7c3c136
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 5642 additions and 9 deletions

4
.gitignore vendored
View file

@ -3,10 +3,6 @@
debug/
target/
# Remove Cargo.lock from gitignore if creating an executable, leave it for libraries
# More information here https://doc.rust-lang.org/cargo/guide/cargo-toml-vs-cargo-lock.html
Cargo.lock
# These are backup files generated by rustfmt
**/*.rs.bk

5641
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

View file

@ -28,11 +28,7 @@ socket2 = "0.5"
fatfs = "0.3"
postcard = { version = "1.1", features = ["use-std"] }
clap = { version = "4.4", features = ["derive"] }
[dependencies.reqwest]
version = "0.12"
default-features = false
features = ["http2","rustls-tls","charset","json","blocking"]
reqwest = { version = "0.12", default-features = false, features = ["http2","rustls-tls","charset","json","blocking"] }
[build-dependencies]
winres = "0.1"