Release / check-release (push) Successful in 46s
CI / test (push) Successful in 2m12s
Release / build (push) Successful in 1m51s
Release / package (deb) (push) Successful in 1m6s
Release / package (rpm) (push) Successful in 1m26s
Release / publish (push) Successful in 36s
53 lines
1.3 KiB
TOML
53 lines
1.3 KiB
TOML
[workspace]
|
|
members = [
|
|
".",
|
|
"crates/convertis-plugin-api",
|
|
"plugins/*",
|
|
]
|
|
resolver = "2"
|
|
|
|
[workspace.package]
|
|
version = "0.4.0"
|
|
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"
|