-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 991 Bytes
/
Copy pathCargo.toml
File metadata and controls
32 lines (28 loc) · 991 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
[package]
name = "immich-geodata"
version = "3.1.0"
edition = "2024"
[dependencies]
chrono = { version = "0.4", default-features = false, features = ["clock"] }
flate2 = "1.1"
geo = "0.30"
indicatif = "0.18.3"
opencc_rust = { package = "opencc-rust", git = "https://github.com/doggy8088/opencc-rust", rev = "c79ea78d" }
polars = { version = "0.53.0", default-features = false, features = ["fmt", "polars-ops", "temporal"] }
polars-io = { version = "0.53.0", default-features = false, features = ["csv", "temporal"] }
proj = { version = "0.31.0", features = ["pkg_config"] }
regex = "1.12.2"
reqwest = { version = "0.12.24", default-features = false, features = ["blocking", "rustls-tls"] }
serde_json = "1.0"
unicode-normalization = "0.1.25"
shapefile = "0.8.0"
tar = "0.4"
zip = { version = "2.4", default-features = false, features = ["deflate"] }
[lib]
name = "immich_geodata"
path = "src/lib.rs"
[[bin]]
name = "immich-geodata"
path = "src/main.rs"
[dev-dependencies]
tempfile = "3"