Release / check-release (push) Successful in 30s
CI / Test (push) Successful in 1m31s
CI / Build Linux (push) Successful in 2m40s
Release / build_gnu (push) Successful in 2m44s
Release / build_musl (push) Successful in 4m52s
Release / package_gnu (deb) (push) Failing after 2m34s
Release / package_gnu (rpm) (push) Failing after 2m34s
Release / build_windows (push) Successful in 6m5s
Release / package_musl (deb) (push) Failing after 1m55s
Release / package_musl (rpm) (push) Failing after 2m21s
Release / publish-release (push) Skipped
55 lines
1.5 KiB
TOML
55 lines
1.5 KiB
TOML
[package]
|
|
name = "convertis"
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
description = "A program attempting to be a universal file converter"
|
|
repository = "https://git.ewenlau.net/ewenlau/convertis"
|
|
authors = ["Elias Wendland <eliaswendland@pm.me>"]
|
|
license = "GPL-3.0-only"
|
|
readme = "README.md"
|
|
keywords = ["converter", "ffmpeg", "image", "video", "audio"]
|
|
categories = ["command-line-utilities", "development-tools", "multimedia", "command-line-interface"]
|
|
|
|
exclude = [
|
|
".github/",
|
|
".gitea/",
|
|
"target/",
|
|
"*.log"
|
|
]
|
|
|
|
[package.metadata.deb]
|
|
maintainer = "Elias Wendland <eliaswendland@pm.me>"
|
|
copyright = "2026, Elias Wendland"
|
|
depends = "$auto"
|
|
section = "utility"
|
|
priority = "optional"
|
|
assets = [
|
|
["target/release/convertis", "usr/bin/", "755"],
|
|
["README.md", "usr/share/doc/convertis/README", "644"],
|
|
["target/man/convertis.1", "usr/share/man/man1/convertis.1", "644"]
|
|
]
|
|
|
|
[package.metadata.generate-rpm]
|
|
assets = [
|
|
{ source = "target/release/convertis", dest = "/usr/bin/convertis", mode = "755" },
|
|
{ source = "target/man/convertis.1", dest = "/usr/share/man/man1/convertis.1", mode = "644" }
|
|
]
|
|
|
|
[package.metadata.generate-rpm.requires]
|
|
|
|
[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"] }
|
|
image = "0.25.10"
|
|
infer = "0.16.0"
|
|
petgraph = "0.8.3"
|
|
tempfile = "3.27.0"
|
|
thiserror = "2.0.18"
|
|
tokio = { version = "1.52.3", features = ["rt", "rt-multi-thread"] }
|
|
tracing = "0.1.44"
|
|
tracing-subscriber = "0.3.23"
|