-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
42 lines (36 loc) · 944 Bytes
/
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 = "framels"
version = "0.7.7"
edition = "2021"
authors = ["Philippe Llerena<philippe.llerena@gmail.com>"]
description = "a simple command line tool to list frame sequence in friendly way"
readme = "README.md"
license-file = "LICENSE"
repository = "https://github.com/forticheprod/fls"
exclude = ["images", "samples", ".devcontainer", ".github", "comparaison"]
[[bin]]
name = "fls"
path = "src/main.rs"
[profile.release]
lto = true
[dependencies]
clap = { version = "4.5.23", features = ["derive"] }
exr = "1.73.0"
jwalk = "0.8.1"
lazy_static = "1.5.0"
rayon = "1.10.0"
[dependencies.regex]
version = "1.11.1"
default-features = false
# regex currently requires the standard library, you must re-enable it.
features = ["std", "unicode-perl"]
[dev-dependencies]
criterion = "0.5"
serde_json = "1.0.133"
serde = "1.0.216"
assert_cmd = "2.0.16"
predicates = "3.1.2"
sys-locale = "0.3.2"
[[bench]]
name = "mega"
harness = false