Skip to content

Commit

Permalink
build(deps): update dependencies and reorganize Cargo.toml
Browse files Browse the repository at this point in the history
- Update tokio from 1.41.1 to 1.42.0
- Reorganize Cargo.toml for better readability and separation of concerns
  • Loading branch information
ShenMian committed Dec 3, 2024
1 parent ffcc8ca commit b83ab79
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 10 deletions.
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 11 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,22 @@ license = "Apache-2.0"
edition = "2021"

[dependencies]
anyhow = "1.0"
chrono = "0.4"
sgp4 = "2.2"
reverse_geocoder = "4.1"
isocountry = "0.3"
ureq = { version = "2.11", features = ["json"] }
unicode-width = "0.2"
strum = { version = "0.26", features = ["derive"] }
arboard = "3.4"
ureq = { version = "2.11", features = ["json"] }

# TUI framework
ratatui = "0.29"
crossterm = { version = "0.28", features = ["event-stream"] }
tokio = { version = "1.41", features = ["full"] }
unicode-width = "0.2"

# Utilities
anyhow = "1.0"
chrono = "0.4"
strum = { version = "0.26", features = ["derive"] }

# Async
tokio = { version = "1.42", features = ["full"] }
futures = "0.3"

0 comments on commit b83ab79

Please sign in to comment.