Files
Elias Wendland 080af6a0f1
Release / check-release (push) Successful in 1m0s
Release / build (push) Skipped
Release / package (deb) (push) Skipped
Release / package (rpm) (push) Skipped
Release / publish (push) Skipped
CI / test (push) Successful in 2m3s
chore: bump workspace version to 0.4.0-dev in Cargo.toml and update lockfile
2026-07-17 19:09:37 +02:00

53 lines
1.3 KiB
TOML

[workspace]
members = [
".",
"crates/convertis-plugin-api",
"plugins/*",
]
resolver = "2"
[workspace.package]
version = "0.4.0-dev"
edition = "2024"
authors = ["Elias Wendland <eliaswendland@pm.me>"]
license = "GPL-3.0-only"
repository = "https://git.ewenlau.net/ewenlau/convertis"
[workspace.dependencies]
convertis-plugin-api = { path = "crates/convertis-plugin-api", version = "=2.0.0" }
base64 = "0.22"
image = "0.25.10"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tempfile = "3.27.0"
[package]
name = "convertis"
version.workspace = true
edition.workspace = true
description = "A modular universal file converter"
repository.workspace = true
authors.workspace = true
license.workspace = true
readme = "README.md"
keywords = ["converter", "ffmpeg", "image", "video", "audio"]
categories = ["command-line-utilities", "multimedia"]
exclude = [".github/", "target/", "*.log"]
[build-dependencies]
clap = { version = "4.6.1", features = ["derive"] }
clap_mangen = "0.2"
tracing = "0.1.44"
[dependencies]
clap = { version = "4.6.1", features = ["derive"] }
convertis-plugin-api.workspace = true
infer = "0.16.0"
gif = "0.14"
libloading = "0.8"
serde.workspace = true
serde_json.workspace = true
tempfile.workspace = true
tracing = "0.1.44"
tracing-subscriber = "0.3.23"