-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (35 loc) · 1.05 KB
/
Cargo.toml
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
[package]
name = "maze-serval"
default-run = "serval"
description = "Serval helps you prepare data for Maze and Trapper"
repository = "https://github.com/wsyxbcl/Serval"
authors = ["wsyxbcl <[email protected]>"]
version = "0.2.19"
edition = "2021"
license = "GPL-3.0-or-later"
keywords = ["camtrap", "camera-trap"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.92"
chrono = "0.4.38"
clap = { version = "4.5.20", features = ["derive"] }
indicatif = "0.17.8"
itertools = "0.13.0"
polars = { version = "0.44.2", features = ["lazy", "strings", "list_eval", "csv", "dtype-struct", "is_in", "dynamic_group_by", "dtype-datetime", "timezones", "polars-io"] }
rayon = "1.10.0"
rustyline = { version = "14.0.0", features = ["derive"] }
walkdir = "2.5.0"
xmp_toolkit = "1.9.1"
[profile.release-lto]
inherits = "release"
opt-level = "s"
lto = true
[lib]
name = "serval"
path = "src/lib.rs"
[[bin]]
name = "serval"
path = "src/main.rs"
[[bin]]
name = "serval-xmp-extract"
path = "bin/serval-xmp-extract.rs"