Skip to content

Commit

Permalink
✨ feat(dependencies): update serde and add new dependencies
Browse files Browse the repository at this point in the history
- add derive feature for serde to enable serialization capabilities
- include reqwest for HTTP requests with JSON support
- introduce semver for version parsing and ureq for alternative HTTP client
  • Loading branch information
SUP2Ak committed Nov 27, 2024
1 parent daebe8a commit f25414a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ once_cell = "1.18.0"
crossbeam = "0.8.1"
parking_lot = "0.12.1"
notify = "6.0.1"
serde = "1.0.190"
serde = { version = "1.0.190", features = ["derive"] }
serde_json = "1.0.100"
chrono = { version = "0.4.20-rc.1" }
walkdir = "2.4"
Expand All @@ -38,5 +38,8 @@ dirs = "5.0.1"
rayon = "1.10.0"
is_elevated = "0.1.2"
num_cpus = "1.16.0"
reqwest = { version = "0.11", features = ["json"] }
semver = "1.0"
ureq = { version = "2.8.0", features = ["json"] }
[build-dependencies]
slint-build = "1.8.0"

0 comments on commit f25414a

Please sign in to comment.