-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 961 Bytes
/
Cargo.toml
File metadata and controls
43 lines (37 loc) · 961 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
40
41
42
43
[package]
name = "framels"
version = "0.7.8"
edition = "2024"
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.48", features = ["derive"] }
exr = "1.73.0"
jwalk = "0.8.1"
lazy_static = "1.5.0"
rayon = "1.11.0"
wide = "0.7.33"
[dependencies.regex]
version = "1.12.1"
default-features = false
# regex currently requires the standard library, you must re-enable it.
features = ["std", "unicode-perl"]
[dev-dependencies]
criterion = "0.6.0"
serde_json = "1.0.145"
serde = "1.0.228"
assert_cmd = "2.1.1"
predicates = "3.1.3"
sys-locale = "0.3.2"
[[bench]]
name = "mega"
harness = false