-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathCargo.toml
More file actions
39 lines (35 loc) · 925 Bytes
/
Cargo.toml
File metadata and controls
39 lines (35 loc) · 925 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
[package]
name = "tracker"
version = "0.1.20"
authors = ["ShenMian <sms_school@outlook.com>"]
license = "Apache-2.0"
edition = "2024"
[dependencies]
sgp4 = "2.3"
reverse_geocoder = "4.1" # Convert latitude and longitude to country code
isocountry = "0.3" # Convert country code to country name
arboard = "3" # Access system clipboard
hifitime = "4"
# TUI
ratatui = { version = "0.30", features = ["serde"] }
crossterm = { version = "0.29", features = ["event-stream"] }
unicode-width = "0.2"
# Utilities
anyhow = "1"
clap = { version = "4", features = ["derive"] }
chrono = "0.4"
serde = { version = "1", features = ["derive"] }
toml = "1"
serde_json = "1"
sys-locale = "0.3"
rust-i18n = "4"
rayon = "1"
# Async
tokio = { version = "1", features = ["full"] }
futures = "0.3"
reqwest = { version = "0.13", default-features = false, features = [
"http2",
"query",
"json",
"native-tls",
] }