-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
50 lines (46 loc) · 1.36 KB
/
Cargo.toml
File metadata and controls
50 lines (46 loc) · 1.36 KB
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
40
41
42
43
44
45
46
47
48
49
50
[package]
name = "rua"
version = "0.1.2"
edition = "2024"
authors = ["hexqnt <hexqntlab@gmail.com>"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/hexqnt/rua"
homepage = "https://rua.hexq.ru"
readme = "README.md"
description = "CLI to download DeepStateMap history and render territory change charts with forecast"
keywords = ["russia", "ukraine", "territory", "chart", "forecast", "cli"]
categories = ["command-line-utilities"]
[dependencies]
reqwest = { version = "0.13", features = ["socks"] }
clap = { version = "4.6.1", features = ["derive"] }
tokio = { version = "1.52.1", features = ["full"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = { version = "0.4.41", features = ["serde"] }
tqdm = "0.8"
polars = "0.53"
plotly = "0.14"
csv = "1.4"
itertools = "0.14"
maud = "0.27.0"
argmin = "0.11.0"
argmin-math = { version = "0.5", features = ["vec"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.23", features = ["env-filter"] }
futures = "0.3"
bytes = "1.11"
toml = "1.1.2"
flate2 = "1.1"
minify-html = "0.18.1"
[profile.release]
strip = true
lto = true
codegen-units = 1
opt-level = 3
panic = "abort"
[lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cargo = { level = "warn", priority = -1 }
multiple_crate_versions = "allow"