Files
fujicli/Cargo.toml
T

56 lines
1.1 KiB
TOML
Raw Normal View History

2026-05-25 10:42:12 +00:00
[workspace]
members = [
".",
"crates/codegen",
"crates/ptp/cursor",
"crates/ptp/macro",
]
2025-10-13 13:48:49 +01:00
[package]
name = "fujicli"
2026-05-25 10:42:12 +00:00
version = "0.2.0"
2025-10-13 13:48:49 +01:00
edition = "2024"
description = "A CLI to manage Fujifilm devices, simulations, backups, and rendering"
authors = [
"Nikolaos Karaolidis <nick@karaolidis.com>",
]
2026-05-25 10:42:12 +00:00
build = "build.rs"
2025-10-13 13:48:49 +01:00
2026-01-19 16:29:52 +00:00
[lib]
name = "fujicli"
path = "src/lib/mod.rs"
[[bin]]
name = "fujicli"
path = "src/main.rs"
2026-05-25 10:42:12 +00:00
[build-dependencies]
anyhow = "1.0.100"
codegen = { path = "crates/codegen" }
2025-10-13 13:48:49 +01:00
[profile.release]
panic = 'abort'
strip = true
lto = true
codegen-units = 1
[dependencies]
2025-10-13 23:36:52 +01:00
anyhow = "1.0.100"
2025-10-15 08:41:37 +01:00
byteorder = "1.5.0"
2025-10-13 13:48:49 +01:00
clap = { version = "4.5.48", features = ["derive", "wrap_help"] }
log = "0.4.28"
log4rs = "1.4.0"
2025-10-18 02:40:09 +01:00
num_enum = "0.7.4"
2025-10-13 13:48:49 +01:00
rusb = "0.9.4"
2025-10-13 15:37:16 +01:00
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.145"
2025-10-18 02:40:09 +01:00
strsim = "0.11.1"
ptp_macro = { path = "crates/ptp/macro" }
ptp_cursor = { path = "crates/ptp/cursor" }
strum = { version = "0.27.2", features = ["strum_macros"] }
strum_macros = "0.27.2"
2025-10-30 19:02:36 +02:00
erased-serde = "0.4.8"
serde_with = "3.15.1"
2026-01-21 10:39:21 +00:00
exiftool = "0.3.0"
tempfile = "3.24.0"