mirror of
https://github.com/brockar/medars.git
synced 2026-01-11 15:01:00 -03:00
40 lines
834 B
TOML
40 lines
834 B
TOML
[package]
|
|
name = "medars"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
description = "A command-line tool to inspect and remove metadata from image files"
|
|
authors = ["brockar <martinnguzman.mg@gmail.com>"]
|
|
license = "MIT"
|
|
|
|
[[bin]]
|
|
name = "medars"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.47.1", features = ["full"] }
|
|
clap = { version = "4.5.43", features = ["derive"] }
|
|
kamadak-exif = "0.6.1"
|
|
ratatui = "0.29.0"
|
|
ratatui-image = "8.0.1"
|
|
image = "0.25.6"
|
|
jpeg-decoder = "0.3.2"
|
|
lru = "0.16.0"
|
|
crossterm = "0.29.0"
|
|
anyhow = "1.0.98"
|
|
serde = { version = "1.0.219", features = ["derive"] }
|
|
serde_json = "1.0.142"
|
|
log = "0.4"
|
|
env_logger = "0.11.8"
|
|
rexiv2 = "0.10.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
dirs = "6.0.0"
|
|
glob = "0.3.2"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.14.0"
|
|
|
|
[lib]
|
|
name = "medars"
|
|
path = "src/lib.rs"
|
|
|